body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #5ba3f0 !important;
}
.bg-success {
  background-color: #4e84c2 !important;
}
.bg-info {
  background-color: #282828 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #5ba3f0 !important;
  border-color: #5ba3f0 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #157ce9 !important;
  border-color: #157ce9 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #157ce9 !important;
  border-color: #157ce9 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #36ca45 !important;
  border-color: #36ca45 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #258e30 !important;
  border-color: #258e30 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #258e30 !important;
  border-color: #258e30 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #282828 !important;
  border-color: #282828 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #020202 !important;
  border-color: #020202 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #020202 !important;
  border-color: #020202 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #4e84c2 !important;
  border-color: #4e84c2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #325e91 !important;
  border-color: #325e91 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #325e91 !important;
  border-color: #325e91 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #136fd2;
  color: #136fd2 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #5ba3f0;
  border-color: #5ba3f0;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #5ba3f0 !important;
  border-color: #5ba3f0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #207a29;
  color: #207a29 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #36ca45;
  border-color: #36ca45;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #36ca45 !important;
  border-color: #36ca45 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #282828;
  border-color: #282828;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #282828 !important;
  border-color: #282828 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #2c527e;
  color: #2c527e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #4e84c2;
  border-color: #4e84c2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #4e84c2 !important;
  border-color: #4e84c2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #5ba3f0 !important;
}
.text-secondary {
  color: #36ca45 !important;
}
.text-success {
  color: #4e84c2 !important;
}
.text-info {
  color: #282828 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #136fd2 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #207a29 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #2c527e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #4e84c2;
}
.alert-info {
  background-color: #282828;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5ba3f0;
  border-color: #5ba3f0;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #5ba3f0;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #adc6e3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbdbdb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #5ba3f0;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5ba3f0;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #5ba3f0;
  border-bottom-color: #5ba3f0;
}
.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: #000000 !important;
  background-color: #5ba3f0 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #36ca45 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%235ba3f0' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJeaxAijkC {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rJeaxAijkC .mbr-text {
  text-align: left;
}
.cid-uRH1tv7zhg .modal-body .close {
  background: #1b1b1b;
}
.cid-uRH1tv7zhg .modal-body .close span {
  font-style: normal;
}
.cid-uRH1tv7zhg .carousel-inner > .active,
.cid-uRH1tv7zhg .carousel-inner > .next,
.cid-uRH1tv7zhg .carousel-inner > .prev {
  display: table;
}
.cid-uRH1tv7zhg .carousel-control .icon-next,
.cid-uRH1tv7zhg .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uRH1tv7zhg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uRH1tv7zhg .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uRH1tv7zhg .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uRH1tv7zhg .boxed-slider > div {
  position: relative;
}
.cid-uRH1tv7zhg .container img {
  width: 100%;
}
.cid-uRH1tv7zhg .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uRH1tv7zhg .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uRH1tv7zhg .mbr-table-cell {
  padding: 0;
}
.cid-uRH1tv7zhg .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uRH1tv7zhg .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uRH1tv7zhg .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uRH1tv7zhg .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-uRH1tv7zhg .carousel-item .container {
    width: 100%;
  }
}
.cid-uRH1tv7zhg .carousel-item-next.carousel-item-left,
.cid-uRH1tv7zhg .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-uRH1tv7zhg .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-uRH1tv7zhg .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRH1tv7zhg .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uRH1tv7zhg .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uRH1tv7zhg .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uRH1tv7zhg .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uRH1tv7zhg .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uRH1tv7zhg .mbr-slider .carousel-indicators li.active,
.cid-uRH1tv7zhg .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uRH1tv7zhg .mbr-slider .carousel-indicators li::after,
.cid-uRH1tv7zhg .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uRH1tv7zhg .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uRH1tv7zhg .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uRH1tv7zhg .mbr-slider > .container img {
  width: 100%;
}
.cid-uRH1tv7zhg .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uRH1tv7zhg .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uRH1tv7zhg .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uRH1tv7zhg .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uRH1tv7zhg .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uRH1tv7zhg .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-uRH1tv7zhg .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uRH1tv7zhg .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uRH1tv7zhg .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uRH1tv7zhg .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uRH1tv7zhg .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uRH1tv7zhg .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uRH1tv7zhg .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-nWHPiNaWjR .hidden {
  display: none;
}
.cid-nWHPiNaWjR .witsec-socialbar {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99999;
}
.cid-nWHPiNaWjR .witsec-socialbar a {
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  color: #ffffff;
  padding: 0.7rem;
  font-size: 1rem;
  border-radius: 30%;
}
.cid-nWHPiNaWjR .witsec-socialbar .icon {
  margin: 0.1rem;
}
.cid-nWHPiNaWjR .witsec-socialbar a:hover {
  background-color: #000000;
}
.cid-nWHPiNaWjR .witsec-socialbar .icon1 {
  background: #3b5998;
  color: #ffffff;
}
.cid-nWHPiNaWjR .witsec-socialbar .icon2 {
  background: #de6122;
  color: #ffffff;
}
.cid-nWHPiNaWjR .witsec-socialbar .icon3 {
  background: #c1200d;
  color: #ffffff;
}
.cid-nWHPiNaWjR .witsec-socialbar .icon4 {
  background: #007bb5;
  color: #ffffff;
}
.cid-nWHPiNaWjR .witsec-socialbar .icon5 {
  background: #850000;
  color: #ffffff;
}
.cid-nWHPiNaWjR .witsec-socialbar .icon6 {
  background: #232323;
  color: #ffffff;
}
.cid-uJ0J77rSj9 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #7787a5;
}
.cid-uJ0J77rSj9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ0J77rSj9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ0J77rSj9 .mbr-section-title {
  color: #efefef;
}
.cid-uJ0J77rSj9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uUTMCo5CWc {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #7787a5;
}
.cid-uUTMCo5CWc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUTMCo5CWc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUTMCo5CWc .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uUTMCo5CWc .text-wrapper .mbr-text {
  margin: 32px 0 0 0;
}
.cid-uUTMCo5CWc .date-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uUTMCo5CWc .date-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uUTMCo5CWc .date-wrapper .mbr-iconfont {
  font-size: 48px;
  margin-right: 10px;
}
.cid-uUTMCo5CWc .date-wrapper .mbr-date {
  margin: 0;
}
.cid-uUTMCo5CWc .icons-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.cid-uUTMCo5CWc .icons-wrapper .mbr-iconfont {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: transparent;
  border-radius: 100%;
  border: 1px solid #e8e8e8;
  margin: 0 5px 10px 5px;
  transition: all .3s ease;
}
.cid-uUTMCo5CWc .icons-wrapper .mbr-iconfont:hover {
  opacity: .7;
}
.cid-uUTMCo5CWc .mbr-date,
.cid-uUTMCo5CWc .mbr-iconfont {
  color: #ffffff;
  text-align: center;
}
.cid-tT0VIF5M9t {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #92b5d5;
}
.cid-tT0VIF5M9t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT0VIF5M9t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT0VIF5M9t .content-wrapper {
  background: #e7eef5;
}
@media (max-width: 991px) {
  .cid-tT0VIF5M9t .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tT0VIF5M9t .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tT0VIF5M9t .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tT0VIF5M9t .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tT0VIF5M9t .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tT0VIF5M9t .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tT0VIF5M9t .card-title {
  text-align: center;
  color: #212529;
}
.cid-tT0VIF5M9t .mbr-text,
.cid-tT0VIF5M9t .mbr-section-btn {
  text-align: center;
  color: #365c9a;
}
.cid-uLyFR4pw2E {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #e8eff9;
}
.cid-uLyFR4pw2E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLyFR4pw2E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uLyFR4pw2E .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uLyFR4pw2E .row {
  margin-left: -1.5vw;
  margin-right: -1.5vw;
}
.cid-uLyFR4pw2E.mbr-fullscreen {
  padding: 0 !important;
}
.cid-uLyFR4pw2E img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uLyFWhAQpT {
  padding-top: 45px;
  padding-bottom: 105px;
  background-color: #e8eff9;
}
.cid-uLyFWhAQpT .mbr-section-subtitle {
  color: #365c9a;
}
.cid-uLyFWhAQpT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLyFWhAQpT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLyFWhAQpT .mbr-section-title DIV {
  text-align: left;
}
.cid-uLyFWhAQpT .mbr-section-title {
  text-align: left;
}
.cid-ufEWSaYyRv {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ufEWSaYyRv .card {
  display: block;
  position: relative;
}
.cid-ufEWSaYyRv .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-ufEWSaYyRv .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-ufEWSaYyRv .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-ufEWSaYyRv .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-ufEWSaYyRv .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-ufEWSaYyRv .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-ufEWSaYyRv .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-ufEWSaYyRv .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-ufEWSaYyRv .mbr-card-text,
.cid-ufEWSaYyRv .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-uSwl8eOIar {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uSwl8eOIar .card {
  display: block;
  position: relative;
}
.cid-uSwl8eOIar .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-uSwl8eOIar .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-uSwl8eOIar .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uSwl8eOIar .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-uSwl8eOIar .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uSwl8eOIar .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-uSwl8eOIar .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-uSwl8eOIar .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-uSwl8eOIar .mbr-card-text,
.cid-uSwl8eOIar .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tXAbfH7ZKM {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tXAbfH7ZKM .card {
  display: block;
  position: relative;
}
.cid-tXAbfH7ZKM .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tXAbfH7ZKM .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tXAbfH7ZKM .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tXAbfH7ZKM .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tXAbfH7ZKM .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tXAbfH7ZKM .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tXAbfH7ZKM .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tXAbfH7ZKM .mbr-section-title {
  color: #365c9a;
}
.cid-tXAbfH7ZKM .mbr-card-text,
.cid-tXAbfH7ZKM .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tUmo6pkMsP {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tUmo6pkMsP .card {
  display: block;
  position: relative;
}
.cid-tUmo6pkMsP .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tUmo6pkMsP .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tUmo6pkMsP .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tUmo6pkMsP .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tUmo6pkMsP .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tUmo6pkMsP .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tUmo6pkMsP .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tUmo6pkMsP .mbr-section-title {
  color: #365c9a;
}
.cid-tUmo6pkMsP .mbr-card-text,
.cid-tUmo6pkMsP .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-t9vmHtUNz4 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t9vmHtUNz4 .mbr-section-subtitle {
  color: #767676;
}
.cid-uJ0XnJm78u {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #4e84c2;
}
.cid-uJ0XnJm78u .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uJ0XnJm78u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ0XnJm78u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ0XnJm78u .mbr-section-title {
  color: #ffffff;
}
.cid-uJ10xhnSTK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #6198d7;
}
.cid-uJ10xhnSTK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uJ10xhnSTK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ10xhnSTK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ10xhnSTK .mbr-section-title {
  color: #ffffff;
}
.cid-sLauZqFrgK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4e84c2;
}
.cid-sLauZqFrgK .mbr-section-subtitle {
  color: #efefef;
  font-weight: 300;
}
.cid-sLauZqFrgK .number {
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #ffffff;
  font-size: 3rem;
}
.cid-sLauZqFrgK .period {
  display: block;
  padding-top: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #ffffff;
}
.cid-sLauZqFrgK .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: none;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #ffffff;
  font-size: 3rem;
}
.cid-sLauZqFrgK .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sLauZqFrgK .dot {
    display: none;
  }
}
@media (max-width: 550px) {
  .cid-sLauZqFrgK .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-sLauZqFrgK .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-sLauZqFrgK .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 300px) {
  .cid-sLauZqFrgK .number {
    font-size: 25px;
  }
  .cid-sLauZqFrgK .period {
    font-size: 0.7rem;
  }
}
.cid-sLauZqFrgK H2 {
  color: #ffffff;
}
.cid-uJ0WIe6MxH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ec6963;
}
.cid-uJ0WIe6MxH .mbr-section-subtitle {
  color: #efefef;
  font-weight: 300;
}
.cid-uJ0WIe6MxH .number {
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #ffffff;
  font-size: 3rem;
}
.cid-uJ0WIe6MxH .period {
  display: block;
  padding-top: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #ffffff;
}
.cid-uJ0WIe6MxH .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: none;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #ffffff;
  font-size: 3rem;
}
.cid-uJ0WIe6MxH .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uJ0WIe6MxH .dot {
    display: none;
  }
}
@media (max-width: 550px) {
  .cid-uJ0WIe6MxH .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-uJ0WIe6MxH .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-uJ0WIe6MxH .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 300px) {
  .cid-uJ0WIe6MxH .number {
    font-size: 25px;
  }
  .cid-uJ0WIe6MxH .period {
    font-size: 0.7rem;
  }
}
.cid-uJ0WIe6MxH H2 {
  color: #ffffff;
}
.cid-uJ0YpIRwXW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4e84c2;
}
.cid-uJ0YpIRwXW .mbr-section-subtitle {
  color: #efefef;
  font-weight: 300;
}
.cid-uJ0YpIRwXW .number {
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #ffffff;
  font-size: 3rem;
}
.cid-uJ0YpIRwXW .period {
  display: block;
  padding-top: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #ffffff;
}
.cid-uJ0YpIRwXW .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: none;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #ffffff;
  font-size: 3rem;
}
.cid-uJ0YpIRwXW .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uJ0YpIRwXW .dot {
    display: none;
  }
}
@media (max-width: 550px) {
  .cid-uJ0YpIRwXW .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-uJ0YpIRwXW .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-uJ0YpIRwXW .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 300px) {
  .cid-uJ0YpIRwXW .number {
    font-size: 25px;
  }
  .cid-uJ0YpIRwXW .period {
    font-size: 0.7rem;
  }
}
.cid-uJ0YpIRwXW H2 {
  color: #ffffff;
}
.cid-uJ0Z0N79iT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ec6963;
}
.cid-uJ0Z0N79iT .mbr-section-subtitle {
  color: #efefef;
  font-weight: 300;
}
.cid-uJ0Z0N79iT .number {
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #ffffff;
  font-size: 3rem;
}
.cid-uJ0Z0N79iT .period {
  display: block;
  padding-top: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #ffffff;
}
.cid-uJ0Z0N79iT .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: none;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #ffffff;
  font-size: 3rem;
}
.cid-uJ0Z0N79iT .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uJ0Z0N79iT .dot {
    display: none;
  }
}
@media (max-width: 550px) {
  .cid-uJ0Z0N79iT .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-uJ0Z0N79iT .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-uJ0Z0N79iT .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 300px) {
  .cid-uJ0Z0N79iT .number {
    font-size: 25px;
  }
  .cid-uJ0Z0N79iT .period {
    font-size: 0.7rem;
  }
}
.cid-uJ0Z0N79iT H2 {
  color: #ffffff;
}
.cid-uJ0YM4HVUl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4e84c2;
}
.cid-uJ0YM4HVUl .mbr-section-subtitle {
  color: #efefef;
  font-weight: 300;
}
.cid-uJ0YM4HVUl .number {
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #ffffff;
  font-size: 3rem;
}
.cid-uJ0YM4HVUl .period {
  display: block;
  padding-top: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #ffffff;
}
.cid-uJ0YM4HVUl .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: none;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #ffffff;
  font-size: 3rem;
}
.cid-uJ0YM4HVUl .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uJ0YM4HVUl .dot {
    display: none;
  }
}
@media (max-width: 550px) {
  .cid-uJ0YM4HVUl .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-uJ0YM4HVUl .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-uJ0YM4HVUl .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 300px) {
  .cid-uJ0YM4HVUl .number {
    font-size: 25px;
  }
  .cid-uJ0YM4HVUl .period {
    font-size: 0.7rem;
  }
}
.cid-uJ0YM4HVUl H2 {
  color: #ffffff;
}
.cid-rJzoRIk8av {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rJzoRIk8av .mbr-overlay {
  background: #efefef;
}
.cid-rJzoRIk8av .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rJzoRIk8av .client-name {
  color: #8d97ad;
}
.cid-rJzoRIk8av .wrap-img {
  padding-bottom: 1rem;
}
.cid-rJzoRIk8av .wrap-img img {
  max-width: 100%;
}
.cid-rJzoRIk8av .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-rJzoRIk8av .mbr-section-title {
  color: #365c9a;
}
.cid-rJ1utARkMN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fbfcff;
}
.cid-rJ1utARkMN .mbr-overlay {
  background: #efefef;
}
.cid-rJ1utARkMN .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rJ1utARkMN .client-name {
  color: #8d97ad;
}
.cid-rJ1utARkMN .wrap-img {
  padding-bottom: 1rem;
}
.cid-rJ1utARkMN .wrap-img img {
  max-width: 100%;
}
.cid-rJ1utARkMN .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-rJ1utARkMN .mbr-section-title {
  color: #365c9a;
}
.cid-rJ1utARkMN .card-box > p {
  color: #767676;
}
.cid-rJ0VNd7Ok6 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-rJ0VNd7Ok6 .mbr-section-subtitle {
  color: #767676;
}
.cid-rJ0VNd7Ok6 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rJ0VNd7Ok6 .socicon-bg-facebook:after {
  border-color: #3e5b98;
}
.cid-rJ0VNd7Ok6 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rJ0VNd7Ok6 .socicon-bg-twitter:after {
  border-color: #4da7de;
}
.cid-rJ0VNd7Ok6 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rJ0VNd7Ok6 .socicon-bg-googleplus:after {
  border-color: #dd4b39;
}
.cid-rJ0VNd7Ok6 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rJ0VNd7Ok6 .socicon-bg-vkontakte:after {
  border-color: #5a7fa6;
}
.cid-rJ0VNd7Ok6 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rJ0VNd7Ok6 .socicon-bg-odnoklassniki:after {
  border-color: #f48420;
}
.cid-rJ0VNd7Ok6 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rJ0VNd7Ok6 .socicon-bg-pinterest:after {
  border-color: #c92619;
}
.cid-rJ0VNd7Ok6 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rJ0VNd7Ok6 .socicon-bg-mail:after {
  border-color: #134785;
}
.cid-rJ0VNd7Ok6 .btn-social {
  border: none !important;
}
.cid-rJ0VNd7Ok6 [class^="socicon-"]:before,
.cid-rJ0VNd7Ok6 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rJ0VNd7Ok6 .btn {
    font-size: 20px !important;
  }
}
.cid-rJ0VNd7Ok6 .mbr-section-title,
.cid-rJ0VNd7Ok6 .mbr-social-likes {
  color: #232323;
}
.cid-rIz42Ad0c8 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #f9f9f9;
}
@media (max-width: 767px) {
  .cid-rIz42Ad0c8 .content {
    text-align: center;
  }
  .cid-rIz42Ad0c8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rIz42Ad0c8 .img-logo img {
  height: 6rem;
}
.cid-rIz42Ad0c8 [type="email"] {
  font-size: .75rem;
  margin-bottom: 5px;
  text-align: center;
  min-width: 150px;
}
.cid-rIz42Ad0c8 .input-group-btn {
  display: inline-block;
}
.cid-rIz42Ad0c8 .input-group-btn a.btn {
  margin: 0 !important;
}
.cid-rIz42Ad0c8 .input-group {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-rIz42Ad0c8 [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
}
.cid-rIz42Ad0c8 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.cid-rIz42Ad0c8 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rIz42Ad0c8 .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rIz42Ad0c8 .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rIz42Ad0c8 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rIz42Ad0c8 .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rIz42Ad0c8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rIz42Ad0c8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rIz42Ad0c8 form .input-group input.form-control,
.cid-rIz42Ad0c8 form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-rIz42Ad0c8 .form-inline {
  justify-content: center;
}
.cid-rIz42Ad0c8 .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rIz42Ad0c8 .foot-logo {
    text-align: center !important;
  }
  .cid-rIz42Ad0c8 .foot-title {
    text-align: center !important;
  }
  .cid-rIz42Ad0c8 .mbr-text {
    text-align: center !important;
  }
}
.cid-rIz42Ad0c8 .copyright > p {
  text-align: center;
  color: #232323;
}
.cid-rIz42Ad0c8 .foot-logo {
  color: #212529;
}
.cid-rIz42Ad0c8 .foot-title {
  color: #59585d;
}
.cid-rIz42Ad0c8 .foot-text {
  color: #232323;
}
.cid-rIz42Ad0c8 .form-text {
  color: #232323;
}
.cid-rIz42Ad0c8 .mbr-links-column {
  color: #232323;
}
.cid-ucWNFmLSYA.popup-builder {
  background-color: #ffffff;
}
.cid-ucWNFmLSYA.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ucWNFmLSYA.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ucWNFmLSYA .modal-content,
.cid-ucWNFmLSYA .modal-dialog {
  height: auto;
}
.cid-ucWNFmLSYA .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ucWNFmLSYA .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ucWNFmLSYA .form-wrapper .mbr-form .form-group,
  .cid-ucWNFmLSYA .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ucWNFmLSYA .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ucWNFmLSYA .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ucWNFmLSYA .mbr-text {
  text-align: center;
}
.cid-ucWNFmLSYA .pt-0 {
  padding-top: 0 !important;
}
.cid-ucWNFmLSYA .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ucWNFmLSYA .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ucWNFmLSYA .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ucWNFmLSYA .modal-open {
  overflow: hidden;
}
.cid-ucWNFmLSYA .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ucWNFmLSYA .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ucWNFmLSYA .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ucWNFmLSYA .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ucWNFmLSYA .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ucWNFmLSYA .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ucWNFmLSYA .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ucWNFmLSYA .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ucWNFmLSYA .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ucWNFmLSYA .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ucWNFmLSYA .modal-backdrop.fade {
  opacity: 0;
}
.cid-ucWNFmLSYA .modal-backdrop.show {
  opacity: .5;
}
.cid-ucWNFmLSYA .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ucWNFmLSYA .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ucWNFmLSYA .modal-header {
    padding: 1rem;
  }
}
.cid-ucWNFmLSYA .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ucWNFmLSYA .modal-header .close svg {
  fill: #353535;
}
.cid-ucWNFmLSYA .modal-header .close:hover {
  opacity: 1;
}
.cid-ucWNFmLSYA .modal-header .close:focus {
  outline: none;
}
.cid-ucWNFmLSYA .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ucWNFmLSYA .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ucWNFmLSYA .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ucWNFmLSYA .modal-body {
    padding: 1rem;
  }
}
.cid-ucWNFmLSYA .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ucWNFmLSYA .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ucWNFmLSYA .modal-footer {
    padding: 1rem;
  }
}
.cid-ucWNFmLSYA .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ucWNFmLSYA .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ucWNFmLSYA .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ucWNFmLSYA .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ucWNFmLSYA .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ucWNFmLSYA .modal-lg,
  .cid-ucWNFmLSYA .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ucWNFmLSYA .modal-xl {
    max-width: 1140px;
  }
}
.cid-ucWNFmLSYA .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ucWNFmLSYA .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ucWNFmLSYA .form-group {
  margin-bottom: 1rem;
}
.cid-ucWNFmLSYA .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ucWNFmLSYA .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ucWNFmLSYA .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ucWNFmLSYA .mbr-section-btn {
  margin: 0;
}
.cid-ucWNFmLSYA .mbr-section-btn .btn {
  margin: 0;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJeaQLitUq {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rJeaQLitUq .mbr-text {
  text-align: left;
}
.cid-saPwzVRO94 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-saPwzVRO94 .mbr-text {
  color: #365c9a;
}
.cid-sc3Dhc2vYl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sc3Dhc2vYl .mbr-text {
  text-align: center;
}
.cid-sc3DskbIge {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sc3DskbIge .mbr-text {
  color: #232323;
}
.cid-sc3DPOuKP6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sc3DPOuKP6 .mbr-section-subtitle {
  color: #767676;
}
.cid-sc3DPOuKP6 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sc3DPOuKP6 .table-wrapper {
  margin: 0 auto;
}
.cid-sc3DPOuKP6 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sc3DPOuKP6 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-sc3DPOuKP6 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-sc3DPOuKP6 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sc3DPOuKP6 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sc3DPOuKP6 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sc3DPOuKP6 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-sc3DPOuKP6 .dataTables_wrapper {
  display: block;
}
.cid-sc3DPOuKP6 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sc3DPOuKP6 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sc3DPOuKP6 .head-item:after,
.cid-sc3DPOuKP6 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-sc3DPOuKP6 .dataTables_filter {
    text-align: center;
  }
  .cid-sc3DPOuKP6 .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-sc3DPOuKP6 .dataTables_filter {
    text-align: center;
  }
  .cid-sc3DPOuKP6 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-sc3DPOuKP6 table th,
  .cid-sc3DPOuKP6 table td {
    padding: .75rem;
  }
}
.cid-sc3DPOuKP6 .body-item {
  text-align: left;
}
.cid-sc3S9rBU4w {
  padding-top: 30px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sc3S9rBU4w .mbr-section-subtitle {
  color: #767676;
}
.cid-sc3S9rBU4w .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sc3S9rBU4w .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sc3S9rBU4w .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sc3S9rBU4w .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sc3S9rBU4w .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-sc3S9rBU4w .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sc3S9rBU4w .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sc3S9rBU4w .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sc3S9rBU4w .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sc3S9rBU4w .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sc3S9rBU4w ul {
  font-size: 0;
}
.cid-sc3S9rBU4w .mbr-gallery-filter ul {
  text-align: center;
}
.cid-sc3S9rBU4w .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sc3S9rBU4w .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-sc3S9rBU4w .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sc3S9rBU4w .mbr-gallery-filter ul li:first-child,
.cid-sc3S9rBU4w .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sc3S9rBU4w .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sc3S9rBU4w .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-sc3S9rBU4w .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sc3S9rBU4w .btn.active:after {
  animation: none;
}
.cid-sc3S9rBU4w .btn:active {
  box-shadow: none !important;
}
.cid-sc3S9rBU4w .btn:hover {
  background: transparent !important;
}
.cid-sc3S9rBU4w .btn:hover:before {
  background: transparent !important;
}
.cid-sc3S9rBU4w .btn:before {
  background-color: transparent !important;
}
.cid-sc3S9rBU4w .btn:focus {
  box-shadow: none !important;
}
.cid-sc3UI5ASE8 {
  padding-top: 30px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sc3UI5ASE8 .mbr-section-subtitle {
  color: #767676;
}
.cid-sc3UI5ASE8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sc3UI5ASE8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sc3UI5ASE8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sc3UI5ASE8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sc3UI5ASE8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-sc3UI5ASE8 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sc3UI5ASE8 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sc3UI5ASE8 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sc3UI5ASE8 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sc3UI5ASE8 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sc3UI5ASE8 ul {
  font-size: 0;
}
.cid-sc3UI5ASE8 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-sc3UI5ASE8 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sc3UI5ASE8 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-sc3UI5ASE8 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sc3UI5ASE8 .mbr-gallery-filter ul li:first-child,
.cid-sc3UI5ASE8 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sc3UI5ASE8 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sc3UI5ASE8 .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-sc3UI5ASE8 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sc3UI5ASE8 .btn.active:after {
  animation: none;
}
.cid-sc3UI5ASE8 .btn:active {
  box-shadow: none !important;
}
.cid-sc3UI5ASE8 .btn:hover {
  background: transparent !important;
}
.cid-sc3UI5ASE8 .btn:hover:before {
  background: transparent !important;
}
.cid-sc3UI5ASE8 .btn:before {
  background-color: transparent !important;
}
.cid-sc3UI5ASE8 .btn:focus {
  box-shadow: none !important;
}
.cid-rJtxOMA4I9 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJtxOMA4I9 .mbr-text {
  color: #365c9a;
}
.cid-rJtxPo4g2g {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rJtxCVYYKs {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rJtxCVYYKs .mbr-section-subtitle {
  color: #767676;
}
.cid-rJtxCVYYKs .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rJtxCVYYKs .table-wrapper {
  margin: 0 auto;
}
.cid-rJtxCVYYKs table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rJtxCVYYKs table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-rJtxCVYYKs table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-rJtxCVYYKs .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rJtxCVYYKs .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rJtxCVYYKs .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rJtxCVYYKs .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-rJtxCVYYKs .dataTables_wrapper {
  display: block;
}
.cid-rJtxCVYYKs .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-rJtxCVYYKs .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rJtxCVYYKs .head-item:after,
.cid-rJtxCVYYKs .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-rJtxCVYYKs .dataTables_filter {
    text-align: center;
  }
  .cid-rJtxCVYYKs .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-rJtxCVYYKs .dataTables_filter {
    text-align: center;
  }
  .cid-rJtxCVYYKs .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-rJtxCVYYKs table th,
  .cid-rJtxCVYYKs table td {
    padding: .75rem;
  }
}
.cid-rJtxCVYYKs .body-item {
  text-align: left;
}
.cid-rJtxCVYYKs .head-item {
  text-align: center;
}
.cid-sIoJKBdDFF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIoJKBdDFF P {
  color: #767676;
}
.cid-sIoJKBdDFF hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-sIoJM0Ir9a {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIoJM0Ir9a .mbr-text {
  text-align: center;
}
.cid-sIoJMWkBou {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIoJMWkBou .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-sIoJNFrj6Q {
  padding-top: 30px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sIoJNFrj6Q .mbr-section-subtitle {
  color: #767676;
}
.cid-sIoJNFrj6Q .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sIoJNFrj6Q .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sIoJNFrj6Q .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sIoJNFrj6Q .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sIoJNFrj6Q .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-sIoJNFrj6Q .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sIoJNFrj6Q .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sIoJNFrj6Q .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sIoJNFrj6Q .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sIoJNFrj6Q .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sIoJNFrj6Q ul {
  font-size: 0;
}
.cid-sIoJNFrj6Q .mbr-gallery-filter ul {
  text-align: center;
}
.cid-sIoJNFrj6Q .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sIoJNFrj6Q .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-sIoJNFrj6Q .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sIoJNFrj6Q .mbr-gallery-filter ul li:first-child,
.cid-sIoJNFrj6Q .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sIoJNFrj6Q .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sIoJNFrj6Q .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-sIoJNFrj6Q .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sIoJNFrj6Q .btn.active:after {
  animation: none;
}
.cid-sIoJNFrj6Q .btn:active {
  box-shadow: none !important;
}
.cid-sIoJNFrj6Q .btn:hover {
  background: transparent !important;
}
.cid-sIoJNFrj6Q .btn:hover:before {
  background: transparent !important;
}
.cid-sIoJNFrj6Q .btn:before {
  background-color: transparent !important;
}
.cid-sIoJNFrj6Q .btn:focus {
  box-shadow: none !important;
}
.cid-rJtaf8KZvl {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #fac769;
}
.cid-rJtaf8KZvl .mbr-text {
  color: #000000;
}
.cid-rJtaoADjtk {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #fac769;
}
.cid-rJtl74WNuE {
  padding-top: 0px;
  padding-bottom: 75px;
  background: linear-gradient(45deg, #fac769, #fac769);
}
.cid-rJtl74WNuE .mbr-text,
.cid-rJtl74WNuE .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-rJtl74WNuE H1 {
  color: #2e2e2e;
}
.cid-rJ2xCNYnPK {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ2xCNYnPK .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ2xCNYnPK .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tsVdGXlxGy.popup-builder {
  background-color: #ffffff;
}
.cid-tsVdGXlxGy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsVdGXlxGy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsVdGXlxGy .modal-content,
.cid-tsVdGXlxGy .modal-dialog {
  height: auto;
}
.cid-tsVdGXlxGy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsVdGXlxGy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsVdGXlxGy .form-wrapper .mbr-form .form-group,
  .cid-tsVdGXlxGy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsVdGXlxGy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsVdGXlxGy .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsVdGXlxGy .mbr-text {
  text-align: left;
}
.cid-tsVdGXlxGy .pt-0 {
  padding-top: 0 !important;
}
.cid-tsVdGXlxGy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsVdGXlxGy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsVdGXlxGy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsVdGXlxGy .modal-open {
  overflow: hidden;
}
.cid-tsVdGXlxGy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsVdGXlxGy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsVdGXlxGy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsVdGXlxGy .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tsVdGXlxGy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsVdGXlxGy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsVdGXlxGy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsVdGXlxGy .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tsVdGXlxGy .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tsVdGXlxGy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsVdGXlxGy .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsVdGXlxGy .modal-backdrop.show {
  opacity: .5;
}
.cid-tsVdGXlxGy .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tsVdGXlxGy .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsVdGXlxGy .modal-header {
    padding: 1rem;
  }
}
.cid-tsVdGXlxGy .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsVdGXlxGy .modal-header .close svg {
  fill: #353535;
}
.cid-tsVdGXlxGy .modal-header .close:hover {
  opacity: 1;
}
.cid-tsVdGXlxGy .modal-header .close:focus {
  outline: none;
}
.cid-tsVdGXlxGy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsVdGXlxGy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tsVdGXlxGy .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsVdGXlxGy .modal-body {
    padding: 1rem;
  }
}
.cid-tsVdGXlxGy .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsVdGXlxGy .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsVdGXlxGy .modal-footer {
    padding: 1rem;
  }
}
.cid-tsVdGXlxGy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsVdGXlxGy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsVdGXlxGy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsVdGXlxGy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsVdGXlxGy .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tsVdGXlxGy .modal-lg,
  .cid-tsVdGXlxGy .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tsVdGXlxGy .modal-xl {
    max-width: 1140px;
  }
}
.cid-tsVdGXlxGy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsVdGXlxGy .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tsVdGXlxGy .form-group {
  margin-bottom: 1rem;
}
.cid-tsVdGXlxGy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsVdGXlxGy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsVdGXlxGy .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsVdGXlxGy .mbr-section-btn {
  margin: 0;
}
.cid-tsVdGXlxGy .mbr-section-btn .btn {
  margin: 0;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJeaF1LtD9 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rJeaF1LtD9 .mbr-text {
  text-align: left;
}
.cid-rJt6FDO6ce {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJt6FDO6ce .mbr-text {
  color: #365c9a;
}
.cid-rJ2idL0F8k {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJ2idL0F8k .mbr-text {
  color: #365c9a;
}
.cid-rJ2idLyzII {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rJ2idMkIDw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJ2idMkIDw .mbr-text {
  color: #365c9a;
}
.cid-rJ2iXaqSSo {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rJ2iXaqSSo .mbr-section-subtitle {
  color: #767676;
}
.cid-rJ2iXaqSSo .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rJ2iXaqSSo .table-wrapper {
  margin: 0 auto;
}
.cid-rJ2iXaqSSo table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rJ2iXaqSSo table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-rJ2iXaqSSo table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-rJ2iXaqSSo .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rJ2iXaqSSo .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rJ2iXaqSSo .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rJ2iXaqSSo .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-rJ2iXaqSSo .dataTables_wrapper {
  display: block;
}
.cid-rJ2iXaqSSo .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-rJ2iXaqSSo .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rJ2iXaqSSo .head-item:after,
.cid-rJ2iXaqSSo .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-rJ2iXaqSSo .dataTables_filter {
    text-align: center;
  }
  .cid-rJ2iXaqSSo .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-rJ2iXaqSSo .dataTables_filter {
    text-align: center;
  }
  .cid-rJ2iXaqSSo .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-rJ2iXaqSSo table th,
  .cid-rJ2iXaqSSo table td {
    padding: .75rem;
  }
}
.cid-rJ2iXaqSSo .body-item {
  text-align: left;
}
.cid-rJ2kHP4NTi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJ2kHP4NTi .mbr-text {
  color: #365c9a;
}
.cid-rJ2kKrmIly {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ2kKrmIly .mbr-section-subtitle {
  color: #767676;
}
.cid-rJ2kKrmIly .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rJ2kKrmIly .table-wrapper {
  margin: 0 auto;
}
.cid-rJ2kKrmIly table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rJ2kKrmIly table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-rJ2kKrmIly table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-rJ2kKrmIly .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rJ2kKrmIly .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rJ2kKrmIly .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rJ2kKrmIly .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-rJ2kKrmIly .dataTables_wrapper {
  display: block;
}
.cid-rJ2kKrmIly .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-rJ2kKrmIly .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rJ2kKrmIly .head-item:after,
.cid-rJ2kKrmIly .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-rJ2kKrmIly .dataTables_filter {
    text-align: center;
  }
  .cid-rJ2kKrmIly .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-rJ2kKrmIly .dataTables_filter {
    text-align: center;
  }
  .cid-rJ2kKrmIly .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-rJ2kKrmIly table th,
  .cid-rJ2kKrmIly table td {
    padding: .75rem;
  }
}
.cid-rJ2kKrmIly .body-item {
  text-align: left;
  color: #232323;
}
.cid-rJ2kKrmIly .head-item {
  text-align: left;
}
.cid-rJt6Z9831n {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJt6Z9831n .mbr-text {
  color: #365c9a;
}
.cid-sp5AH0pIcD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sp5AH0pIcD .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sp5AH0pIcD .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-sp5AH0pIcD .mbr-text {
  color: #767676;
}
.cid-rJt74XAshV {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJt74XAshV .mbr-text {
  text-align: center;
}
.cid-sp5BKJpX2e {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sp5BKJpX2e .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sp5BKJpX2e .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-sp5BKJpX2e .mbr-text {
  color: #767676;
}
.cid-sp5C4Puh05 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sp5C4Puh05 .mbr-text {
  text-align: center;
}
.cid-rJt83LTTeA {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJt83LTTeA .mbr-text {
  color: #365c9a;
}
.cid-rJt82zI89Z {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rJt8uIvIbX {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rJ2idNH7n8 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ2idNH7n8 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ2idNH7n8 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJeacqGLfd {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rJeacqGLfd .mbr-text {
  text-align: left;
}
.cid-rJ2hTaTMXE {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJ2hTaTMXE .mbr-text {
  color: #365c9a;
}
.cid-rJ2hM2CAM9 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rJzsmI05EK {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rJzsmI05EK .mbr-overlay {
  background: #efefef;
}
.cid-rJzsmI05EK .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rJzsmI05EK .client-name {
  color: #8d97ad;
}
.cid-rJzsmI05EK .wrap-img {
  padding-bottom: 1rem;
}
.cid-rJzsmI05EK .wrap-img img {
  max-width: 100%;
}
.cid-rJzsmI05EK .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-rJzsmI05EK .mbr-section-title {
  color: #365c9a;
}
.cid-rJzsmI05EK .card-box > p {
  color: #767676;
}
.cid-rJ2hfzhH56 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJ2hfzhH56 .mbr-text {
  color: #365c9a;
}
.cid-rJ2hvPLbbg {
  padding-top: 15px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-rJ2hvPLbbg .mbr-text {
  color: #000000;
}
.cid-rJ2fRf1960 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ2fRf1960 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ2fRf1960 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJeauAGOUt {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rJeauAGOUt .mbr-text {
  text-align: left;
}
.cid-rJinfDrMGw {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJinfDrMGw .mbr-text {
  color: #365c9a;
}
.cid-rJiqziyn2i {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJiqziyn2i .mbr-text {
  color: #232323;
}
.cid-rJczTqxJl8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJczTqxJl8 .mbr-text {
  color: #365c9a;
}
.cid-sRaSwgEuX0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sRaSyuLpuC {
  padding-top: 15px;
  padding-bottom: 30px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-sRaSyuLpuC .mbr-text,
.cid-sRaSyuLpuC .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-sRaSyuLpuC H1 {
  color: #2e2e2e;
}
.cid-rJv74K0UPX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rVFQXGRxcO {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rVFQXGRxcO .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rVFQXGRxcO .title,
.cid-rVFQXGRxcO .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rVFQXGRxcO .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rVFQXGRxcO .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rVFQXGRxcO .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rVFQXGRxcO .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rVFQXGRxcO .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rVFQXGRxcO .card-title {
  color: #282828;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rVFQXGRxcO .card-img {
  overflow: hidden;
}
.cid-rVFQXGRxcO .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rVFQXGRxcO .card-box {
  padding: 0rem;
}
.cid-rVFQXGRxcO img {
  transition: all 0.3s;
}
.cid-rVFQXGRxcO .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rVFQXGRxcO .status {
  color: #000000;
  text-align: left;
}
.cid-rVFS1EFYMl {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rVFS1EFYMl .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rVFS1EFYMl .title,
.cid-rVFS1EFYMl .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rVFS1EFYMl .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rVFS1EFYMl .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rVFS1EFYMl .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rVFS1EFYMl .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rVFS1EFYMl .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rVFS1EFYMl .card-title {
  color: #282828;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rVFS1EFYMl .card-img {
  overflow: hidden;
}
.cid-rVFS1EFYMl .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rVFS1EFYMl .card-box {
  padding: 0rem;
}
.cid-rVFS1EFYMl img {
  transition: all 0.3s;
}
.cid-rVFS1EFYMl .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rVFS1EFYMl .status {
  color: #000000;
  text-align: left;
}
.cid-rVFSGe0Oag {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rVFSGe0Oag .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rVFSGe0Oag .title,
.cid-rVFSGe0Oag .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rVFSGe0Oag .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rVFSGe0Oag .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rVFSGe0Oag .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rVFSGe0Oag .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rVFSGe0Oag .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rVFSGe0Oag .card-title {
  color: #282828;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rVFSGe0Oag .card-img {
  overflow: hidden;
}
.cid-rVFSGe0Oag .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rVFSGe0Oag .card-box {
  padding: 0rem;
}
.cid-rVFSGe0Oag img {
  transition: all 0.3s;
}
.cid-rVFSGe0Oag .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rVFSGe0Oag .status {
  color: #000000;
  text-align: left;
}
.cid-uAwOKDhYve {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uAwOKDhYve .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-uAwOKDhYve .title,
.cid-uAwOKDhYve .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-uAwOKDhYve .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-uAwOKDhYve .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-uAwOKDhYve .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-uAwOKDhYve .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-uAwOKDhYve .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-uAwOKDhYve .card-title {
  color: #282828;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-uAwOKDhYve .card-img {
  overflow: hidden;
}
.cid-uAwOKDhYve .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-uAwOKDhYve .card-box {
  padding: 0rem;
}
.cid-uAwOKDhYve img {
  transition: all 0.3s;
}
.cid-uAwOKDhYve .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-uAwOKDhYve .status {
  color: #000000;
  text-align: left;
}
.cid-rJcAAlnI3w {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJcAAlnI3w .mbr-text {
  color: #365c9a;
  text-align: left;
}
.cid-rJcBEQ2PAH {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rJcBEQ2PAH .mbr-section-subtitle {
  color: #767676;
}
.cid-rJcBEQ2PAH .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rJcBEQ2PAH .table-wrapper {
  margin: 0 auto;
}
.cid-rJcBEQ2PAH table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rJcBEQ2PAH table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #4e84c2;
  color: white;
  vertical-align: middle;
}
.cid-rJcBEQ2PAH table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-rJcBEQ2PAH table.table {
  background: #f6f6f6;
}
.cid-rJcBEQ2PAH .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rJcBEQ2PAH .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rJcBEQ2PAH .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rJcBEQ2PAH .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-rJcBEQ2PAH .dataTables_wrapper {
  display: block;
}
.cid-rJcBEQ2PAH .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-rJcBEQ2PAH .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rJcBEQ2PAH .head-item:after,
.cid-rJcBEQ2PAH .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-rJcBEQ2PAH .dataTables_filter {
    text-align: center;
  }
  .cid-rJcBEQ2PAH .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-rJcBEQ2PAH .dataTables_filter {
    text-align: center;
  }
  .cid-rJcBEQ2PAH .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-rJcBEQ2PAH table th,
  .cid-rJcBEQ2PAH table td {
    padding: .75rem;
  }
}
.cid-rJcBEQ2PAH .body-item {
  text-align: left;
}
.cid-rJcBEQ2PAH .head-item {
  text-align: left;
}
.cid-rJcBEQ2PAH .info {
  color: #ffffff;
}
.cid-rJcFUbVqCm {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rJcFUbVqCm .mbr-text {
  color: #365c9a;
}
.cid-rJcABquThC {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJcABquThC .mbr-text {
  color: #232323;
}
.cid-rJcK221XHv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJcK221XHv .mbr-text {
  color: #365c9a;
}
.cid-rJcK7rKq1a {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rJcK7rKq1a .mbr-text {
  color: #232323;
}
.cid-rJcKvUxMFC {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-rJcKvUxMFC .mbr-text,
.cid-rJcKvUxMFC .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-rJcKvUxMFC H1 {
  color: #2e2e2e;
}
.cid-rJcJuDyYFP {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rJcJuDyYFP .mbr-text {
  color: #232323;
}
.cid-rJ27wUBMWG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ27wUBMWG .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ27wUBMWG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uTKfTsa5pJ.popup-builder {
  background-color: #ffffff;
}
.cid-uTKfTsa5pJ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uTKfTsa5pJ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uTKfTsa5pJ .modal-content,
.cid-uTKfTsa5pJ .modal-dialog {
  height: auto;
}
.cid-uTKfTsa5pJ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uTKfTsa5pJ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uTKfTsa5pJ .form-wrapper .mbr-form .form-group,
  .cid-uTKfTsa5pJ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uTKfTsa5pJ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uTKfTsa5pJ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uTKfTsa5pJ .mbr-text {
  text-align: center;
}
.cid-uTKfTsa5pJ .pt-0 {
  padding-top: 0 !important;
}
.cid-uTKfTsa5pJ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uTKfTsa5pJ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uTKfTsa5pJ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uTKfTsa5pJ .modal-open {
  overflow: hidden;
}
.cid-uTKfTsa5pJ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uTKfTsa5pJ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uTKfTsa5pJ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uTKfTsa5pJ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uTKfTsa5pJ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uTKfTsa5pJ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uTKfTsa5pJ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uTKfTsa5pJ .modal-content {
  background: #031532;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uTKfTsa5pJ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uTKfTsa5pJ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uTKfTsa5pJ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uTKfTsa5pJ .modal-backdrop.show {
  opacity: .5;
}
.cid-uTKfTsa5pJ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uTKfTsa5pJ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uTKfTsa5pJ .modal-header {
    padding: 1rem;
  }
}
.cid-uTKfTsa5pJ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uTKfTsa5pJ .modal-header .close svg {
  fill: #c1c1c1;
}
.cid-uTKfTsa5pJ .modal-header .close:hover {
  opacity: 1;
}
.cid-uTKfTsa5pJ .modal-header .close:focus {
  outline: none;
}
.cid-uTKfTsa5pJ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uTKfTsa5pJ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uTKfTsa5pJ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uTKfTsa5pJ .modal-body {
    padding: 1rem;
  }
}
.cid-uTKfTsa5pJ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uTKfTsa5pJ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uTKfTsa5pJ .modal-footer {
    padding: 1rem;
  }
}
.cid-uTKfTsa5pJ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uTKfTsa5pJ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uTKfTsa5pJ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uTKfTsa5pJ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uTKfTsa5pJ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uTKfTsa5pJ .modal-lg,
  .cid-uTKfTsa5pJ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uTKfTsa5pJ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uTKfTsa5pJ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uTKfTsa5pJ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uTKfTsa5pJ .form-group {
  margin-bottom: 1rem;
}
.cid-uTKfTsa5pJ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uTKfTsa5pJ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uTKfTsa5pJ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uTKfTsa5pJ .mbr-section-btn {
  margin: 0;
}
.cid-uTKfTsa5pJ .mbr-section-btn .btn {
  margin: 0;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uG5AdajcgE.popup-builder {
  background-color: #ffffff;
}
.cid-uG5AdajcgE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uG5AdajcgE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uG5AdajcgE .modal-content,
.cid-uG5AdajcgE .modal-dialog {
  height: auto;
}
.cid-uG5AdajcgE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uG5AdajcgE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uG5AdajcgE .form-wrapper .mbr-form .form-group,
  .cid-uG5AdajcgE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uG5AdajcgE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uG5AdajcgE .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uG5AdajcgE .mbr-text {
  text-align: left;
}
.cid-uG5AdajcgE .pt-0 {
  padding-top: 0 !important;
}
.cid-uG5AdajcgE .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uG5AdajcgE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uG5AdajcgE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uG5AdajcgE .modal-open {
  overflow: hidden;
}
.cid-uG5AdajcgE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uG5AdajcgE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uG5AdajcgE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uG5AdajcgE .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uG5AdajcgE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uG5AdajcgE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uG5AdajcgE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uG5AdajcgE .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uG5AdajcgE .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uG5AdajcgE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uG5AdajcgE .modal-backdrop.fade {
  opacity: 0;
}
.cid-uG5AdajcgE .modal-backdrop.show {
  opacity: .5;
}
.cid-uG5AdajcgE .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uG5AdajcgE .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5AdajcgE .modal-header {
    padding: 1rem;
  }
}
.cid-uG5AdajcgE .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uG5AdajcgE .modal-header .close svg {
  fill: #353535;
}
.cid-uG5AdajcgE .modal-header .close:hover {
  opacity: 1;
}
.cid-uG5AdajcgE .modal-header .close:focus {
  outline: none;
}
.cid-uG5AdajcgE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #365c9a;
}
.cid-uG5AdajcgE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uG5AdajcgE .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5AdajcgE .modal-body {
    padding: 1rem;
  }
}
.cid-uG5AdajcgE .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uG5AdajcgE .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5AdajcgE .modal-footer {
    padding: 1rem;
  }
}
.cid-uG5AdajcgE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uG5AdajcgE .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uG5AdajcgE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uG5AdajcgE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uG5AdajcgE .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uG5AdajcgE .modal-lg,
  .cid-uG5AdajcgE .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uG5AdajcgE .modal-xl {
    max-width: 1140px;
  }
}
.cid-uG5AdajcgE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uG5AdajcgE .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uG5AdajcgE .form-group {
  margin-bottom: 1rem;
}
.cid-uG5AdajcgE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uG5AdajcgE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uG5AdajcgE .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uG5AdajcgE .mbr-section-btn {
  margin: 0;
}
.cid-uG5AdajcgE .mbr-section-btn .btn {
  margin: 0;
}
.cid-uG5BEYfMT3.popup-builder {
  background-color: #ffffff;
}
.cid-uG5BEYfMT3.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uG5BEYfMT3.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uG5BEYfMT3 .modal-content,
.cid-uG5BEYfMT3 .modal-dialog {
  height: auto;
}
.cid-uG5BEYfMT3 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uG5BEYfMT3 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uG5BEYfMT3 .form-wrapper .mbr-form .form-group,
  .cid-uG5BEYfMT3 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uG5BEYfMT3 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uG5BEYfMT3 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uG5BEYfMT3 .mbr-text {
  text-align: left;
}
.cid-uG5BEYfMT3 .pt-0 {
  padding-top: 0 !important;
}
.cid-uG5BEYfMT3 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uG5BEYfMT3 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uG5BEYfMT3 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uG5BEYfMT3 .modal-open {
  overflow: hidden;
}
.cid-uG5BEYfMT3 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uG5BEYfMT3 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uG5BEYfMT3 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uG5BEYfMT3 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uG5BEYfMT3 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uG5BEYfMT3 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uG5BEYfMT3 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uG5BEYfMT3 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uG5BEYfMT3 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uG5BEYfMT3 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uG5BEYfMT3 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uG5BEYfMT3 .modal-backdrop.show {
  opacity: .5;
}
.cid-uG5BEYfMT3 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uG5BEYfMT3 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5BEYfMT3 .modal-header {
    padding: 1rem;
  }
}
.cid-uG5BEYfMT3 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uG5BEYfMT3 .modal-header .close svg {
  fill: #353535;
}
.cid-uG5BEYfMT3 .modal-header .close:hover {
  opacity: 1;
}
.cid-uG5BEYfMT3 .modal-header .close:focus {
  outline: none;
}
.cid-uG5BEYfMT3 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #365c9a;
}
.cid-uG5BEYfMT3 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uG5BEYfMT3 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5BEYfMT3 .modal-body {
    padding: 1rem;
  }
}
.cid-uG5BEYfMT3 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uG5BEYfMT3 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5BEYfMT3 .modal-footer {
    padding: 1rem;
  }
}
.cid-uG5BEYfMT3 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uG5BEYfMT3 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uG5BEYfMT3 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uG5BEYfMT3 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uG5BEYfMT3 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uG5BEYfMT3 .modal-lg,
  .cid-uG5BEYfMT3 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uG5BEYfMT3 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uG5BEYfMT3 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uG5BEYfMT3 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uG5BEYfMT3 .form-group {
  margin-bottom: 1rem;
}
.cid-uG5BEYfMT3 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uG5BEYfMT3 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uG5BEYfMT3 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uG5BEYfMT3 .mbr-section-btn {
  margin: 0;
}
.cid-uG5BEYfMT3 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uG5C9MDdot.popup-builder {
  background-color: #ffffff;
}
.cid-uG5C9MDdot.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uG5C9MDdot.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uG5C9MDdot .modal-content,
.cid-uG5C9MDdot .modal-dialog {
  height: auto;
}
.cid-uG5C9MDdot .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uG5C9MDdot .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uG5C9MDdot .form-wrapper .mbr-form .form-group,
  .cid-uG5C9MDdot .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uG5C9MDdot .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uG5C9MDdot .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uG5C9MDdot .mbr-text {
  text-align: left;
}
.cid-uG5C9MDdot .pt-0 {
  padding-top: 0 !important;
}
.cid-uG5C9MDdot .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uG5C9MDdot .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uG5C9MDdot .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uG5C9MDdot .modal-open {
  overflow: hidden;
}
.cid-uG5C9MDdot .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uG5C9MDdot .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uG5C9MDdot .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uG5C9MDdot .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uG5C9MDdot .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uG5C9MDdot .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uG5C9MDdot .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uG5C9MDdot .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uG5C9MDdot .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uG5C9MDdot .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uG5C9MDdot .modal-backdrop.fade {
  opacity: 0;
}
.cid-uG5C9MDdot .modal-backdrop.show {
  opacity: .5;
}
.cid-uG5C9MDdot .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uG5C9MDdot .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5C9MDdot .modal-header {
    padding: 1rem;
  }
}
.cid-uG5C9MDdot .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uG5C9MDdot .modal-header .close svg {
  fill: #353535;
}
.cid-uG5C9MDdot .modal-header .close:hover {
  opacity: 1;
}
.cid-uG5C9MDdot .modal-header .close:focus {
  outline: none;
}
.cid-uG5C9MDdot .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #365c9a;
}
.cid-uG5C9MDdot .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uG5C9MDdot .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5C9MDdot .modal-body {
    padding: 1rem;
  }
}
.cid-uG5C9MDdot .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uG5C9MDdot .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5C9MDdot .modal-footer {
    padding: 1rem;
  }
}
.cid-uG5C9MDdot .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uG5C9MDdot .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uG5C9MDdot .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uG5C9MDdot .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uG5C9MDdot .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uG5C9MDdot .modal-lg,
  .cid-uG5C9MDdot .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uG5C9MDdot .modal-xl {
    max-width: 1140px;
  }
}
.cid-uG5C9MDdot .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uG5C9MDdot .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uG5C9MDdot .form-group {
  margin-bottom: 1rem;
}
.cid-uG5C9MDdot .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uG5C9MDdot .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uG5C9MDdot .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uG5C9MDdot .mbr-section-btn {
  margin: 0;
}
.cid-uG5C9MDdot .mbr-section-btn .btn {
  margin: 0;
}
.cid-uG5Cws2Xxc.popup-builder {
  background-color: #ffffff;
}
.cid-uG5Cws2Xxc.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uG5Cws2Xxc.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uG5Cws2Xxc .modal-content,
.cid-uG5Cws2Xxc .modal-dialog {
  height: auto;
}
.cid-uG5Cws2Xxc .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uG5Cws2Xxc .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uG5Cws2Xxc .form-wrapper .mbr-form .form-group,
  .cid-uG5Cws2Xxc .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uG5Cws2Xxc .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uG5Cws2Xxc .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uG5Cws2Xxc .mbr-text {
  text-align: left;
}
.cid-uG5Cws2Xxc .pt-0 {
  padding-top: 0 !important;
}
.cid-uG5Cws2Xxc .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uG5Cws2Xxc .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uG5Cws2Xxc .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uG5Cws2Xxc .modal-open {
  overflow: hidden;
}
.cid-uG5Cws2Xxc .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uG5Cws2Xxc .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uG5Cws2Xxc .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uG5Cws2Xxc .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uG5Cws2Xxc .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uG5Cws2Xxc .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uG5Cws2Xxc .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uG5Cws2Xxc .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uG5Cws2Xxc .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uG5Cws2Xxc .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uG5Cws2Xxc .modal-backdrop.fade {
  opacity: 0;
}
.cid-uG5Cws2Xxc .modal-backdrop.show {
  opacity: .5;
}
.cid-uG5Cws2Xxc .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uG5Cws2Xxc .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5Cws2Xxc .modal-header {
    padding: 1rem;
  }
}
.cid-uG5Cws2Xxc .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uG5Cws2Xxc .modal-header .close svg {
  fill: #353535;
}
.cid-uG5Cws2Xxc .modal-header .close:hover {
  opacity: 1;
}
.cid-uG5Cws2Xxc .modal-header .close:focus {
  outline: none;
}
.cid-uG5Cws2Xxc .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #365c9a;
}
.cid-uG5Cws2Xxc .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uG5Cws2Xxc .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5Cws2Xxc .modal-body {
    padding: 1rem;
  }
}
.cid-uG5Cws2Xxc .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uG5Cws2Xxc .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5Cws2Xxc .modal-footer {
    padding: 1rem;
  }
}
.cid-uG5Cws2Xxc .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uG5Cws2Xxc .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uG5Cws2Xxc .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uG5Cws2Xxc .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uG5Cws2Xxc .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uG5Cws2Xxc .modal-lg,
  .cid-uG5Cws2Xxc .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uG5Cws2Xxc .modal-xl {
    max-width: 1140px;
  }
}
.cid-uG5Cws2Xxc .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uG5Cws2Xxc .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uG5Cws2Xxc .form-group {
  margin-bottom: 1rem;
}
.cid-uG5Cws2Xxc .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uG5Cws2Xxc .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uG5Cws2Xxc .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uG5Cws2Xxc .mbr-section-btn {
  margin: 0;
}
.cid-uG5Cws2Xxc .mbr-section-btn .btn {
  margin: 0;
}
.cid-uG5CXQyw05.popup-builder {
  background-color: #ffffff;
}
.cid-uG5CXQyw05.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uG5CXQyw05.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uG5CXQyw05 .modal-content,
.cid-uG5CXQyw05 .modal-dialog {
  height: auto;
}
.cid-uG5CXQyw05 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uG5CXQyw05 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uG5CXQyw05 .form-wrapper .mbr-form .form-group,
  .cid-uG5CXQyw05 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uG5CXQyw05 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uG5CXQyw05 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uG5CXQyw05 .mbr-text {
  text-align: left;
}
.cid-uG5CXQyw05 .pt-0 {
  padding-top: 0 !important;
}
.cid-uG5CXQyw05 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uG5CXQyw05 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uG5CXQyw05 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uG5CXQyw05 .modal-open {
  overflow: hidden;
}
.cid-uG5CXQyw05 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uG5CXQyw05 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uG5CXQyw05 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uG5CXQyw05 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uG5CXQyw05 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uG5CXQyw05 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uG5CXQyw05 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uG5CXQyw05 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uG5CXQyw05 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uG5CXQyw05 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uG5CXQyw05 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uG5CXQyw05 .modal-backdrop.show {
  opacity: .5;
}
.cid-uG5CXQyw05 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uG5CXQyw05 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5CXQyw05 .modal-header {
    padding: 1rem;
  }
}
.cid-uG5CXQyw05 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uG5CXQyw05 .modal-header .close svg {
  fill: #353535;
}
.cid-uG5CXQyw05 .modal-header .close:hover {
  opacity: 1;
}
.cid-uG5CXQyw05 .modal-header .close:focus {
  outline: none;
}
.cid-uG5CXQyw05 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #365c9a;
}
.cid-uG5CXQyw05 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uG5CXQyw05 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5CXQyw05 .modal-body {
    padding: 1rem;
  }
}
.cid-uG5CXQyw05 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uG5CXQyw05 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5CXQyw05 .modal-footer {
    padding: 1rem;
  }
}
.cid-uG5CXQyw05 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uG5CXQyw05 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uG5CXQyw05 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uG5CXQyw05 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uG5CXQyw05 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uG5CXQyw05 .modal-lg,
  .cid-uG5CXQyw05 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uG5CXQyw05 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uG5CXQyw05 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uG5CXQyw05 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uG5CXQyw05 .form-group {
  margin-bottom: 1rem;
}
.cid-uG5CXQyw05 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uG5CXQyw05 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uG5CXQyw05 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uG5CXQyw05 .mbr-section-btn {
  margin: 0;
}
.cid-uG5CXQyw05 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uG5DjsJnz7.popup-builder {
  background-color: #ffffff;
}
.cid-uG5DjsJnz7.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uG5DjsJnz7.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uG5DjsJnz7 .modal-content,
.cid-uG5DjsJnz7 .modal-dialog {
  height: auto;
}
.cid-uG5DjsJnz7 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uG5DjsJnz7 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uG5DjsJnz7 .form-wrapper .mbr-form .form-group,
  .cid-uG5DjsJnz7 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uG5DjsJnz7 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uG5DjsJnz7 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uG5DjsJnz7 .mbr-text {
  text-align: left;
}
.cid-uG5DjsJnz7 .pt-0 {
  padding-top: 0 !important;
}
.cid-uG5DjsJnz7 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uG5DjsJnz7 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uG5DjsJnz7 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uG5DjsJnz7 .modal-open {
  overflow: hidden;
}
.cid-uG5DjsJnz7 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uG5DjsJnz7 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uG5DjsJnz7 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uG5DjsJnz7 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uG5DjsJnz7 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uG5DjsJnz7 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uG5DjsJnz7 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uG5DjsJnz7 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uG5DjsJnz7 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uG5DjsJnz7 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uG5DjsJnz7 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uG5DjsJnz7 .modal-backdrop.show {
  opacity: .5;
}
.cid-uG5DjsJnz7 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uG5DjsJnz7 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5DjsJnz7 .modal-header {
    padding: 1rem;
  }
}
.cid-uG5DjsJnz7 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uG5DjsJnz7 .modal-header .close svg {
  fill: #353535;
}
.cid-uG5DjsJnz7 .modal-header .close:hover {
  opacity: 1;
}
.cid-uG5DjsJnz7 .modal-header .close:focus {
  outline: none;
}
.cid-uG5DjsJnz7 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #365c9a;
}
.cid-uG5DjsJnz7 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uG5DjsJnz7 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5DjsJnz7 .modal-body {
    padding: 1rem;
  }
}
.cid-uG5DjsJnz7 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uG5DjsJnz7 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5DjsJnz7 .modal-footer {
    padding: 1rem;
  }
}
.cid-uG5DjsJnz7 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uG5DjsJnz7 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uG5DjsJnz7 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uG5DjsJnz7 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uG5DjsJnz7 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uG5DjsJnz7 .modal-lg,
  .cid-uG5DjsJnz7 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uG5DjsJnz7 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uG5DjsJnz7 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uG5DjsJnz7 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uG5DjsJnz7 .form-group {
  margin-bottom: 1rem;
}
.cid-uG5DjsJnz7 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uG5DjsJnz7 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uG5DjsJnz7 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uG5DjsJnz7 .mbr-section-btn {
  margin: 0;
}
.cid-uG5DjsJnz7 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uG5DIpdhqj.popup-builder {
  background-color: #ffffff;
}
.cid-uG5DIpdhqj.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uG5DIpdhqj.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uG5DIpdhqj .modal-content,
.cid-uG5DIpdhqj .modal-dialog {
  height: auto;
}
.cid-uG5DIpdhqj .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uG5DIpdhqj .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uG5DIpdhqj .form-wrapper .mbr-form .form-group,
  .cid-uG5DIpdhqj .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uG5DIpdhqj .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uG5DIpdhqj .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uG5DIpdhqj .mbr-text {
  text-align: left;
}
.cid-uG5DIpdhqj .pt-0 {
  padding-top: 0 !important;
}
.cid-uG5DIpdhqj .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uG5DIpdhqj .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uG5DIpdhqj .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uG5DIpdhqj .modal-open {
  overflow: hidden;
}
.cid-uG5DIpdhqj .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uG5DIpdhqj .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uG5DIpdhqj .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uG5DIpdhqj .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uG5DIpdhqj .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uG5DIpdhqj .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uG5DIpdhqj .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uG5DIpdhqj .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uG5DIpdhqj .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uG5DIpdhqj .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uG5DIpdhqj .modal-backdrop.fade {
  opacity: 0;
}
.cid-uG5DIpdhqj .modal-backdrop.show {
  opacity: .5;
}
.cid-uG5DIpdhqj .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uG5DIpdhqj .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5DIpdhqj .modal-header {
    padding: 1rem;
  }
}
.cid-uG5DIpdhqj .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uG5DIpdhqj .modal-header .close svg {
  fill: #353535;
}
.cid-uG5DIpdhqj .modal-header .close:hover {
  opacity: 1;
}
.cid-uG5DIpdhqj .modal-header .close:focus {
  outline: none;
}
.cid-uG5DIpdhqj .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #365c9a;
}
.cid-uG5DIpdhqj .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uG5DIpdhqj .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5DIpdhqj .modal-body {
    padding: 1rem;
  }
}
.cid-uG5DIpdhqj .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uG5DIpdhqj .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5DIpdhqj .modal-footer {
    padding: 1rem;
  }
}
.cid-uG5DIpdhqj .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uG5DIpdhqj .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uG5DIpdhqj .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uG5DIpdhqj .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uG5DIpdhqj .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uG5DIpdhqj .modal-lg,
  .cid-uG5DIpdhqj .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uG5DIpdhqj .modal-xl {
    max-width: 1140px;
  }
}
.cid-uG5DIpdhqj .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uG5DIpdhqj .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uG5DIpdhqj .form-group {
  margin-bottom: 1rem;
}
.cid-uG5DIpdhqj .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uG5DIpdhqj .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uG5DIpdhqj .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uG5DIpdhqj .mbr-section-btn {
  margin: 0;
}
.cid-uG5DIpdhqj .mbr-section-btn .btn {
  margin: 0;
}
.cid-uG5E6fmxSv.popup-builder {
  background-color: #ffffff;
}
.cid-uG5E6fmxSv.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uG5E6fmxSv.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uG5E6fmxSv .modal-content,
.cid-uG5E6fmxSv .modal-dialog {
  height: auto;
}
.cid-uG5E6fmxSv .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uG5E6fmxSv .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uG5E6fmxSv .form-wrapper .mbr-form .form-group,
  .cid-uG5E6fmxSv .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uG5E6fmxSv .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uG5E6fmxSv .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uG5E6fmxSv .mbr-text {
  text-align: left;
}
.cid-uG5E6fmxSv .pt-0 {
  padding-top: 0 !important;
}
.cid-uG5E6fmxSv .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uG5E6fmxSv .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uG5E6fmxSv .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uG5E6fmxSv .modal-open {
  overflow: hidden;
}
.cid-uG5E6fmxSv .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uG5E6fmxSv .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uG5E6fmxSv .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uG5E6fmxSv .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uG5E6fmxSv .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uG5E6fmxSv .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uG5E6fmxSv .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uG5E6fmxSv .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uG5E6fmxSv .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uG5E6fmxSv .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uG5E6fmxSv .modal-backdrop.fade {
  opacity: 0;
}
.cid-uG5E6fmxSv .modal-backdrop.show {
  opacity: .5;
}
.cid-uG5E6fmxSv .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uG5E6fmxSv .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5E6fmxSv .modal-header {
    padding: 1rem;
  }
}
.cid-uG5E6fmxSv .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uG5E6fmxSv .modal-header .close svg {
  fill: #353535;
}
.cid-uG5E6fmxSv .modal-header .close:hover {
  opacity: 1;
}
.cid-uG5E6fmxSv .modal-header .close:focus {
  outline: none;
}
.cid-uG5E6fmxSv .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #365c9a;
}
.cid-uG5E6fmxSv .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uG5E6fmxSv .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5E6fmxSv .modal-body {
    padding: 1rem;
  }
}
.cid-uG5E6fmxSv .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uG5E6fmxSv .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5E6fmxSv .modal-footer {
    padding: 1rem;
  }
}
.cid-uG5E6fmxSv .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uG5E6fmxSv .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uG5E6fmxSv .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uG5E6fmxSv .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uG5E6fmxSv .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uG5E6fmxSv .modal-lg,
  .cid-uG5E6fmxSv .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uG5E6fmxSv .modal-xl {
    max-width: 1140px;
  }
}
.cid-uG5E6fmxSv .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uG5E6fmxSv .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uG5E6fmxSv .form-group {
  margin-bottom: 1rem;
}
.cid-uG5E6fmxSv .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uG5E6fmxSv .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uG5E6fmxSv .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uG5E6fmxSv .mbr-section-btn {
  margin: 0;
}
.cid-uG5E6fmxSv .mbr-section-btn .btn {
  margin: 0;
}
.cid-uG5ExyPbKZ.popup-builder {
  background-color: #ffffff;
}
.cid-uG5ExyPbKZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uG5ExyPbKZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uG5ExyPbKZ .modal-content,
.cid-uG5ExyPbKZ .modal-dialog {
  height: auto;
}
.cid-uG5ExyPbKZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uG5ExyPbKZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uG5ExyPbKZ .form-wrapper .mbr-form .form-group,
  .cid-uG5ExyPbKZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uG5ExyPbKZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uG5ExyPbKZ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uG5ExyPbKZ .mbr-text {
  text-align: left;
}
.cid-uG5ExyPbKZ .pt-0 {
  padding-top: 0 !important;
}
.cid-uG5ExyPbKZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uG5ExyPbKZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uG5ExyPbKZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uG5ExyPbKZ .modal-open {
  overflow: hidden;
}
.cid-uG5ExyPbKZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uG5ExyPbKZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uG5ExyPbKZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uG5ExyPbKZ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uG5ExyPbKZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uG5ExyPbKZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uG5ExyPbKZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uG5ExyPbKZ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uG5ExyPbKZ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uG5ExyPbKZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uG5ExyPbKZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uG5ExyPbKZ .modal-backdrop.show {
  opacity: .5;
}
.cid-uG5ExyPbKZ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uG5ExyPbKZ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5ExyPbKZ .modal-header {
    padding: 1rem;
  }
}
.cid-uG5ExyPbKZ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uG5ExyPbKZ .modal-header .close svg {
  fill: #353535;
}
.cid-uG5ExyPbKZ .modal-header .close:hover {
  opacity: 1;
}
.cid-uG5ExyPbKZ .modal-header .close:focus {
  outline: none;
}
.cid-uG5ExyPbKZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #365c9a;
}
.cid-uG5ExyPbKZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uG5ExyPbKZ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5ExyPbKZ .modal-body {
    padding: 1rem;
  }
}
.cid-uG5ExyPbKZ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uG5ExyPbKZ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG5ExyPbKZ .modal-footer {
    padding: 1rem;
  }
}
.cid-uG5ExyPbKZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uG5ExyPbKZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uG5ExyPbKZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uG5ExyPbKZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uG5ExyPbKZ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uG5ExyPbKZ .modal-lg,
  .cid-uG5ExyPbKZ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uG5ExyPbKZ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uG5ExyPbKZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uG5ExyPbKZ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uG5ExyPbKZ .form-group {
  margin-bottom: 1rem;
}
.cid-uG5ExyPbKZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uG5ExyPbKZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uG5ExyPbKZ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uG5ExyPbKZ .mbr-section-btn {
  margin: 0;
}
.cid-uG5ExyPbKZ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJeaTMdB0J {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rJeaTMdB0J .mbr-text {
  text-align: left;
}
.cid-tpTpgxPjL6 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #66458e;
}
.cid-tpTpgxPjL6 .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-rJ6CqpP06J {
  overflow: hidden !important;
  padding-top: 0px;
  padding-bottom: 75px;
  background: linear-gradient(to right, #ec6963 0%, #ec6963 30%, #66458e 30%, #66458e 100%);
}
.cid-rJ6CqpP06J .animated-element {
  color: #efefef;
}
.cid-rJ6CqpP06J .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rJ6CqpP06J .mbr-section-subtitle {
  color: #9c88bc;
}
@media (min-width: 992px) {
  .cid-rJ6CqpP06J .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rJ6CqpP06J .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-rJ6CqpP06J {
    background: #66458e;
  }
  .cid-rJ6CqpP06J .img-block {
    padding-bottom: 2rem;
  }
}
.cid-rJ6CqpP06J P {
  text-align: left;
}
.cid-rJ6CqpP06J .mbr-section-title {
  text-align: center;
}
.cid-rJ6CqpP06J .mbr-text,
.cid-rJ6CqpP06J .mbr-section-btn {
  text-align: left;
}
.cid-rJcPGpPyqn {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rJcPGpPyqn .mbr-text {
  color: #365c9a;
  text-align: center;
}
.cid-rJ2ug518Yh {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rJ2ug518Yh .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rJ2ug518Yh .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-rJ2ug518Yh .mbr-text {
  text-align: left;
}
.cid-sNA5SbiI0G {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sNA5SbiI0G .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sNA5SbiI0G .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-sNA5SbiI0G .mbr-text {
  text-align: left;
}
.cid-rJnnCDv7jo {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJnnCDv7jo .mbr-section-subtitle {
  color: #92b5d5;
}
.cid-rJnnCDv7jo .mbr-section-title {
  color: #ffffff;
}
.cid-tPneO0v4yg {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tPneO0v4yg .mbr-overlay {
  background: #efefef;
}
.cid-tPneO0v4yg .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tPneO0v4yg .client-name {
  color: #8d97ad;
}
.cid-tPneO0v4yg .wrap-img {
  padding-bottom: 1rem;
}
.cid-tPneO0v4yg .wrap-img img {
  max-width: 100%;
}
.cid-tPneO0v4yg .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-tPneO0v4yg .mbr-section-title {
  color: #365c9a;
}
.cid-tPneO0v4yg .card-box > p {
  color: #767676;
}
.cid-tMpYISmMuD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tMpYISmMuD .mbr-overlay {
  background: #efefef;
}
.cid-tMpYISmMuD .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tMpYISmMuD .client-name {
  color: #8d97ad;
}
.cid-tMpYISmMuD .wrap-img {
  padding-bottom: 1rem;
}
.cid-tMpYISmMuD .wrap-img img {
  max-width: 100%;
}
.cid-tMpYISmMuD .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-tMpYISmMuD .mbr-section-title {
  color: #365c9a;
}
.cid-tMpYISmMuD .card-box > p {
  color: #767676;
}
.cid-rJvbYYZZvx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJvbYYZZvx .mbr-section-subtitle {
  color: #92b5d5;
}
.cid-rJvbYYZZvx .mbr-section-title {
  color: #ffffff;
}
.cid-tMq16iBw9p {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tMq16iBw9p .mbr-section-subtitle {
  color: #767676;
}
.cid-tTNyUji8st {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tTNyUji8st .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTNyUji8st .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-tTNyUji8st .row {
    padding: 0 24px;
  }
}
.cid-tTNyUji8st .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tTNyUji8st .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tTNyUji8st .mbr-section-title {
  color: #2c0066;
}
.cid-tTNyUji8st .mbr-section-title,
.cid-tTNyUji8st .mbr-section-btn {
  text-align: left;
  color: #011953;
}
.cid-tTNyUji8st .mbr-section-title,
.cid-tTNyUji8st .mbr-section-btn DIV {
  text-align: center;
}
.cid-tTNySEMwic {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tTNySEMwic .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tTNySEMwic .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-tTNySEMwic .mbr-text {
  text-align: left;
}
.cid-tTNzjGzhCY {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tTNzjGzhCY .mbr-section-subtitle {
  color: #767676;
}
.cid-tMq0zl1KW6 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tMq0zl1KW6 .mbr-text {
  text-align: center;
}
.cid-tMq0puka0B {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tMq0puka0B .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tMq0puka0B .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-tMq0puka0B .mbr-text {
  text-align: left;
}
.cid-tMq0UclzGZ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tMq0UclzGZ .mbr-section-subtitle {
  color: #767676;
}
.cid-tEuR7hfqPp {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tEuR7hfqPp .mbr-text {
  text-align: center;
}
.cid-tEuMLrC63M {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tEuMLrC63M .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tEuMLrC63M .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-tEuMLrC63M .mbr-text {
  text-align: left;
}
.cid-tMq0UYveS9 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tMq0UYveS9 .mbr-section-subtitle {
  color: #767676;
}
.cid-rJvbzwWY4j {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJvbzwWY4j .mbr-text {
  text-align: center;
}
.cid-rJsYb7LuQV {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rJsYb7LuQV .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rJsYb7LuQV .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-rJsYb7LuQV .mbr-text {
  text-align: left;
}
.cid-tMq0VTHWxF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tMq0VTHWxF .mbr-section-subtitle {
  color: #767676;
}
.cid-rJvdU7Mctk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rJvdU7Mctk .mbr-text {
  text-align: center;
}
.cid-rJve6sZicR {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rJve6sZicR .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rJve6sZicR .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-rJve6sZicR .mbr-text {
  text-align: left;
}
.cid-tMq0WGYcMS {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tMq0WGYcMS .mbr-section-subtitle {
  color: #767676;
}
.cid-rJzkzhgJMR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJzkzhgJMR .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-rJzj91zaNQ {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rJzj91zaNQ .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rJzj91zaNQ .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-rJzj91zaNQ .mbr-text {
  text-align: left;
}
.cid-tMq13vaSlq {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tMq13vaSlq .mbr-section-subtitle {
  color: #767676;
}
.cid-rJQA3meMKg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJQA3meMKg .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-rJQAk26iks {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rJQAk26iks .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rJQAk26iks .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-rJQAk26iks .mbr-text {
  text-align: left;
}
.cid-tMq0XCgttx {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tMq0XCgttx .mbr-section-subtitle {
  color: #767676;
}
.cid-rRpUXhsGbC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rRpUXhsGbC .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rRpUXhsGbC .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-rRpUXhsGbC .mbr-text {
  text-align: left;
}
.cid-sEPRZjPV1t {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sEPRZjPV1t .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sEPRZjPV1t .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-sEPRZjPV1t .mbr-text {
  text-align: left;
}
.cid-sFjJlytgcV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sFjJlytgcV .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-sFjJmR8qbA {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sFjJmR8qbA .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sFjJmR8qbA .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-sFjJmR8qbA .mbr-text {
  text-align: left;
}
.cid-rJ23Tbj9ro {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ23Tbj9ro .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ23Tbj9ro .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJeb89M9Xq {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-rJeb89M9Xq .mbr-text {
  text-align: left;
}
.cid-uUTNhmVjhG {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #fbfcff;
}
.cid-uUTNhmVjhG .container-fluid {
  padding: 0 3rem;
}
.cid-uUTNhmVjhG .mbr-section-subtitle {
  color: #767676;
}
.cid-uUTNhmVjhG .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uUTNhmVjhG .table-wrapper {
  margin: 0 auto;
}
.cid-uUTNhmVjhG table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uUTNhmVjhG table thead tr {
  border: none !important;
}
.cid-uUTNhmVjhG table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-uUTNhmVjhG table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-uUTNhmVjhG table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-uUTNhmVjhG tr:hover {
  background-color: #efefef !important;
}
.cid-uUTNhmVjhG .head-item:after,
.cid-uUTNhmVjhG .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-uUTNhmVjhG table th,
  .cid-uUTNhmVjhG table td {
    padding: .75rem;
  }
}
.cid-uUTNhmVjhG .body-item {
  text-align: justify;
}
.cid-uUTNhmVjhG .head-item {
  color: #365c9a;
  text-align: justify;
}
.cid-uUTNhmVjhG .mbr-text {
  color: #767676;
}
.cid-uUTNhmVjhG .mbr-section-title,
.cid-uUTNhmVjhG .underline {
  text-align: left;
  color: #365c9a;
}
.cid-uUTNhmVjhG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUTNhmVjhG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-rJ224h7nXT {
  padding-top: 90px;
  padding-bottom: 120px;
  background-color: #e8eff9;
}
.cid-rJ224h7nXT .form-control,
.cid-rJ224h7nXT .form-control:focus {
  color: #365c9a !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #365c9a;
}
.cid-rJ224h7nXT .form-control:focus,
.cid-rJ224h7nXT .form-control:focus:focus {
  outline: none;
}
.cid-rJ224h7nXT input::-webkit-input-placeholder {
  color: #365c9a;
}
.cid-rJ224h7nXT input::-moz-placeholder {
  color: #365c9a;
}
.cid-rJ224h7nXT textarea::-webkit-input-placeholder {
  color: #365c9a;
}
.cid-rJ224h7nXT textarea::-moz-placeholder {
  color: #365c9a;
}
.cid-rJ224h7nXT .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-rJ224h7nXT .form-control {
  margin-bottom: 15px;
}
.cid-rJ224h7nXT .map {
  width: 100%;
  height: 30rem;
}
.cid-rJ224h7nXT .map iframe {
  width: inherit;
  height: 100%;
}
.cid-rJ224h7nXT .mbr-text {
  color: #767676;
}
.cid-rJ224h7nXT .input-group-btn {
  display: block;
}
.cid-rJ224h7nXT .google-map {
  height: 25rem;
  position: relative;
}
.cid-rJ224h7nXT .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rJ224h7nXT .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-rJ224h7nXT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rJ224h7nXT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 768px) {
  .cid-rJ224h7nXT .mbr-section-subtitle,
  .cid-rJ224h7nXT .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-rJ224h7nXT .mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-rJ224h7nXT H2 {
  color: #000000;
}
.cid-rJ224h7nXT .mbr-section-subtitle {
  color: #365c9a;
  text-align: justify;
}
.cid-tsVbaPxXkd.popup-builder {
  background-color: #ffffff;
}
.cid-tsVbaPxXkd.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsVbaPxXkd.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsVbaPxXkd .modal-content,
.cid-tsVbaPxXkd .modal-dialog {
  height: auto;
}
.cid-tsVbaPxXkd .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsVbaPxXkd .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsVbaPxXkd .form-wrapper .mbr-form .form-group,
  .cid-tsVbaPxXkd .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsVbaPxXkd .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsVbaPxXkd .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsVbaPxXkd .mbr-text {
  text-align: left;
}
.cid-tsVbaPxXkd .pt-0 {
  padding-top: 0 !important;
}
.cid-tsVbaPxXkd .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsVbaPxXkd .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsVbaPxXkd .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsVbaPxXkd .modal-open {
  overflow: hidden;
}
.cid-tsVbaPxXkd .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsVbaPxXkd .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsVbaPxXkd .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsVbaPxXkd .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tsVbaPxXkd .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsVbaPxXkd .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsVbaPxXkd .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsVbaPxXkd .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tsVbaPxXkd .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tsVbaPxXkd .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsVbaPxXkd .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsVbaPxXkd .modal-backdrop.show {
  opacity: .5;
}
.cid-tsVbaPxXkd .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tsVbaPxXkd .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsVbaPxXkd .modal-header {
    padding: 1rem;
  }
}
.cid-tsVbaPxXkd .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsVbaPxXkd .modal-header .close svg {
  fill: #353535;
}
.cid-tsVbaPxXkd .modal-header .close:hover {
  opacity: 1;
}
.cid-tsVbaPxXkd .modal-header .close:focus {
  outline: none;
}
.cid-tsVbaPxXkd .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsVbaPxXkd .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tsVbaPxXkd .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsVbaPxXkd .modal-body {
    padding: 1rem;
  }
}
.cid-tsVbaPxXkd .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsVbaPxXkd .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsVbaPxXkd .modal-footer {
    padding: 1rem;
  }
}
.cid-tsVbaPxXkd .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsVbaPxXkd .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsVbaPxXkd .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsVbaPxXkd .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsVbaPxXkd .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tsVbaPxXkd .modal-lg,
  .cid-tsVbaPxXkd .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tsVbaPxXkd .modal-xl {
    max-width: 1140px;
  }
}
.cid-tsVbaPxXkd .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsVbaPxXkd .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tsVbaPxXkd .form-group {
  margin-bottom: 1rem;
}
.cid-tsVbaPxXkd .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsVbaPxXkd .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsVbaPxXkd .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsVbaPxXkd .mbr-section-btn {
  margin: 0;
}
.cid-tsVbaPxXkd .mbr-section-btn .btn {
  margin: 0;
}
.cid-rJ20ftS51R {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ20ftS51R .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ20ftS51R .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJeaLjhULY {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJeaLjhULY .mbr-text {
  text-align: left;
}
.cid-tnpvwzI9Yv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tnpvwzI9Yv .mbr-text {
  text-align: left;
  color: #365c9a;
}
.cid-uSwy3eJil6 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uSwy3eJil6 .card {
  display: block;
  position: relative;
}
.cid-uSwy3eJil6 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-uSwy3eJil6 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-uSwy3eJil6 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uSwy3eJil6 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-uSwy3eJil6 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uSwy3eJil6 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-uSwy3eJil6 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-uSwy3eJil6 .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-uSwy3eJil6 .mbr-card-text,
.cid-uSwy3eJil6 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-uSwxxb4Y5Y {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uSwxxb4Y5Y .card {
  display: block;
  position: relative;
}
.cid-uSwxxb4Y5Y .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-uSwxxb4Y5Y .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-uSwxxb4Y5Y .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uSwxxb4Y5Y .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-uSwxxb4Y5Y .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uSwxxb4Y5Y .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-uSwxxb4Y5Y .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-uSwxxb4Y5Y .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-uSwxxb4Y5Y .mbr-card-text,
.cid-uSwxxb4Y5Y .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-uSwwLUueLf {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uSwwLUueLf .card {
  display: block;
  position: relative;
}
.cid-uSwwLUueLf .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-uSwwLUueLf .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-uSwwLUueLf .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uSwwLUueLf .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-uSwwLUueLf .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uSwwLUueLf .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-uSwwLUueLf .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-uSwwLUueLf .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-uSwwLUueLf .mbr-card-text,
.cid-uSwwLUueLf .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-udXVIbGX3Y {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-udXVIbGX3Y .card {
  display: block;
  position: relative;
}
.cid-udXVIbGX3Y .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-udXVIbGX3Y .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-udXVIbGX3Y .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-udXVIbGX3Y .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-udXVIbGX3Y .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-udXVIbGX3Y .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-udXVIbGX3Y .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-udXVIbGX3Y .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-udXVIbGX3Y .mbr-card-text,
.cid-udXVIbGX3Y .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-ud2HbUZryO {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ud2HbUZryO .card {
  display: block;
  position: relative;
}
.cid-ud2HbUZryO .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-ud2HbUZryO .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-ud2HbUZryO .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-ud2HbUZryO .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-ud2HbUZryO .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-ud2HbUZryO .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-ud2HbUZryO .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-ud2HbUZryO .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-ud2HbUZryO .mbr-card-text,
.cid-ud2HbUZryO .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-u8dzYiz47s {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u8dzYiz47s .card {
  display: block;
  position: relative;
}
.cid-u8dzYiz47s .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-u8dzYiz47s .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-u8dzYiz47s .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-u8dzYiz47s .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-u8dzYiz47s .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-u8dzYiz47s .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-u8dzYiz47s .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-u8dzYiz47s .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-u8dzYiz47s .mbr-card-text,
.cid-u8dzYiz47s .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-u69SIFCQxN {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u69SIFCQxN .card {
  display: block;
  position: relative;
}
.cid-u69SIFCQxN .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-u69SIFCQxN .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-u69SIFCQxN .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-u69SIFCQxN .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-u69SIFCQxN .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-u69SIFCQxN .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-u69SIFCQxN .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-u69SIFCQxN .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-u69SIFCQxN .mbr-card-text,
.cid-u69SIFCQxN .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-u3Rh2Ndoko {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u3Rh2Ndoko .card {
  display: block;
  position: relative;
}
.cid-u3Rh2Ndoko .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-u3Rh2Ndoko .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-u3Rh2Ndoko .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-u3Rh2Ndoko .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-u3Rh2Ndoko .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-u3Rh2Ndoko .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-u3Rh2Ndoko .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-u3Rh2Ndoko .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-u3Rh2Ndoko .mbr-card-text,
.cid-u3Rh2Ndoko .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tZPJy8Nl4Y {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tZPJy8Nl4Y .card {
  display: block;
  position: relative;
}
.cid-tZPJy8Nl4Y .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tZPJy8Nl4Y .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tZPJy8Nl4Y .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tZPJy8Nl4Y .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tZPJy8Nl4Y .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tZPJy8Nl4Y .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tZPJy8Nl4Y .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tZPJy8Nl4Y .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tZPJy8Nl4Y .mbr-card-text,
.cid-tZPJy8Nl4Y .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tUaArJFtjt {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tUaArJFtjt .card {
  display: block;
  position: relative;
}
.cid-tUaArJFtjt .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tUaArJFtjt .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tUaArJFtjt .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tUaArJFtjt .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tUaArJFtjt .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tUaArJFtjt .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tUaArJFtjt .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tUaArJFtjt .mbr-section-title {
  color: #365c9a;
}
.cid-tUaArJFtjt .mbr-card-text,
.cid-tUaArJFtjt .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tZ357J5d76 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tZ357J5d76 .card {
  display: block;
  position: relative;
}
.cid-tZ357J5d76 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tZ357J5d76 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tZ357J5d76 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tZ357J5d76 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tZ357J5d76 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tZ357J5d76 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tZ357J5d76 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tZ357J5d76 .mbr-section-title {
  color: #365c9a;
}
.cid-tZ357J5d76 .mbr-card-text,
.cid-tZ357J5d76 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tQT3nlQyH8 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tQT3nlQyH8 .card {
  display: block;
  position: relative;
}
.cid-tQT3nlQyH8 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tQT3nlQyH8 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tQT3nlQyH8 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tQT3nlQyH8 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tQT3nlQyH8 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tQT3nlQyH8 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tQT3nlQyH8 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tQT3nlQyH8 .mbr-section-title {
  color: #365c9a;
}
.cid-tQT3nlQyH8 .mbr-card-text,
.cid-tQT3nlQyH8 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tKfWIy3Mjy {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tKfWIy3Mjy .card {
  display: block;
  position: relative;
}
.cid-tKfWIy3Mjy .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tKfWIy3Mjy .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tKfWIy3Mjy .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tKfWIy3Mjy .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tKfWIy3Mjy .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tKfWIy3Mjy .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tKfWIy3Mjy .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tKfWIy3Mjy .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tKfWIy3Mjy .mbr-card-text,
.cid-tKfWIy3Mjy .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tHf1NsixfA {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tHf1NsixfA .card {
  display: block;
  position: relative;
}
.cid-tHf1NsixfA .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tHf1NsixfA .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tHf1NsixfA .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tHf1NsixfA .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tHf1NsixfA .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tHf1NsixfA .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tHf1NsixfA .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tHf1NsixfA .mbr-section-title {
  color: #365c9a;
}
.cid-tHf1NsixfA .mbr-card-text,
.cid-tHf1NsixfA .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tC2y96UpxE {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tC2y96UpxE .card {
  display: block;
  position: relative;
}
.cid-tC2y96UpxE .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tC2y96UpxE .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tC2y96UpxE .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tC2y96UpxE .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tC2y96UpxE .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tC2y96UpxE .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tC2y96UpxE .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tC2y96UpxE .mbr-section-title {
  color: #365c9a;
}
.cid-tC2y96UpxE .mbr-card-text,
.cid-tC2y96UpxE .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tyoofjot4Y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tyoofjot4Y .card {
  display: block;
  position: relative;
}
.cid-tyoofjot4Y .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tyoofjot4Y .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tyoofjot4Y .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tyoofjot4Y .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tyoofjot4Y .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tyoofjot4Y .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tyoofjot4Y .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tyoofjot4Y .mbr-section-title {
  color: #365c9a;
}
.cid-tyoofjot4Y .mbr-card-text,
.cid-tyoofjot4Y .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tuvpYbadSE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tuvpYbadSE .card {
  display: block;
  position: relative;
}
.cid-tuvpYbadSE .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tuvpYbadSE .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tuvpYbadSE .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tuvpYbadSE .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tuvpYbadSE .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tuvpYbadSE .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tuvpYbadSE .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tuvpYbadSE .mbr-section-title {
  color: #365c9a;
}
.cid-tuvpYbadSE .mbr-card-text,
.cid-tuvpYbadSE .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tu8bAfHSDO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tu8bAfHSDO .card {
  display: block;
  position: relative;
}
.cid-tu8bAfHSDO .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tu8bAfHSDO .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tu8bAfHSDO .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tu8bAfHSDO .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tu8bAfHSDO .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tu8bAfHSDO .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tu8bAfHSDO .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tu8bAfHSDO .mbr-section-title {
  color: #365c9a;
}
.cid-tu8bAfHSDO .mbr-card-text,
.cid-tu8bAfHSDO .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tt4mgoPorr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tt4mgoPorr .card {
  display: block;
  position: relative;
}
.cid-tt4mgoPorr .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tt4mgoPorr .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tt4mgoPorr .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tt4mgoPorr .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tt4mgoPorr .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tt4mgoPorr .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tt4mgoPorr .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tt4mgoPorr .mbr-section-title {
  color: #365c9a;
}
.cid-tt4mgoPorr .mbr-card-text,
.cid-tt4mgoPorr .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tp247WK8Pt {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tp247WK8Pt .card {
  display: block;
  position: relative;
}
.cid-tp247WK8Pt .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tp247WK8Pt .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tp247WK8Pt .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tp247WK8Pt .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tp247WK8Pt .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tp247WK8Pt .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tp247WK8Pt .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tp247WK8Pt .mbr-section-title {
  color: #365c9a;
}
.cid-tp247WK8Pt .mbr-card-text,
.cid-tp247WK8Pt .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tnpvrcBjvi {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tnpvrcBjvi .card {
  display: block;
  position: relative;
}
.cid-tnpvrcBjvi .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tnpvrcBjvi .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tnpvrcBjvi .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tnpvrcBjvi .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tnpvrcBjvi .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tnpvrcBjvi .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tnpvrcBjvi .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tnpvrcBjvi .mbr-section-title {
  color: #365c9a;
}
.cid-tnpvrcBjvi .mbr-card-text,
.cid-tnpvrcBjvi .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-t1J7g5vRXi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t1J7g5vRXi .card {
  display: block;
  position: relative;
}
.cid-t1J7g5vRXi .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-t1J7g5vRXi .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-t1J7g5vRXi .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-t1J7g5vRXi .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-t1J7g5vRXi .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-t1J7g5vRXi .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-t1J7g5vRXi .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-t1J7g5vRXi .mbr-section-title {
  color: #365c9a;
}
.cid-t1J7g5vRXi .mbr-card-text,
.cid-t1J7g5vRXi .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-t9e7NoQ4jz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t9e7NoQ4jz .card {
  display: block;
  position: relative;
}
.cid-t9e7NoQ4jz .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-t9e7NoQ4jz .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-t9e7NoQ4jz .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-t9e7NoQ4jz .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-t9e7NoQ4jz .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-t9e7NoQ4jz .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-t9e7NoQ4jz .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-t9e7NoQ4jz .mbr-section-title {
  color: #365c9a;
}
.cid-t9e7NoQ4jz .mbr-card-text,
.cid-t9e7NoQ4jz .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-s8PTt971nh {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s8PTt971nh .card {
  display: block;
  position: relative;
}
.cid-s8PTt971nh .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-s8PTt971nh .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-s8PTt971nh .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-s8PTt971nh .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-s8PTt971nh .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-s8PTt971nh .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-s8PTt971nh .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-s8PTt971nh .mbr-section-title {
  color: #365c9a;
}
.cid-s8PTt971nh .mbr-card-text,
.cid-s8PTt971nh .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sS49RuY2E0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sS49RuY2E0 .card {
  display: block;
  position: relative;
}
.cid-sS49RuY2E0 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sS49RuY2E0 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sS49RuY2E0 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sS49RuY2E0 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sS49RuY2E0 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sS49RuY2E0 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sS49RuY2E0 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sS49RuY2E0 .mbr-section-title {
  color: #365c9a;
}
.cid-sS49RuY2E0 .mbr-card-text,
.cid-sS49RuY2E0 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sPucFpYajD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sPucFpYajD .card {
  display: block;
  position: relative;
}
.cid-sPucFpYajD .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sPucFpYajD .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sPucFpYajD .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sPucFpYajD .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sPucFpYajD .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sPucFpYajD .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sPucFpYajD .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sPucFpYajD .mbr-section-title {
  color: #365c9a;
}
.cid-sPucFpYajD .mbr-card-text,
.cid-sPucFpYajD .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sOlirQzn5I {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sOlirQzn5I .card {
  display: block;
  position: relative;
}
.cid-sOlirQzn5I .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sOlirQzn5I .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sOlirQzn5I .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sOlirQzn5I .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sOlirQzn5I .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sOlirQzn5I .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sOlirQzn5I .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sOlirQzn5I .mbr-section-title {
  color: #365c9a;
}
.cid-sOlirQzn5I .mbr-card-text,
.cid-sOlirQzn5I .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sNIH1xOd0b {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNIH1xOd0b .card {
  display: block;
  position: relative;
}
.cid-sNIH1xOd0b .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sNIH1xOd0b .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sNIH1xOd0b .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sNIH1xOd0b .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sNIH1xOd0b .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sNIH1xOd0b .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sNIH1xOd0b .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sNIH1xOd0b .mbr-section-title {
  color: #365c9a;
}
.cid-sNIH1xOd0b .mbr-card-text,
.cid-sNIH1xOd0b .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sJHVSNkm9D {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sJHVSNkm9D .card {
  display: block;
  position: relative;
}
.cid-sJHVSNkm9D .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sJHVSNkm9D .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sJHVSNkm9D .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sJHVSNkm9D .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sJHVSNkm9D .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sJHVSNkm9D .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sJHVSNkm9D .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sJHVSNkm9D .mbr-section-title {
  color: #365c9a;
}
.cid-sJHVSNkm9D .mbr-card-text,
.cid-sJHVSNkm9D .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sJbT19CQWT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sJbT19CQWT .card {
  display: block;
  position: relative;
}
.cid-sJbT19CQWT .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sJbT19CQWT .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sJbT19CQWT .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sJbT19CQWT .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sJbT19CQWT .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sJbT19CQWT .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sJbT19CQWT .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sJbT19CQWT .mbr-section-title {
  color: #365c9a;
}
.cid-sJbT19CQWT .mbr-card-text,
.cid-sJbT19CQWT .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sI82EGptCb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sI82EGptCb .card {
  display: block;
  position: relative;
}
.cid-sI82EGptCb .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sI82EGptCb .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sI82EGptCb .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sI82EGptCb .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sI82EGptCb .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sI82EGptCb .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sI82EGptCb .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sI82EGptCb .mbr-section-title {
  color: #365c9a;
}
.cid-sI82EGptCb .mbr-card-text,
.cid-sI82EGptCb .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sGS7bdFw9z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sGS7bdFw9z .card {
  display: block;
  position: relative;
}
.cid-sGS7bdFw9z .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sGS7bdFw9z .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sGS7bdFw9z .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sGS7bdFw9z .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sGS7bdFw9z .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sGS7bdFw9z .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sGS7bdFw9z .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sGS7bdFw9z .mbr-section-title {
  color: #365c9a;
}
.cid-sGS7bdFw9z .mbr-card-text,
.cid-sGS7bdFw9z .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sGILIWDCzV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sGILIWDCzV .card {
  display: block;
  position: relative;
}
.cid-sGILIWDCzV .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sGILIWDCzV .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sGILIWDCzV .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sGILIWDCzV .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sGILIWDCzV .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sGILIWDCzV .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sGILIWDCzV .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sGILIWDCzV .mbr-section-title {
  color: #365c9a;
}
.cid-sGILIWDCzV .mbr-card-text,
.cid-sGILIWDCzV .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sGANj4IqB8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sGANj4IqB8 .card {
  display: block;
  position: relative;
}
.cid-sGANj4IqB8 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sGANj4IqB8 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sGANj4IqB8 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sGANj4IqB8 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sGANj4IqB8 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sGANj4IqB8 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sGANj4IqB8 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sGANj4IqB8 .mbr-section-title {
  color: #365c9a;
}
.cid-sGANj4IqB8 .mbr-card-text,
.cid-sGANj4IqB8 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sFB9fsqkMN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sFB9fsqkMN .card {
  display: block;
  position: relative;
}
.cid-sFB9fsqkMN .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sFB9fsqkMN .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sFB9fsqkMN .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sFB9fsqkMN .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sFB9fsqkMN .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sFB9fsqkMN .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sFB9fsqkMN .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sFB9fsqkMN .mbr-section-title {
  color: #365c9a;
}
.cid-sFB9fsqkMN .mbr-card-text,
.cid-sFB9fsqkMN .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sFAQVbsNtx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sFAQVbsNtx .card {
  display: block;
  position: relative;
}
.cid-sFAQVbsNtx .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sFAQVbsNtx .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sFAQVbsNtx .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sFAQVbsNtx .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sFAQVbsNtx .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sFAQVbsNtx .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sFAQVbsNtx .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sFAQVbsNtx .mbr-section-title {
  color: #365c9a;
}
.cid-sFAQVbsNtx .mbr-card-text,
.cid-sFAQVbsNtx .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sBHgcBvMM8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBHgcBvMM8 .card {
  display: block;
  position: relative;
}
.cid-sBHgcBvMM8 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sBHgcBvMM8 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sBHgcBvMM8 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sBHgcBvMM8 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sBHgcBvMM8 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sBHgcBvMM8 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sBHgcBvMM8 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sBHgcBvMM8 .mbr-section-title {
  color: #365c9a;
}
.cid-sBHgcBvMM8 .mbr-card-text,
.cid-sBHgcBvMM8 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-slpK6WljHL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-slpK6WljHL .card {
  display: block;
  position: relative;
}
.cid-slpK6WljHL .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-slpK6WljHL .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-slpK6WljHL .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-slpK6WljHL .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-slpK6WljHL .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-slpK6WljHL .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-slpK6WljHL .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-slpK6WljHL .mbr-section-title {
  color: #365c9a;
}
.cid-slpK6WljHL .mbr-card-text,
.cid-slpK6WljHL .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sfW2LXr1lw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfW2LXr1lw .card {
  display: block;
  position: relative;
}
.cid-sfW2LXr1lw .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sfW2LXr1lw .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sfW2LXr1lw .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sfW2LXr1lw .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sfW2LXr1lw .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sfW2LXr1lw .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sfW2LXr1lw .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sfW2LXr1lw .mbr-section-title {
  color: #365c9a;
}
.cid-sfW2LXr1lw .mbr-card-text,
.cid-sfW2LXr1lw .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-seYCdW2pS3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-seYCdW2pS3 .card {
  display: block;
  position: relative;
}
.cid-seYCdW2pS3 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-seYCdW2pS3 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-seYCdW2pS3 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-seYCdW2pS3 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-seYCdW2pS3 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-seYCdW2pS3 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-seYCdW2pS3 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-seYCdW2pS3 .mbr-section-title {
  color: #365c9a;
}
.cid-seYCdW2pS3 .mbr-card-text,
.cid-seYCdW2pS3 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-se1V3k98Dw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-se1V3k98Dw .card {
  display: block;
  position: relative;
}
.cid-se1V3k98Dw .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-se1V3k98Dw .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-se1V3k98Dw .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-se1V3k98Dw .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-se1V3k98Dw .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-se1V3k98Dw .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-se1V3k98Dw .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-se1V3k98Dw .mbr-section-title {
  color: #365c9a;
}
.cid-se1V3k98Dw .mbr-card-text,
.cid-se1V3k98Dw .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sc3v8bz8C9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sc3v8bz8C9 .card {
  display: block;
  position: relative;
}
.cid-sc3v8bz8C9 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sc3v8bz8C9 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sc3v8bz8C9 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sc3v8bz8C9 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sc3v8bz8C9 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sc3v8bz8C9 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sc3v8bz8C9 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sc3v8bz8C9 .mbr-section-title {
  color: #365c9a;
}
.cid-sc3v8bz8C9 .mbr-card-text,
.cid-sc3v8bz8C9 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-s2HjyDQNdW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s2HjyDQNdW .card {
  display: block;
  position: relative;
}
.cid-s2HjyDQNdW .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-s2HjyDQNdW .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-s2HjyDQNdW .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-s2HjyDQNdW .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-s2HjyDQNdW .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-s2HjyDQNdW .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-s2HjyDQNdW .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-s2HjyDQNdW .mbr-section-title {
  color: #365c9a;
}
.cid-s2HjyDQNdW .mbr-card-text,
.cid-s2HjyDQNdW .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-s2ex08xkCv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s2ex08xkCv .card {
  display: block;
  position: relative;
}
.cid-s2ex08xkCv .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-s2ex08xkCv .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-s2ex08xkCv .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-s2ex08xkCv .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-s2ex08xkCv .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-s2ex08xkCv .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-s2ex08xkCv .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-s2ex08xkCv .mbr-section-title {
  color: #365c9a;
}
.cid-s2ex08xkCv .mbr-card-text,
.cid-s2ex08xkCv .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-siQGXE1ei3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-siQGXE1ei3 .card {
  display: block;
  position: relative;
}
.cid-siQGXE1ei3 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-siQGXE1ei3 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-siQGXE1ei3 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-siQGXE1ei3 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-siQGXE1ei3 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-siQGXE1ei3 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-siQGXE1ei3 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-siQGXE1ei3 .mbr-section-title {
  color: #365c9a;
}
.cid-siQGXE1ei3 .mbr-card-text,
.cid-siQGXE1ei3 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-s0aY7lyxhf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s0aY7lyxhf .card {
  display: block;
  position: relative;
}
.cid-s0aY7lyxhf .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-s0aY7lyxhf .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-s0aY7lyxhf .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-s0aY7lyxhf .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-s0aY7lyxhf .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-s0aY7lyxhf .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-s0aY7lyxhf .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-s0aY7lyxhf .mbr-section-title {
  color: #365c9a;
}
.cid-s0aY7lyxhf .mbr-card-text,
.cid-s0aY7lyxhf .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-s0aY8eq7EL.popup-builder {
  background-color: #ffffff;
}
.cid-s0aY8eq7EL.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s0aY8eq7EL.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s0aY8eq7EL .modal-content,
.cid-s0aY8eq7EL .modal-dialog {
  height: auto;
}
.cid-s0aY8eq7EL .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s0aY8eq7EL .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s0aY8eq7EL .form-wrapper .mbr-form .form-group,
  .cid-s0aY8eq7EL .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s0aY8eq7EL .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s0aY8eq7EL .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s0aY8eq7EL .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-s0aY8eq7EL .pt-0 {
  padding-top: 0 !important;
}
.cid-s0aY8eq7EL .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s0aY8eq7EL .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s0aY8eq7EL .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s0aY8eq7EL .modal-open {
  overflow: hidden;
}
.cid-s0aY8eq7EL .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s0aY8eq7EL .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s0aY8eq7EL .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s0aY8eq7EL .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s0aY8eq7EL .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s0aY8eq7EL .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s0aY8eq7EL .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s0aY8eq7EL .modal-content {
  background: #232323;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s0aY8eq7EL .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s0aY8eq7EL .modal-backdrop.fade {
  opacity: 0;
}
.cid-s0aY8eq7EL .modal-backdrop.show {
  opacity: .5;
}
.cid-s0aY8eq7EL .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s0aY8eq7EL .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s0aY8eq7EL .modal-header .close:hover {
  opacity: 1;
}
.cid-s0aY8eq7EL .modal-header .close:focus {
  outline: none;
}
.cid-s0aY8eq7EL .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fac769;
}
.cid-s0aY8eq7EL .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s0aY8eq7EL .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s0aY8eq7EL .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s0aY8eq7EL .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s0aY8eq7EL .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s0aY8eq7EL .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s0aY8eq7EL .modal-sm {
    max-width: 300px;
  }
  .cid-s0aY8eq7EL .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s0aY8eq7EL .modal-lg,
  .cid-s0aY8eq7EL .modal-xl {
    max-width: 800px;
  }
  .cid-s0aY8eq7EL .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s0aY8eq7EL .modal-xl {
    max-width: 1140px;
  }
  .cid-s0aY8eq7EL .container {
    max-width: 1140px;
  }
}
.cid-s0aY8eq7EL .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s0aY8eq7EL .container {
    max-width: 720px;
  }
}
.cid-s0aY8eq7EL .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s0aY8eq7EL .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s0aY8eq7EL .form-group {
  margin-bottom: 1rem;
}
.cid-s0aY8eq7EL .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s0aY8eq7EL .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s0aY8eq7EL .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-rYVDQt2707 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYVDQt2707 .card {
  display: block;
  position: relative;
}
.cid-rYVDQt2707 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-rYVDQt2707 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rYVDQt2707 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rYVDQt2707 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-rYVDQt2707 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rYVDQt2707 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rYVDQt2707 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-rYVDQt2707 .mbr-section-title {
  color: #365c9a;
}
.cid-rYVDQt2707 .mbr-card-text,
.cid-rYVDQt2707 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-skCkmdavnJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-skCkmdavnJ .card {
  display: block;
  position: relative;
}
.cid-skCkmdavnJ .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-skCkmdavnJ .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-skCkmdavnJ .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-skCkmdavnJ .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-skCkmdavnJ .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-skCkmdavnJ .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-skCkmdavnJ .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-skCkmdavnJ .mbr-section-title {
  color: #365c9a;
}
.cid-skCkmdavnJ .mbr-card-text,
.cid-skCkmdavnJ .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sBHb6CelwT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBHb6CelwT .card {
  display: block;
  position: relative;
}
.cid-sBHb6CelwT .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sBHb6CelwT .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sBHb6CelwT .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sBHb6CelwT .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sBHb6CelwT .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sBHb6CelwT .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sBHb6CelwT .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sBHb6CelwT .mbr-section-title {
  color: #365c9a;
}
.cid-sBHb6CelwT .mbr-card-text,
.cid-sBHb6CelwT .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-su4yYHWFAI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-su4yYHWFAI .card {
  display: block;
  position: relative;
}
.cid-su4yYHWFAI .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-su4yYHWFAI .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-su4yYHWFAI .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-su4yYHWFAI .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-su4yYHWFAI .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-su4yYHWFAI .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-su4yYHWFAI .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-su4yYHWFAI .mbr-section-title {
  color: #365c9a;
}
.cid-su4yYHWFAI .mbr-card-text,
.cid-su4yYHWFAI .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-rXOTtTVx96.popup-builder {
  background-color: #ffffff;
}
.cid-rXOTtTVx96.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rXOTtTVx96.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rXOTtTVx96 .modal-content,
.cid-rXOTtTVx96 .modal-dialog {
  height: auto;
}
.cid-rXOTtTVx96 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rXOTtTVx96 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rXOTtTVx96 .form-wrapper .mbr-form .form-group,
  .cid-rXOTtTVx96 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rXOTtTVx96 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rXOTtTVx96 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rXOTtTVx96 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-rXOTtTVx96 .pt-0 {
  padding-top: 0 !important;
}
.cid-rXOTtTVx96 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rXOTtTVx96 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rXOTtTVx96 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rXOTtTVx96 .modal-open {
  overflow: hidden;
}
.cid-rXOTtTVx96 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rXOTtTVx96 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rXOTtTVx96 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rXOTtTVx96 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rXOTtTVx96 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rXOTtTVx96 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rXOTtTVx96 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rXOTtTVx96 .modal-content {
  background: #232323;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rXOTtTVx96 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rXOTtTVx96 .modal-backdrop.fade {
  opacity: 0;
}
.cid-rXOTtTVx96 .modal-backdrop.show {
  opacity: .5;
}
.cid-rXOTtTVx96 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rXOTtTVx96 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rXOTtTVx96 .modal-header .close:hover {
  opacity: 1;
}
.cid-rXOTtTVx96 .modal-header .close:focus {
  outline: none;
}
.cid-rXOTtTVx96 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fac769;
}
.cid-rXOTtTVx96 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rXOTtTVx96 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rXOTtTVx96 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rXOTtTVx96 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rXOTtTVx96 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rXOTtTVx96 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rXOTtTVx96 .modal-sm {
    max-width: 300px;
  }
  .cid-rXOTtTVx96 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rXOTtTVx96 .modal-lg,
  .cid-rXOTtTVx96 .modal-xl {
    max-width: 800px;
  }
  .cid-rXOTtTVx96 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rXOTtTVx96 .modal-xl {
    max-width: 1140px;
  }
  .cid-rXOTtTVx96 .container {
    max-width: 1140px;
  }
}
.cid-rXOTtTVx96 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rXOTtTVx96 .container {
    max-width: 720px;
  }
}
.cid-rXOTtTVx96 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rXOTtTVx96 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rXOTtTVx96 .form-group {
  margin-bottom: 1rem;
}
.cid-rXOTtTVx96 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rXOTtTVx96 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rXOTtTVx96 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-rWO7om7Cua.popup-builder {
  background-color: #ffffff;
}
.cid-rWO7om7Cua.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rWO7om7Cua.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rWO7om7Cua .modal-content,
.cid-rWO7om7Cua .modal-dialog {
  height: auto;
}
.cid-rWO7om7Cua .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rWO7om7Cua .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rWO7om7Cua .form-wrapper .mbr-form .form-group,
  .cid-rWO7om7Cua .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rWO7om7Cua .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rWO7om7Cua .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWO7om7Cua .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-rWO7om7Cua .pt-0 {
  padding-top: 0 !important;
}
.cid-rWO7om7Cua .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rWO7om7Cua .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rWO7om7Cua .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rWO7om7Cua .modal-open {
  overflow: hidden;
}
.cid-rWO7om7Cua .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rWO7om7Cua .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rWO7om7Cua .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rWO7om7Cua .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rWO7om7Cua .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rWO7om7Cua .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rWO7om7Cua .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rWO7om7Cua .modal-content {
  background: #232323;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rWO7om7Cua .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rWO7om7Cua .modal-backdrop.fade {
  opacity: 0;
}
.cid-rWO7om7Cua .modal-backdrop.show {
  opacity: .5;
}
.cid-rWO7om7Cua .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rWO7om7Cua .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rWO7om7Cua .modal-header .close:hover {
  opacity: 1;
}
.cid-rWO7om7Cua .modal-header .close:focus {
  outline: none;
}
.cid-rWO7om7Cua .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fac769;
}
.cid-rWO7om7Cua .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rWO7om7Cua .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rWO7om7Cua .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rWO7om7Cua .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rWO7om7Cua .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rWO7om7Cua .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rWO7om7Cua .modal-sm {
    max-width: 300px;
  }
  .cid-rWO7om7Cua .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rWO7om7Cua .modal-lg,
  .cid-rWO7om7Cua .modal-xl {
    max-width: 800px;
  }
  .cid-rWO7om7Cua .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rWO7om7Cua .modal-xl {
    max-width: 1140px;
  }
  .cid-rWO7om7Cua .container {
    max-width: 1140px;
  }
}
.cid-rWO7om7Cua .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rWO7om7Cua .container {
    max-width: 720px;
  }
}
.cid-rWO7om7Cua .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rWO7om7Cua .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rWO7om7Cua .form-group {
  margin-bottom: 1rem;
}
.cid-rWO7om7Cua .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rWO7om7Cua .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rWO7om7Cua .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-rWO6wLyPkQ.popup-builder {
  background-color: #ffffff;
}
.cid-rWO6wLyPkQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rWO6wLyPkQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rWO6wLyPkQ .modal-content,
.cid-rWO6wLyPkQ .modal-dialog {
  height: auto;
}
.cid-rWO6wLyPkQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rWO6wLyPkQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rWO6wLyPkQ .form-wrapper .mbr-form .form-group,
  .cid-rWO6wLyPkQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rWO6wLyPkQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rWO6wLyPkQ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWO6wLyPkQ .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-rWO6wLyPkQ .pt-0 {
  padding-top: 0 !important;
}
.cid-rWO6wLyPkQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rWO6wLyPkQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rWO6wLyPkQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rWO6wLyPkQ .modal-open {
  overflow: hidden;
}
.cid-rWO6wLyPkQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rWO6wLyPkQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rWO6wLyPkQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rWO6wLyPkQ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rWO6wLyPkQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rWO6wLyPkQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rWO6wLyPkQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rWO6wLyPkQ .modal-content {
  background: #232323;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rWO6wLyPkQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rWO6wLyPkQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-rWO6wLyPkQ .modal-backdrop.show {
  opacity: .5;
}
.cid-rWO6wLyPkQ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rWO6wLyPkQ .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rWO6wLyPkQ .modal-header .close:hover {
  opacity: 1;
}
.cid-rWO6wLyPkQ .modal-header .close:focus {
  outline: none;
}
.cid-rWO6wLyPkQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fac769;
}
.cid-rWO6wLyPkQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rWO6wLyPkQ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rWO6wLyPkQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rWO6wLyPkQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rWO6wLyPkQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rWO6wLyPkQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rWO6wLyPkQ .modal-sm {
    max-width: 300px;
  }
  .cid-rWO6wLyPkQ .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rWO6wLyPkQ .modal-lg,
  .cid-rWO6wLyPkQ .modal-xl {
    max-width: 800px;
  }
  .cid-rWO6wLyPkQ .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rWO6wLyPkQ .modal-xl {
    max-width: 1140px;
  }
  .cid-rWO6wLyPkQ .container {
    max-width: 1140px;
  }
}
.cid-rWO6wLyPkQ .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rWO6wLyPkQ .container {
    max-width: 720px;
  }
}
.cid-rWO6wLyPkQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rWO6wLyPkQ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rWO6wLyPkQ .form-group {
  margin-bottom: 1rem;
}
.cid-rWO6wLyPkQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rWO6wLyPkQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rWO6wLyPkQ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-rWO52fJC6I.popup-builder {
  background-color: #ffffff;
}
.cid-rWO52fJC6I.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rWO52fJC6I.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rWO52fJC6I .modal-content,
.cid-rWO52fJC6I .modal-dialog {
  height: auto;
}
.cid-rWO52fJC6I .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rWO52fJC6I .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rWO52fJC6I .form-wrapper .mbr-form .form-group,
  .cid-rWO52fJC6I .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rWO52fJC6I .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rWO52fJC6I .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWO52fJC6I .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-rWO52fJC6I .pt-0 {
  padding-top: 0 !important;
}
.cid-rWO52fJC6I .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rWO52fJC6I .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rWO52fJC6I .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rWO52fJC6I .modal-open {
  overflow: hidden;
}
.cid-rWO52fJC6I .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rWO52fJC6I .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rWO52fJC6I .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rWO52fJC6I .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rWO52fJC6I .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rWO52fJC6I .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rWO52fJC6I .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rWO52fJC6I .modal-content {
  background: #232323;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rWO52fJC6I .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rWO52fJC6I .modal-backdrop.fade {
  opacity: 0;
}
.cid-rWO52fJC6I .modal-backdrop.show {
  opacity: .5;
}
.cid-rWO52fJC6I .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rWO52fJC6I .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rWO52fJC6I .modal-header .close:hover {
  opacity: 1;
}
.cid-rWO52fJC6I .modal-header .close:focus {
  outline: none;
}
.cid-rWO52fJC6I .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fac769;
}
.cid-rWO52fJC6I .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rWO52fJC6I .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rWO52fJC6I .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rWO52fJC6I .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rWO52fJC6I .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rWO52fJC6I .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rWO52fJC6I .modal-sm {
    max-width: 300px;
  }
  .cid-rWO52fJC6I .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rWO52fJC6I .modal-lg,
  .cid-rWO52fJC6I .modal-xl {
    max-width: 800px;
  }
  .cid-rWO52fJC6I .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rWO52fJC6I .modal-xl {
    max-width: 1140px;
  }
  .cid-rWO52fJC6I .container {
    max-width: 1140px;
  }
}
.cid-rWO52fJC6I .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rWO52fJC6I .container {
    max-width: 720px;
  }
}
.cid-rWO52fJC6I .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rWO52fJC6I .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rWO52fJC6I .form-group {
  margin-bottom: 1rem;
}
.cid-rWO52fJC6I .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rWO52fJC6I .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rWO52fJC6I .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-rVyjczuyvR.popup-builder {
  background-color: #ffffff;
}
.cid-rVyjczuyvR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rVyjczuyvR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rVyjczuyvR .modal-content,
.cid-rVyjczuyvR .modal-dialog {
  height: auto;
}
.cid-rVyjczuyvR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rVyjczuyvR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rVyjczuyvR .form-wrapper .mbr-form .form-group,
  .cid-rVyjczuyvR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rVyjczuyvR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rVyjczuyvR .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVyjczuyvR .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-rVyjczuyvR .pt-0 {
  padding-top: 0 !important;
}
.cid-rVyjczuyvR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rVyjczuyvR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rVyjczuyvR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rVyjczuyvR .modal-open {
  overflow: hidden;
}
.cid-rVyjczuyvR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rVyjczuyvR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rVyjczuyvR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rVyjczuyvR .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rVyjczuyvR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rVyjczuyvR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rVyjczuyvR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rVyjczuyvR .modal-content {
  background: #232323;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rVyjczuyvR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rVyjczuyvR .modal-backdrop.fade {
  opacity: 0;
}
.cid-rVyjczuyvR .modal-backdrop.show {
  opacity: .5;
}
.cid-rVyjczuyvR .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rVyjczuyvR .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rVyjczuyvR .modal-header .close:hover {
  opacity: 1;
}
.cid-rVyjczuyvR .modal-header .close:focus {
  outline: none;
}
.cid-rVyjczuyvR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fac769;
}
.cid-rVyjczuyvR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rVyjczuyvR .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rVyjczuyvR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rVyjczuyvR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rVyjczuyvR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rVyjczuyvR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rVyjczuyvR .modal-sm {
    max-width: 300px;
  }
  .cid-rVyjczuyvR .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rVyjczuyvR .modal-lg,
  .cid-rVyjczuyvR .modal-xl {
    max-width: 800px;
  }
  .cid-rVyjczuyvR .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rVyjczuyvR .modal-xl {
    max-width: 1140px;
  }
  .cid-rVyjczuyvR .container {
    max-width: 1140px;
  }
}
.cid-rVyjczuyvR .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rVyjczuyvR .container {
    max-width: 720px;
  }
}
.cid-rVyjczuyvR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rVyjczuyvR .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rVyjczuyvR .form-group {
  margin-bottom: 1rem;
}
.cid-rVyjczuyvR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rVyjczuyvR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rVyjczuyvR .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-rVyhAQS5ad.popup-builder {
  background-color: #ffffff;
}
.cid-rVyhAQS5ad.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rVyhAQS5ad.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rVyhAQS5ad .modal-content,
.cid-rVyhAQS5ad .modal-dialog {
  height: auto;
}
.cid-rVyhAQS5ad .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rVyhAQS5ad .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rVyhAQS5ad .form-wrapper .mbr-form .form-group,
  .cid-rVyhAQS5ad .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rVyhAQS5ad .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rVyhAQS5ad .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVyhAQS5ad .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-rVyhAQS5ad .pt-0 {
  padding-top: 0 !important;
}
.cid-rVyhAQS5ad .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rVyhAQS5ad .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rVyhAQS5ad .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rVyhAQS5ad .modal-open {
  overflow: hidden;
}
.cid-rVyhAQS5ad .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rVyhAQS5ad .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rVyhAQS5ad .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rVyhAQS5ad .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rVyhAQS5ad .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rVyhAQS5ad .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rVyhAQS5ad .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rVyhAQS5ad .modal-content {
  background: #232323;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rVyhAQS5ad .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rVyhAQS5ad .modal-backdrop.fade {
  opacity: 0;
}
.cid-rVyhAQS5ad .modal-backdrop.show {
  opacity: .5;
}
.cid-rVyhAQS5ad .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rVyhAQS5ad .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rVyhAQS5ad .modal-header .close:hover {
  opacity: 1;
}
.cid-rVyhAQS5ad .modal-header .close:focus {
  outline: none;
}
.cid-rVyhAQS5ad .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fac769;
}
.cid-rVyhAQS5ad .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rVyhAQS5ad .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rVyhAQS5ad .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rVyhAQS5ad .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rVyhAQS5ad .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rVyhAQS5ad .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rVyhAQS5ad .modal-sm {
    max-width: 300px;
  }
  .cid-rVyhAQS5ad .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rVyhAQS5ad .modal-lg,
  .cid-rVyhAQS5ad .modal-xl {
    max-width: 800px;
  }
  .cid-rVyhAQS5ad .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rVyhAQS5ad .modal-xl {
    max-width: 1140px;
  }
  .cid-rVyhAQS5ad .container {
    max-width: 1140px;
  }
}
.cid-rVyhAQS5ad .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rVyhAQS5ad .container {
    max-width: 720px;
  }
}
.cid-rVyhAQS5ad .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rVyhAQS5ad .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rVyhAQS5ad .form-group {
  margin-bottom: 1rem;
}
.cid-rVyhAQS5ad .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rVyhAQS5ad .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rVyhAQS5ad .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-rJLA8ZP2hA {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJLA8ZP2hA .mbr-section-subtitle {
  color: #4289a7;
}
.cid-rJLA8ZP2hA .mbr-section-title {
  color: #ffffff;
}
.cid-tlyeyKNU09 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tlyeyKNU09 .mbr-text {
  text-align: left;
  color: #365c9a;
}
.cid-ucXa7RmCY5 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ucXa7RmCY5 .card {
  display: block;
  position: relative;
}
.cid-ucXa7RmCY5 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-ucXa7RmCY5 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-ucXa7RmCY5 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-ucXa7RmCY5 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-ucXa7RmCY5 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-ucXa7RmCY5 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-ucXa7RmCY5 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-ucXa7RmCY5 .mbr-section-title {
  color: #365c9a;
}
.cid-ucXa7RmCY5 .mbr-card-text,
.cid-ucXa7RmCY5 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tXDyaWAXeQ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tXDyaWAXeQ .card {
  display: block;
  position: relative;
}
.cid-tXDyaWAXeQ .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tXDyaWAXeQ .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tXDyaWAXeQ .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tXDyaWAXeQ .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tXDyaWAXeQ .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tXDyaWAXeQ .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tXDyaWAXeQ .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tXDyaWAXeQ .mbr-section-title {
  color: #365c9a;
}
.cid-tXDyaWAXeQ .mbr-card-text,
.cid-tXDyaWAXeQ .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tXDy9jfZ9i {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tXDy9jfZ9i .card {
  display: block;
  position: relative;
}
.cid-tXDy9jfZ9i .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tXDy9jfZ9i .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tXDy9jfZ9i .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tXDy9jfZ9i .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tXDy9jfZ9i .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tXDy9jfZ9i .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tXDy9jfZ9i .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tXDy9jfZ9i .mbr-section-title {
  color: #365c9a;
}
.cid-tXDy9jfZ9i .mbr-card-text,
.cid-tXDy9jfZ9i .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tXDyd354dL {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tXDyd354dL .card {
  display: block;
  position: relative;
}
.cid-tXDyd354dL .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tXDyd354dL .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tXDyd354dL .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tXDyd354dL .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tXDyd354dL .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tXDyd354dL .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tXDyd354dL .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tXDyd354dL .mbr-section-title {
  color: #365c9a;
}
.cid-tXDyd354dL .mbr-card-text,
.cid-tXDyd354dL .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tXDxUgo8Ee {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tXDxUgo8Ee .card {
  display: block;
  position: relative;
}
.cid-tXDxUgo8Ee .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tXDxUgo8Ee .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tXDxUgo8Ee .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tXDxUgo8Ee .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tXDxUgo8Ee .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tXDxUgo8Ee .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tXDxUgo8Ee .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tXDxUgo8Ee .mbr-card-text,
.cid-tXDxUgo8Ee .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-tXDxUgo8Ee .img-text {
  color: #efefef;
}
.cid-tXDxUgo8Ee .mbr-section-title {
  color: #043483;
}
.cid-tXDxUgo8Ee .mbr-title {
  text-align: center;
}
.cid-tT16GsuTXW {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tT16GsuTXW .card {
  display: block;
  position: relative;
}
.cid-tT16GsuTXW .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tT16GsuTXW .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tT16GsuTXW .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tT16GsuTXW .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tT16GsuTXW .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tT16GsuTXW .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tT16GsuTXW .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tT16GsuTXW .mbr-section-title {
  color: #365c9a;
}
.cid-tT16GsuTXW .mbr-card-text,
.cid-tT16GsuTXW .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tBo1WXV1r2 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tBo1WXV1r2 .card {
  display: block;
  position: relative;
}
.cid-tBo1WXV1r2 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tBo1WXV1r2 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tBo1WXV1r2 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tBo1WXV1r2 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tBo1WXV1r2 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tBo1WXV1r2 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tBo1WXV1r2 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tBo1WXV1r2 .mbr-section-title {
  color: #365c9a;
}
.cid-tBo1WXV1r2 .mbr-card-text,
.cid-tBo1WXV1r2 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tBo1UQJ6qj {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tBo1UQJ6qj .card {
  display: block;
  position: relative;
}
.cid-tBo1UQJ6qj .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tBo1UQJ6qj .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tBo1UQJ6qj .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tBo1UQJ6qj .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tBo1UQJ6qj .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tBo1UQJ6qj .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tBo1UQJ6qj .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tBo1UQJ6qj .mbr-section-title {
  color: #365c9a;
}
.cid-tBo1UQJ6qj .mbr-card-text,
.cid-tBo1UQJ6qj .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tlyd9sJlJA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tlyd9sJlJA .card {
  display: block;
  position: relative;
}
.cid-tlyd9sJlJA .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tlyd9sJlJA .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tlyd9sJlJA .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tlyd9sJlJA .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tlyd9sJlJA .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tlyd9sJlJA .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tlyd9sJlJA .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tlyd9sJlJA .mbr-card-text,
.cid-tlyd9sJlJA .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-tlyd9sJlJA .img-text {
  color: #efefef;
}
.cid-tlyd9sJlJA .mbr-section-title {
  color: #043483;
}
.cid-tlyd9sJlJA .mbr-title {
  text-align: center;
}
.cid-tlycQ9gXJ6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tlycQ9gXJ6 .card {
  display: block;
  position: relative;
}
.cid-tlycQ9gXJ6 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tlycQ9gXJ6 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tlycQ9gXJ6 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tlycQ9gXJ6 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tlycQ9gXJ6 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tlycQ9gXJ6 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tlycQ9gXJ6 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tlycQ9gXJ6 .mbr-card-text,
.cid-tlycQ9gXJ6 .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-tlycQ9gXJ6 .img-text {
  color: #efefef;
}
.cid-tlycQ9gXJ6 .mbr-section-title {
  color: #043483;
}
.cid-tlycQ9gXJ6 .mbr-title {
  text-align: center;
}
.cid-t9vIPxRenA {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-t9vIPxRenA .card {
  display: block;
  position: relative;
}
.cid-t9vIPxRenA .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-t9vIPxRenA .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-t9vIPxRenA .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-t9vIPxRenA .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-t9vIPxRenA .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-t9vIPxRenA .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-t9vIPxRenA .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-t9vIPxRenA .mbr-card-text,
.cid-t9vIPxRenA .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-t9vIPxRenA .img-text {
  color: #efefef;
}
.cid-t9vIPxRenA .mbr-section-title {
  color: #043483;
}
.cid-t9vIPxRenA .mbr-title {
  text-align: center;
}
.cid-shltauhnBH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shltauhnBH .card {
  display: block;
  position: relative;
}
.cid-shltauhnBH .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shltauhnBH .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shltauhnBH .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shltauhnBH .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shltauhnBH .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shltauhnBH .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shltauhnBH .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shltauhnBH .mbr-section-title {
  color: #365c9a;
}
.cid-shltauhnBH .mbr-card-text,
.cid-shltauhnBH .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sPLqMLrdRb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sPLqMLrdRb .card {
  display: block;
  position: relative;
}
.cid-sPLqMLrdRb .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sPLqMLrdRb .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sPLqMLrdRb .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sPLqMLrdRb .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sPLqMLrdRb .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sPLqMLrdRb .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sPLqMLrdRb .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sPLqMLrdRb .mbr-card-text,
.cid-sPLqMLrdRb .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-sPLqMLrdRb .img-text {
  color: #efefef;
}
.cid-sPLqMLrdRb .mbr-section-title {
  color: #043483;
}
.cid-sPLqMLrdRb .mbr-title {
  text-align: center;
}
.cid-sPLqwzkjrT {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sPLqwzkjrT .card {
  display: block;
  position: relative;
}
.cid-sPLqwzkjrT .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sPLqwzkjrT .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sPLqwzkjrT .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sPLqwzkjrT .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sPLqwzkjrT .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sPLqwzkjrT .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sPLqwzkjrT .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sPLqwzkjrT .mbr-card-text,
.cid-sPLqwzkjrT .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-sPLqwzkjrT .img-text {
  color: #efefef;
}
.cid-sPLqwzkjrT .mbr-section-title {
  color: #043483;
}
.cid-sPLqwzkjrT .mbr-title {
  text-align: left;
}
.cid-sEKKwebpVd {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sEKKwebpVd .card {
  display: block;
  position: relative;
}
.cid-sEKKwebpVd .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sEKKwebpVd .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sEKKwebpVd .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sEKKwebpVd .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sEKKwebpVd .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sEKKwebpVd .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sEKKwebpVd .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sEKKwebpVd .mbr-card-text,
.cid-sEKKwebpVd .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-sEKKwebpVd .img-text {
  color: #efefef;
}
.cid-sEKKwebpVd .mbr-section-title {
  color: #043483;
}
.cid-sEKKwebpVd .mbr-title {
  text-align: left;
}
.cid-sEKKc5UVGV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sEKKc5UVGV .card {
  display: block;
  position: relative;
}
.cid-sEKKc5UVGV .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sEKKc5UVGV .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sEKKc5UVGV .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sEKKc5UVGV .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sEKKc5UVGV .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sEKKc5UVGV .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sEKKc5UVGV .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sEKKc5UVGV .mbr-section-title {
  color: #365c9a;
}
.cid-sEKKc5UVGV .mbr-card-text,
.cid-sEKKc5UVGV .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmBdObuIq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmBdObuIq .card {
  display: block;
  position: relative;
}
.cid-shmBdObuIq .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmBdObuIq .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmBdObuIq .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmBdObuIq .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmBdObuIq .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmBdObuIq .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmBdObuIq .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmBdObuIq .mbr-section-title {
  color: #365c9a;
}
.cid-shmBdObuIq .mbr-card-text,
.cid-shmBdObuIq .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmAc4gWWu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmAc4gWWu .card {
  display: block;
  position: relative;
}
.cid-shmAc4gWWu .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmAc4gWWu .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmAc4gWWu .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmAc4gWWu .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmAc4gWWu .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmAc4gWWu .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmAc4gWWu .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmAc4gWWu .mbr-section-title {
  color: #365c9a;
}
.cid-shmAc4gWWu .mbr-card-text,
.cid-shmAc4gWWu .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmzP2fvPc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmzP2fvPc .card {
  display: block;
  position: relative;
}
.cid-shmzP2fvPc .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmzP2fvPc .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmzP2fvPc .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmzP2fvPc .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmzP2fvPc .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmzP2fvPc .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmzP2fvPc .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmzP2fvPc .mbr-section-title {
  color: #365c9a;
}
.cid-shmzP2fvPc .mbr-card-text,
.cid-shmzP2fvPc .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmzdPVSvI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmzdPVSvI .card {
  display: block;
  position: relative;
}
.cid-shmzdPVSvI .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmzdPVSvI .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmzdPVSvI .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmzdPVSvI .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmzdPVSvI .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmzdPVSvI .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmzdPVSvI .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmzdPVSvI .mbr-section-title {
  color: #365c9a;
}
.cid-shmzdPVSvI .mbr-card-text,
.cid-shmzdPVSvI .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmk4l05MG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmk4l05MG .card {
  display: block;
  position: relative;
}
.cid-shmk4l05MG .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmk4l05MG .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmk4l05MG .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmk4l05MG .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmk4l05MG .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmk4l05MG .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmk4l05MG .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmk4l05MG .mbr-section-title {
  color: #365c9a;
}
.cid-shmk4l05MG .mbr-card-text,
.cid-shmk4l05MG .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmyWPXFyu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmyWPXFyu .card {
  display: block;
  position: relative;
}
.cid-shmyWPXFyu .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmyWPXFyu .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmyWPXFyu .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmyWPXFyu .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmyWPXFyu .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmyWPXFyu .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmyWPXFyu .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmyWPXFyu .mbr-section-title {
  color: #365c9a;
}
.cid-shmyWPXFyu .mbr-card-text,
.cid-shmyWPXFyu .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmxDZHlpY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmxDZHlpY .card {
  display: block;
  position: relative;
}
.cid-shmxDZHlpY .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmxDZHlpY .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmxDZHlpY .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmxDZHlpY .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmxDZHlpY .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmxDZHlpY .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmxDZHlpY .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmxDZHlpY .mbr-section-title {
  color: #365c9a;
}
.cid-shmxDZHlpY .mbr-card-text,
.cid-shmxDZHlpY .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmwEfiBze {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmwEfiBze .card {
  display: block;
  position: relative;
}
.cid-shmwEfiBze .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmwEfiBze .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmwEfiBze .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmwEfiBze .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmwEfiBze .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmwEfiBze .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmwEfiBze .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmwEfiBze .mbr-section-title {
  color: #365c9a;
}
.cid-shmwEfiBze .mbr-card-text,
.cid-shmwEfiBze .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmvRtH25u {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmvRtH25u .card {
  display: block;
  position: relative;
}
.cid-shmvRtH25u .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmvRtH25u .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmvRtH25u .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmvRtH25u .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmvRtH25u .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmvRtH25u .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmvRtH25u .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmvRtH25u .mbr-section-title {
  color: #365c9a;
}
.cid-shmvRtH25u .mbr-card-text,
.cid-shmvRtH25u .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmvvdsKk3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmvvdsKk3 .card {
  display: block;
  position: relative;
}
.cid-shmvvdsKk3 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmvvdsKk3 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmvvdsKk3 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmvvdsKk3 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmvvdsKk3 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmvvdsKk3 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmvvdsKk3 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmvvdsKk3 .mbr-section-title {
  color: #365c9a;
}
.cid-shmvvdsKk3 .mbr-card-text,
.cid-shmvvdsKk3 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmulnX2ak {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmulnX2ak .card {
  display: block;
  position: relative;
}
.cid-shmulnX2ak .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmulnX2ak .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmulnX2ak .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmulnX2ak .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmulnX2ak .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmulnX2ak .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmulnX2ak .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmulnX2ak .mbr-section-title {
  color: #365c9a;
}
.cid-shmulnX2ak .mbr-card-text,
.cid-shmulnX2ak .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmtgMPyb4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmtgMPyb4 .card {
  display: block;
  position: relative;
}
.cid-shmtgMPyb4 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmtgMPyb4 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmtgMPyb4 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmtgMPyb4 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmtgMPyb4 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmtgMPyb4 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmtgMPyb4 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmtgMPyb4 .mbr-section-title {
  color: #365c9a;
}
.cid-shmtgMPyb4 .mbr-card-text,
.cid-shmtgMPyb4 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmsysmu3D {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmsysmu3D .card {
  display: block;
  position: relative;
}
.cid-shmsysmu3D .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmsysmu3D .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmsysmu3D .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmsysmu3D .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmsysmu3D .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmsysmu3D .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmsysmu3D .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmsysmu3D .mbr-section-title {
  color: #0c3c8a;
}
.cid-shmsysmu3D .mbr-card-text,
.cid-shmsysmu3D .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmqX65nmS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmqX65nmS .card {
  display: block;
  position: relative;
}
.cid-shmqX65nmS .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmqX65nmS .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmqX65nmS .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmqX65nmS .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmqX65nmS .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmqX65nmS .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmqX65nmS .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmqX65nmS .mbr-section-title {
  color: #0c3c8a;
}
.cid-shmqX65nmS .mbr-card-text,
.cid-shmqX65nmS .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmoWny7Em {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmoWny7Em .card {
  display: block;
  position: relative;
}
.cid-shmoWny7Em .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmoWny7Em .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmoWny7Em .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmoWny7Em .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmoWny7Em .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmoWny7Em .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmoWny7Em .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmoWny7Em .mbr-section-title {
  color: #365c9a;
}
.cid-shmoWny7Em .mbr-card-text,
.cid-shmoWny7Em .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmneuhvDJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmneuhvDJ .card {
  display: block;
  position: relative;
}
.cid-shmneuhvDJ .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmneuhvDJ .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmneuhvDJ .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmneuhvDJ .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmneuhvDJ .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmneuhvDJ .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmneuhvDJ .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmneuhvDJ .mbr-card-text,
.cid-shmneuhvDJ .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-shmneuhvDJ .img-text {
  color: #efefef;
}
.cid-shmneuhvDJ .mbr-section-title {
  color: #ca4336;
}
.cid-shmneuhvDJ .mbr-title {
  text-align: center;
}
.cid-shmmlh19Ee {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmmlh19Ee .card {
  display: block;
  position: relative;
}
.cid-shmmlh19Ee .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmmlh19Ee .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmmlh19Ee .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmmlh19Ee .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmmlh19Ee .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmmlh19Ee .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmmlh19Ee .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmmlh19Ee .mbr-section-title {
  color: #0c3c8a;
}
.cid-shmmlh19Ee .mbr-card-text,
.cid-shmmlh19Ee .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmg3kApjo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmg3kApjo .card {
  display: block;
  position: relative;
}
.cid-shmg3kApjo .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmg3kApjo .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmg3kApjo .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmg3kApjo .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmg3kApjo .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmg3kApjo .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmg3kApjo .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmg3kApjo .mbr-section-title {
  color: #365c9a;
}
.cid-shmg3kApjo .mbr-card-text,
.cid-shmg3kApjo .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmdCGiAG2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmdCGiAG2 .card {
  display: block;
  position: relative;
}
.cid-shmdCGiAG2 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmdCGiAG2 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmdCGiAG2 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmdCGiAG2 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmdCGiAG2 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmdCGiAG2 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmdCGiAG2 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmdCGiAG2 .mbr-section-title {
  color: #365c9a;
}
.cid-shmdCGiAG2 .mbr-card-text,
.cid-shmdCGiAG2 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shmcYlccI9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shmcYlccI9 .card {
  display: block;
  position: relative;
}
.cid-shmcYlccI9 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shmcYlccI9 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shmcYlccI9 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shmcYlccI9 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shmcYlccI9 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shmcYlccI9 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shmcYlccI9 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shmcYlccI9 .mbr-section-title {
  color: #365c9a;
}
.cid-shmcYlccI9 .mbr-card-text,
.cid-shmcYlccI9 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shma5FejxW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shma5FejxW .card {
  display: block;
  position: relative;
}
.cid-shma5FejxW .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shma5FejxW .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shma5FejxW .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shma5FejxW .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shma5FejxW .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shma5FejxW .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shma5FejxW .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shma5FejxW .mbr-section-title {
  color: #365c9a;
}
.cid-shma5FejxW .mbr-card-text,
.cid-shma5FejxW .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shlYAeAkcX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shlYAeAkcX .card {
  display: block;
  position: relative;
}
.cid-shlYAeAkcX .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shlYAeAkcX .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shlYAeAkcX .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shlYAeAkcX .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shlYAeAkcX .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shlYAeAkcX .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shlYAeAkcX .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shlYAeAkcX .mbr-section-title {
  color: #365c9a;
}
.cid-shlYAeAkcX .mbr-card-text,
.cid-shlYAeAkcX .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-shlXmrU4TM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shlXmrU4TM .card {
  display: block;
  position: relative;
}
.cid-shlXmrU4TM .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-shlXmrU4TM .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-shlXmrU4TM .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-shlXmrU4TM .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-shlXmrU4TM .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-shlXmrU4TM .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-shlXmrU4TM .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-shlXmrU4TM .mbr-section-title {
  color: #365c9a;
}
.cid-shlXmrU4TM .mbr-card-text,
.cid-shlXmrU4TM .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-rJLzIaixw6 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rJLzIaixw6 .card {
  display: block;
  position: relative;
}
.cid-rJLzIaixw6 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-rJLzIaixw6 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rJLzIaixw6 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rJLzIaixw6 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-rJLzIaixw6 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rJLzIaixw6 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rJLzIaixw6 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-rJLzIaixw6 .mbr-section-title {
  color: #365c9a;
}
.cid-rJLzIaixw6 .mbr-card-text,
.cid-rJLzIaixw6 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-rJvfvfWSyZ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rJvfvfWSyZ .card {
  display: block;
  position: relative;
}
.cid-rJvfvfWSyZ .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-rJvfvfWSyZ .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rJvfvfWSyZ .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rJvfvfWSyZ .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-rJvfvfWSyZ .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rJvfvfWSyZ .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rJvfvfWSyZ .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-rJvfvfWSyZ .mbr-section-title {
  color: #365c9a;
}
.cid-rJvfvfWSyZ .mbr-card-text,
.cid-rJvfvfWSyZ .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-sqBsaewx8m {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 60px;
}
.cid-sqBsaewx8m .container-fluid {
  padding: 0 3rem;
}
.cid-sqBsaewx8m .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sqBsaewx8m .container-fluid {
    padding: 0 1rem;
  }
  .cid-sqBsaewx8m .video-block {
    width: 100% !important;
  }
}
.cid-swYxZ35EL8 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #e6edef;
}
.cid-swYxZ35EL8 .mbr-text {
  color: #365c9a;
}
.cid-tyz8XEq00B {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #e6edef;
}
.cid-tyz8XEq00B .mbr-text {
  text-align: left;
}
.cid-tyz9f59Lfu {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #e6edef;
}
.cid-tyz9f59Lfu .mbr-text {
  text-align: left;
}
.cid-tyz9459ehw {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #e6edef;
}
.cid-tpjFZ1A7Y5 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #e6edef;
}
.cid-tpjFZ1A7Y5 .mbr-text {
  text-align: left;
}
.cid-tppM5NOeaV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e6edef;
}
.cid-tppM5NOeaV .mbr-text {
  text-align: left;
}
.cid-tpjFzBLm78 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #e6edef;
}
.cid-swYzeC8ico {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #e6edef;
}
.cid-swYzeC8ico .mbr-text {
  text-align: left;
}
.cid-swYzBLNRA0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e6edef;
}
.cid-swYzBLNRA0 .mbr-text {
  color: #232323;
}
.cid-swYAVVxlnV {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e6edef;
}
.cid-rJ2DyFOl3g {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ2DyFOl3g .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ2DyFOl3g .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rKDzUqmQiA {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rKDzUqmQiA .mbr-text {
  text-align: left;
}
.cid-rKDzUrDbRI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKDzUrDbRI .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-rKDzUscSzZ {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-rKDzUscSzZ .container-fluid {
  padding: 0 3rem;
}
.cid-rKDzUscSzZ .image-block {
  margin: auto;
}
.cid-rKDzUscSzZ .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rKDzUscSzZ .container-fluid {
    padding: 0 1rem;
  }
  .cid-rKDzUscSzZ .image-block {
    width: 100% !important;
  }
}
.cid-rKDD5cBIYp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKDD5cBIYp .mbr-text {
  color: #365c9a;
}
.cid-rKDD8VevEk {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rKDD8VevEk .mbr-text {
  color: #232323;
}
.cid-rKDDNgud7f {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-rKDDNgud7f .mbr-text,
.cid-rKDDNgud7f .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-rKDDNgud7f H1 {
  color: #2e2e2e;
}
.cid-rKDE38pR6X {
  background: #ffffff;
  padding-top: 90px;
  padding-bottom: 45px;
}
.cid-rKDE38pR6X .container-fluid {
  padding: 0 3rem;
}
.cid-rKDE38pR6X .image-block {
  margin: auto;
}
.cid-rKDE38pR6X .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rKDE38pR6X .container-fluid {
    padding: 0 1rem;
  }
  .cid-rKDE38pR6X .image-block {
    width: 100% !important;
  }
}
.cid-rKDDYXPaQe {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKDDYXPaQe .mbr-text {
  color: #232323;
}
.cid-rKDzUxnkh1 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rKDzUxnkh1 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rKDzUxnkh1 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJzZ02sju5 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rJzZ02sju5 .mbr-text {
  text-align: left;
}
.cid-rJzZ06SIqq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJzZ06SIqq .mbr-text {
  color: #365c9a;
}
.cid-rJCgMitbz2 {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rJCgMitbz2 .container-fluid {
  padding: 0 3rem;
}
.cid-rJCgMitbz2 .image-block {
  margin: auto;
}
.cid-rJCgMitbz2 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rJCgMitbz2 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rJCgMitbz2 .image-block {
    width: 100% !important;
  }
}
.cid-rJCaccG39N {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJCaccG39N .container-fluid {
  padding: 0 3rem;
}
.cid-rJCaccG39N .mbr-section-subtitle {
  color: #465052;
}
.cid-rJCaccG39N .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rJCaccG39N .table-wrapper {
  margin: 0 auto;
}
.cid-rJCaccG39N table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rJCaccG39N table thead tr {
  border: none !important;
}
.cid-rJCaccG39N table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rJCaccG39N table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rJCaccG39N table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rJCaccG39N table.table {
  background: #f9f9f9;
}
.cid-rJCaccG39N tr:hover {
  background-color: #efefef !important;
}
.cid-rJCaccG39N .head-item:after,
.cid-rJCaccG39N .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rJCaccG39N table th,
  .cid-rJCaccG39N table td {
    padding: .75rem;
  }
}
.cid-rJCaccG39N .body-item {
  text-align: left;
}
.cid-rJCaccG39N .head-item {
  color: #000000;
  text-align: center;
}
.cid-rJCaccG39N .mbr-section-title,
.cid-rJCaccG39N .underline {
  color: #365c9a;
}
.cid-rJCaccG39N .mbr-text {
  color: #92b5d5;
}
.cid-rJEDGKtgLI {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rJEDGKtgLI .container-fluid {
  padding: 0 3rem;
}
.cid-rJEDGKtgLI .mbr-section-subtitle {
  color: #465052;
}
.cid-rJEDGKtgLI .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rJEDGKtgLI .table-wrapper {
  margin: 0 auto;
}
.cid-rJEDGKtgLI table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rJEDGKtgLI table thead tr {
  border: none !important;
}
.cid-rJEDGKtgLI table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rJEDGKtgLI table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rJEDGKtgLI table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rJEDGKtgLI table.table {
  background: #f9f9f9;
}
.cid-rJEDGKtgLI tr:hover {
  background-color: #efefef !important;
}
.cid-rJEDGKtgLI .head-item:after,
.cid-rJEDGKtgLI .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rJEDGKtgLI table th,
  .cid-rJEDGKtgLI table td {
    padding: .75rem;
  }
}
.cid-rJEDGKtgLI .body-item {
  text-align: left;
}
.cid-rJEDGKtgLI .head-item {
  color: #000000;
  text-align: center;
}
.cid-rJEDGKtgLI .mbr-section-title,
.cid-rJEDGKtgLI .underline {
  color: #365c9a;
}
.cid-rJEDGKtgLI .mbr-text {
  color: #92b5d5;
}
.cid-rJzZ083e6W {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJzZ083e6W .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJzZ083e6W .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rKZEUh7nGX {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rKZEUh7nGX .mbr-text {
  text-align: left;
}
.cid-rKZEUhRfPD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKZEUhRfPD .mbr-text {
  color: #365c9a;
}
.cid-rKZEUid7PQ {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rKZEUid7PQ .container-fluid {
  padding: 0 3rem;
}
.cid-rKZEUid7PQ .image-block {
  margin: auto;
}
.cid-rKZEUid7PQ .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rKZEUid7PQ .container-fluid {
    padding: 0 1rem;
  }
  .cid-rKZEUid7PQ .image-block {
    width: 100% !important;
  }
}
.cid-rKZEUiJDHR {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKZEUiJDHR .container-fluid {
  padding: 0 3rem;
}
.cid-rKZEUiJDHR .mbr-section-subtitle {
  color: #465052;
}
.cid-rKZEUiJDHR .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rKZEUiJDHR .table-wrapper {
  margin: 0 auto;
}
.cid-rKZEUiJDHR table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rKZEUiJDHR table thead tr {
  border: none !important;
}
.cid-rKZEUiJDHR table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rKZEUiJDHR table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rKZEUiJDHR table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rKZEUiJDHR table.table {
  background: #f9f9f9;
}
.cid-rKZEUiJDHR tr:hover {
  background-color: #efefef !important;
}
.cid-rKZEUiJDHR .head-item:after,
.cid-rKZEUiJDHR .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rKZEUiJDHR table th,
  .cid-rKZEUiJDHR table td {
    padding: .75rem;
  }
}
.cid-rKZEUiJDHR .body-item {
  text-align: left;
}
.cid-rKZEUiJDHR .head-item {
  color: #000000;
  text-align: center;
}
.cid-rKZEUiJDHR .mbr-section-title,
.cid-rKZEUiJDHR .underline {
  color: #365c9a;
}
.cid-rKZEUiJDHR .mbr-text {
  color: #92b5d5;
}
.cid-rKZEUkcDLF {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rKZEUkcDLF .container-fluid {
  padding: 0 3rem;
}
.cid-rKZEUkcDLF .mbr-section-subtitle {
  color: #465052;
}
.cid-rKZEUkcDLF .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rKZEUkcDLF .table-wrapper {
  margin: 0 auto;
}
.cid-rKZEUkcDLF table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rKZEUkcDLF table thead tr {
  border: none !important;
}
.cid-rKZEUkcDLF table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rKZEUkcDLF table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rKZEUkcDLF table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rKZEUkcDLF table.table {
  background: #f9f9f9;
}
.cid-rKZEUkcDLF tr:hover {
  background-color: #efefef !important;
}
.cid-rKZEUkcDLF .head-item:after,
.cid-rKZEUkcDLF .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rKZEUkcDLF table th,
  .cid-rKZEUkcDLF table td {
    padding: .75rem;
  }
}
.cid-rKZEUkcDLF .body-item {
  text-align: left;
}
.cid-rKZEUkcDLF .head-item {
  color: #000000;
  text-align: center;
}
.cid-rKZEUkcDLF .mbr-section-title,
.cid-rKZEUkcDLF .underline {
  color: #365c9a;
}
.cid-rKZEUkcDLF .mbr-text {
  color: #92b5d5;
}
.cid-rKZEUmkUu9 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rKZEUmkUu9 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rKZEUmkUu9 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rKZH9rdskb {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rKZH9rdskb .mbr-text {
  text-align: left;
}
.cid-rKZH9shQpG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKZH9shQpG .mbr-text {
  color: #365c9a;
}
.cid-rKZH9sHW0Y {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rKZH9sHW0Y .container-fluid {
  padding: 0 3rem;
}
.cid-rKZH9sHW0Y .image-block {
  margin: auto;
}
.cid-rKZH9sHW0Y .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rKZH9sHW0Y .container-fluid {
    padding: 0 1rem;
  }
  .cid-rKZH9sHW0Y .image-block {
    width: 100% !important;
  }
}
.cid-rKZH9teNXB {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKZH9teNXB .container-fluid {
  padding: 0 3rem;
}
.cid-rKZH9teNXB .mbr-section-subtitle {
  color: #465052;
}
.cid-rKZH9teNXB .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rKZH9teNXB .table-wrapper {
  margin: 0 auto;
}
.cid-rKZH9teNXB table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rKZH9teNXB table thead tr {
  border: none !important;
}
.cid-rKZH9teNXB table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rKZH9teNXB table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rKZH9teNXB table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rKZH9teNXB table.table {
  background: #f9f9f9;
}
.cid-rKZH9teNXB tr:hover {
  background-color: #efefef !important;
}
.cid-rKZH9teNXB .head-item:after,
.cid-rKZH9teNXB .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rKZH9teNXB table th,
  .cid-rKZH9teNXB table td {
    padding: .75rem;
  }
}
.cid-rKZH9teNXB .body-item {
  text-align: left;
}
.cid-rKZH9teNXB .head-item {
  color: #000000;
  text-align: center;
}
.cid-rKZH9teNXB .mbr-section-title,
.cid-rKZH9teNXB .underline {
  color: #365c9a;
}
.cid-rKZH9teNXB .mbr-text {
  color: #92b5d5;
}
.cid-rKZH9uHPpV {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rKZH9uHPpV .container-fluid {
  padding: 0 3rem;
}
.cid-rKZH9uHPpV .mbr-section-subtitle {
  color: #465052;
}
.cid-rKZH9uHPpV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rKZH9uHPpV .table-wrapper {
  margin: 0 auto;
}
.cid-rKZH9uHPpV table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rKZH9uHPpV table thead tr {
  border: none !important;
}
.cid-rKZH9uHPpV table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rKZH9uHPpV table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rKZH9uHPpV table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rKZH9uHPpV table.table {
  background: #f9f9f9;
}
.cid-rKZH9uHPpV tr:hover {
  background-color: #efefef !important;
}
.cid-rKZH9uHPpV .head-item:after,
.cid-rKZH9uHPpV .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rKZH9uHPpV table th,
  .cid-rKZH9uHPpV table td {
    padding: .75rem;
  }
}
.cid-rKZH9uHPpV .body-item {
  text-align: left;
}
.cid-rKZH9uHPpV .head-item {
  color: #000000;
  text-align: center;
}
.cid-rKZH9uHPpV .mbr-section-title,
.cid-rKZH9uHPpV .underline {
  color: #365c9a;
}
.cid-rKZH9uHPpV .mbr-text {
  color: #92b5d5;
}
.cid-rKZH9wGChB {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rKZH9wGChB .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rKZH9wGChB .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL0JUzSECd {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL0JUzSECd .mbr-text {
  text-align: left;
}
.cid-rL0JUACscn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL0JUACscn .mbr-text {
  color: #365c9a;
}
.cid-rL0JUAW1Nl {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rL0JUAW1Nl .container-fluid {
  padding: 0 3rem;
}
.cid-rL0JUAW1Nl .image-block {
  margin: auto;
}
.cid-rL0JUAW1Nl .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL0JUAW1Nl .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL0JUAW1Nl .image-block {
    width: 100% !important;
  }
}
.cid-rL0JUBnfcw {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL0JUBnfcw .container-fluid {
  padding: 0 3rem;
}
.cid-rL0JUBnfcw .mbr-section-subtitle {
  color: #465052;
}
.cid-rL0JUBnfcw .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL0JUBnfcw .table-wrapper {
  margin: 0 auto;
}
.cid-rL0JUBnfcw table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL0JUBnfcw table thead tr {
  border: none !important;
}
.cid-rL0JUBnfcw table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL0JUBnfcw table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rL0JUBnfcw table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL0JUBnfcw table.table {
  background: #f9f9f9;
}
.cid-rL0JUBnfcw tr:hover {
  background-color: #efefef !important;
}
.cid-rL0JUBnfcw .head-item:after,
.cid-rL0JUBnfcw .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL0JUBnfcw table th,
  .cid-rL0JUBnfcw table td {
    padding: .75rem;
  }
}
.cid-rL0JUBnfcw .body-item {
  text-align: left;
}
.cid-rL0JUBnfcw .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL0JUBnfcw .mbr-section-title,
.cid-rL0JUBnfcw .underline {
  color: #365c9a;
}
.cid-rL0JUBnfcw .mbr-text {
  color: #92b5d5;
}
.cid-rL0JUCQ4SH {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL0JUCQ4SH .container-fluid {
  padding: 0 3rem;
}
.cid-rL0JUCQ4SH .mbr-section-subtitle {
  color: #465052;
}
.cid-rL0JUCQ4SH .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL0JUCQ4SH .table-wrapper {
  margin: 0 auto;
}
.cid-rL0JUCQ4SH table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL0JUCQ4SH table thead tr {
  border: none !important;
}
.cid-rL0JUCQ4SH table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL0JUCQ4SH table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL0JUCQ4SH table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL0JUCQ4SH table.table {
  background: #f9f9f9;
}
.cid-rL0JUCQ4SH tr:hover {
  background-color: #efefef !important;
}
.cid-rL0JUCQ4SH .head-item:after,
.cid-rL0JUCQ4SH .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL0JUCQ4SH table th,
  .cid-rL0JUCQ4SH table td {
    padding: .75rem;
  }
}
.cid-rL0JUCQ4SH .body-item {
  text-align: left;
}
.cid-rL0JUCQ4SH .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL0JUCQ4SH .mbr-section-title,
.cid-rL0JUCQ4SH .underline {
  color: #365c9a;
}
.cid-rL0JUCQ4SH .mbr-text {
  color: #92b5d5;
}
.cid-rL0JUEDmQ2 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL0JUEDmQ2 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL0JUEDmQ2 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL0N56XIgh {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL0N56XIgh .mbr-text {
  text-align: left;
}
.cid-rL0N57DSRa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL0N57DSRa .mbr-text {
  color: #365c9a;
}
.cid-rL0N589cnO {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 15px;
}
.cid-rL0N589cnO .container-fluid {
  padding: 0 3rem;
}
.cid-rL0N589cnO .image-block {
  margin: auto;
}
.cid-rL0N589cnO .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL0N589cnO .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL0N589cnO .image-block {
    width: 100% !important;
  }
}
.cid-rL0N58GHKk {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL0N58GHKk .container-fluid {
  padding: 0 3rem;
}
.cid-rL0N58GHKk .mbr-section-subtitle {
  color: #465052;
}
.cid-rL0N58GHKk .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL0N58GHKk .table-wrapper {
  margin: 0 auto;
}
.cid-rL0N58GHKk table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL0N58GHKk table thead tr {
  border: none !important;
}
.cid-rL0N58GHKk table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL0N58GHKk table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rL0N58GHKk table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL0N58GHKk table.table {
  background: #f9f9f9;
}
.cid-rL0N58GHKk tr:hover {
  background-color: #efefef !important;
}
.cid-rL0N58GHKk .head-item:after,
.cid-rL0N58GHKk .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL0N58GHKk table th,
  .cid-rL0N58GHKk table td {
    padding: .75rem;
  }
}
.cid-rL0N58GHKk .body-item {
  text-align: left;
}
.cid-rL0N58GHKk .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL0N58GHKk .mbr-section-title,
.cid-rL0N58GHKk .underline {
  color: #365c9a;
}
.cid-rL0N58GHKk .mbr-text {
  color: #92b5d5;
}
.cid-rL0N5adSbs {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL0N5adSbs .container-fluid {
  padding: 0 3rem;
}
.cid-rL0N5adSbs .mbr-section-subtitle {
  color: #465052;
}
.cid-rL0N5adSbs .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL0N5adSbs .table-wrapper {
  margin: 0 auto;
}
.cid-rL0N5adSbs table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL0N5adSbs table thead tr {
  border: none !important;
}
.cid-rL0N5adSbs table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL0N5adSbs table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL0N5adSbs table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL0N5adSbs table.table {
  background: #f9f9f9;
}
.cid-rL0N5adSbs tr:hover {
  background-color: #efefef !important;
}
.cid-rL0N5adSbs .head-item:after,
.cid-rL0N5adSbs .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL0N5adSbs table th,
  .cid-rL0N5adSbs table td {
    padding: .75rem;
  }
}
.cid-rL0N5adSbs .body-item {
  text-align: left;
}
.cid-rL0N5adSbs .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL0N5adSbs .mbr-section-title,
.cid-rL0N5adSbs .underline {
  color: #365c9a;
}
.cid-rL0N5adSbs .mbr-text {
  color: #92b5d5;
}
.cid-rL0N5cEVv7 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL0N5cEVv7 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL0N5cEVv7 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL0ODYcwIG {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL0ODYcwIG .mbr-text {
  text-align: left;
}
.cid-rL0ODZ6svm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL0ODZ6svm .mbr-text {
  color: #365c9a;
}
.cid-rL0ODZCv2y {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rL0ODZCv2y .container-fluid {
  padding: 0 3rem;
}
.cid-rL0ODZCv2y .image-block {
  margin: auto;
}
.cid-rL0ODZCv2y .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL0ODZCv2y .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL0ODZCv2y .image-block {
    width: 100% !important;
  }
}
.cid-rL0OE06AyW {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL0OE06AyW .container-fluid {
  padding: 0 3rem;
}
.cid-rL0OE06AyW .mbr-section-subtitle {
  color: #465052;
}
.cid-rL0OE06AyW .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL0OE06AyW .table-wrapper {
  margin: 0 auto;
}
.cid-rL0OE06AyW table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL0OE06AyW table thead tr {
  border: none !important;
}
.cid-rL0OE06AyW table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL0OE06AyW table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rL0OE06AyW table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL0OE06AyW table.table {
  background: #f9f9f9;
}
.cid-rL0OE06AyW tr:hover {
  background-color: #efefef !important;
}
.cid-rL0OE06AyW .head-item:after,
.cid-rL0OE06AyW .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL0OE06AyW table th,
  .cid-rL0OE06AyW table td {
    padding: .75rem;
  }
}
.cid-rL0OE06AyW .body-item {
  text-align: left;
}
.cid-rL0OE06AyW .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL0OE06AyW .mbr-section-title,
.cid-rL0OE06AyW .underline {
  color: #365c9a;
}
.cid-rL0OE06AyW .mbr-text {
  color: #92b5d5;
}
.cid-rL0OE1GqEy {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL0OE1GqEy .container-fluid {
  padding: 0 3rem;
}
.cid-rL0OE1GqEy .mbr-section-subtitle {
  color: #465052;
}
.cid-rL0OE1GqEy .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL0OE1GqEy .table-wrapper {
  margin: 0 auto;
}
.cid-rL0OE1GqEy table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL0OE1GqEy table thead tr {
  border: none !important;
}
.cid-rL0OE1GqEy table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL0OE1GqEy table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL0OE1GqEy table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL0OE1GqEy table.table {
  background: #f9f9f9;
}
.cid-rL0OE1GqEy tr:hover {
  background-color: #efefef !important;
}
.cid-rL0OE1GqEy .head-item:after,
.cid-rL0OE1GqEy .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL0OE1GqEy table th,
  .cid-rL0OE1GqEy table td {
    padding: .75rem;
  }
}
.cid-rL0OE1GqEy .body-item {
  text-align: left;
}
.cid-rL0OE1GqEy .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL0OE1GqEy .mbr-section-title,
.cid-rL0OE1GqEy .underline {
  color: #365c9a;
}
.cid-rL0OE1GqEy .mbr-text {
  color: #92b5d5;
}
.cid-rL0OE3HYUd {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL0OE3HYUd .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL0OE3HYUd .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL0UsafmVe {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL0UsafmVe .mbr-text {
  text-align: left;
}
.cid-rL0UsbdcYf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL0UsbdcYf .mbr-text {
  color: #365c9a;
}
.cid-rL0UsbM4O0 {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rL0UsbM4O0 .container-fluid {
  padding: 0 3rem;
}
.cid-rL0UsbM4O0 .image-block {
  margin: auto;
}
.cid-rL0UsbM4O0 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL0UsbM4O0 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL0UsbM4O0 .image-block {
    width: 100% !important;
  }
}
.cid-rL0UsciMpK {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL0UsciMpK .container-fluid {
  padding: 0 3rem;
}
.cid-rL0UsciMpK .mbr-section-subtitle {
  color: #465052;
}
.cid-rL0UsciMpK .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL0UsciMpK .table-wrapper {
  margin: 0 auto;
}
.cid-rL0UsciMpK table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL0UsciMpK table thead tr {
  border: none !important;
}
.cid-rL0UsciMpK table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL0UsciMpK table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rL0UsciMpK table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL0UsciMpK table.table {
  background: #f9f9f9;
}
.cid-rL0UsciMpK tr:hover {
  background-color: #efefef !important;
}
.cid-rL0UsciMpK .head-item:after,
.cid-rL0UsciMpK .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL0UsciMpK table th,
  .cid-rL0UsciMpK table td {
    padding: .75rem;
  }
}
.cid-rL0UsciMpK .body-item {
  text-align: left;
}
.cid-rL0UsciMpK .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL0UsciMpK .mbr-section-title,
.cid-rL0UsciMpK .underline {
  color: #365c9a;
}
.cid-rL0UsciMpK .mbr-text {
  color: #92b5d5;
}
.cid-rL0UsdNOan {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL0UsdNOan .container-fluid {
  padding: 0 3rem;
}
.cid-rL0UsdNOan .mbr-section-subtitle {
  color: #465052;
}
.cid-rL0UsdNOan .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL0UsdNOan .table-wrapper {
  margin: 0 auto;
}
.cid-rL0UsdNOan table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL0UsdNOan table thead tr {
  border: none !important;
}
.cid-rL0UsdNOan table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL0UsdNOan table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL0UsdNOan table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL0UsdNOan table.table {
  background: #f9f9f9;
}
.cid-rL0UsdNOan tr:hover {
  background-color: #efefef !important;
}
.cid-rL0UsdNOan .head-item:after,
.cid-rL0UsdNOan .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL0UsdNOan table th,
  .cid-rL0UsdNOan table td {
    padding: .75rem;
  }
}
.cid-rL0UsdNOan .body-item {
  text-align: left;
}
.cid-rL0UsdNOan .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL0UsdNOan .mbr-section-title,
.cid-rL0UsdNOan .underline {
  color: #365c9a;
}
.cid-rL0UsdNOan .mbr-text {
  color: #92b5d5;
}
.cid-rL0UsfEmoX {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL0UsfEmoX .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL0UsfEmoX .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL0X5Kp4AW {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL0X5Kp4AW .mbr-text {
  text-align: left;
}
.cid-rL0X5LDKWD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL0X5LDKWD .mbr-text {
  color: #365c9a;
}
.cid-rL0X5MjYHb {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rL0X5MjYHb .container-fluid {
  padding: 0 3rem;
}
.cid-rL0X5MjYHb .image-block {
  margin: auto;
}
.cid-rL0X5MjYHb .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL0X5MjYHb .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL0X5MjYHb .image-block {
    width: 100% !important;
  }
}
.cid-rL0X5N6aNQ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL0X5N6aNQ .container-fluid {
  padding: 0 3rem;
}
.cid-rL0X5N6aNQ .mbr-section-subtitle {
  color: #465052;
}
.cid-rL0X5N6aNQ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL0X5N6aNQ .table-wrapper {
  margin: 0 auto;
}
.cid-rL0X5N6aNQ table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL0X5N6aNQ table thead tr {
  border: none !important;
}
.cid-rL0X5N6aNQ table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL0X5N6aNQ table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rL0X5N6aNQ table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL0X5N6aNQ table.table {
  background: #f9f9f9;
}
.cid-rL0X5N6aNQ tr:hover {
  background-color: #efefef !important;
}
.cid-rL0X5N6aNQ .head-item:after,
.cid-rL0X5N6aNQ .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL0X5N6aNQ table th,
  .cid-rL0X5N6aNQ table td {
    padding: .75rem;
  }
}
.cid-rL0X5N6aNQ .body-item {
  text-align: left;
}
.cid-rL0X5N6aNQ .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL0X5N6aNQ .mbr-section-title,
.cid-rL0X5N6aNQ .underline {
  color: #365c9a;
}
.cid-rL0X5N6aNQ .mbr-text {
  color: #92b5d5;
}
.cid-rL0X5P7yoA {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL0X5P7yoA .container-fluid {
  padding: 0 3rem;
}
.cid-rL0X5P7yoA .mbr-section-subtitle {
  color: #465052;
}
.cid-rL0X5P7yoA .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL0X5P7yoA .table-wrapper {
  margin: 0 auto;
}
.cid-rL0X5P7yoA table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL0X5P7yoA table thead tr {
  border: none !important;
}
.cid-rL0X5P7yoA table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL0X5P7yoA table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL0X5P7yoA table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL0X5P7yoA table.table {
  background: #f9f9f9;
}
.cid-rL0X5P7yoA tr:hover {
  background-color: #efefef !important;
}
.cid-rL0X5P7yoA .head-item:after,
.cid-rL0X5P7yoA .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL0X5P7yoA table th,
  .cid-rL0X5P7yoA table td {
    padding: .75rem;
  }
}
.cid-rL0X5P7yoA .body-item {
  text-align: left;
}
.cid-rL0X5P7yoA .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL0X5P7yoA .mbr-section-title,
.cid-rL0X5P7yoA .underline {
  color: #365c9a;
}
.cid-rL0X5P7yoA .mbr-text {
  color: #92b5d5;
}
.cid-rL0X5RhYeN {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL0X5RhYeN .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL0X5RhYeN .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL11MG1r6y {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL11MG1r6y .mbr-text {
  text-align: left;
}
.cid-rL11MGHKYd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL11MGHKYd .mbr-text {
  color: #365c9a;
}
.cid-rL11MHbha1 {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rL11MHbha1 .container-fluid {
  padding: 0 3rem;
}
.cid-rL11MHbha1 .image-block {
  margin: auto;
}
.cid-rL11MHbha1 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL11MHbha1 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL11MHbha1 .image-block {
    width: 100% !important;
  }
}
.cid-rL11MHFDpq {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL11MHFDpq .container-fluid {
  padding: 0 3rem;
}
.cid-rL11MHFDpq .mbr-section-subtitle {
  color: #465052;
}
.cid-rL11MHFDpq .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL11MHFDpq .table-wrapper {
  margin: 0 auto;
}
.cid-rL11MHFDpq table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL11MHFDpq table thead tr {
  border: none !important;
}
.cid-rL11MHFDpq table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL11MHFDpq table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rL11MHFDpq table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL11MHFDpq table.table {
  background: #f9f9f9;
}
.cid-rL11MHFDpq tr:hover {
  background-color: #efefef !important;
}
.cid-rL11MHFDpq .head-item:after,
.cid-rL11MHFDpq .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL11MHFDpq table th,
  .cid-rL11MHFDpq table td {
    padding: .75rem;
  }
}
.cid-rL11MHFDpq .body-item {
  text-align: left;
}
.cid-rL11MHFDpq .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL11MHFDpq .mbr-section-title,
.cid-rL11MHFDpq .underline {
  color: #365c9a;
}
.cid-rL11MHFDpq .mbr-text {
  color: #92b5d5;
}
.cid-rL11MJYkk9 {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL11MJYkk9 .container-fluid {
  padding: 0 3rem;
}
.cid-rL11MJYkk9 .mbr-section-subtitle {
  color: #465052;
}
.cid-rL11MJYkk9 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL11MJYkk9 .table-wrapper {
  margin: 0 auto;
}
.cid-rL11MJYkk9 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL11MJYkk9 table thead tr {
  border: none !important;
}
.cid-rL11MJYkk9 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL11MJYkk9 table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL11MJYkk9 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL11MJYkk9 table.table {
  background: #f9f9f9;
}
.cid-rL11MJYkk9 tr:hover {
  background-color: #efefef !important;
}
.cid-rL11MJYkk9 .head-item:after,
.cid-rL11MJYkk9 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL11MJYkk9 table th,
  .cid-rL11MJYkk9 table td {
    padding: .75rem;
  }
}
.cid-rL11MJYkk9 .body-item {
  text-align: left;
}
.cid-rL11MJYkk9 .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL11MJYkk9 .mbr-section-title,
.cid-rL11MJYkk9 .underline {
  color: #365c9a;
}
.cid-rL11MJYkk9 .mbr-text {
  color: #92b5d5;
}
.cid-rL11MMLZnc {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL11MMLZnc .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL11MMLZnc .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL13aiaXmk {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL13aiaXmk .mbr-text {
  text-align: left;
}
.cid-rL13ajdAxH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL13ajdAxH .mbr-text {
  color: #365c9a;
}
.cid-rL13ajOwO2 {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rL13ajOwO2 .container-fluid {
  padding: 0 3rem;
}
.cid-rL13ajOwO2 .image-block {
  margin: auto;
}
.cid-rL13ajOwO2 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL13ajOwO2 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL13ajOwO2 .image-block {
    width: 100% !important;
  }
}
.cid-rL13akywkT {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL13akywkT .container-fluid {
  padding: 0 3rem;
}
.cid-rL13akywkT .mbr-section-subtitle {
  color: #465052;
}
.cid-rL13akywkT .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL13akywkT .table-wrapper {
  margin: 0 auto;
}
.cid-rL13akywkT table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL13akywkT table thead tr {
  border: none !important;
}
.cid-rL13akywkT table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL13akywkT table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rL13akywkT table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL13akywkT table.table {
  background: #f9f9f9;
}
.cid-rL13akywkT tr:hover {
  background-color: #efefef !important;
}
.cid-rL13akywkT .head-item:after,
.cid-rL13akywkT .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL13akywkT table th,
  .cid-rL13akywkT table td {
    padding: .75rem;
  }
}
.cid-rL13akywkT .body-item {
  text-align: left;
}
.cid-rL13akywkT .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL13akywkT .mbr-section-title,
.cid-rL13akywkT .underline {
  color: #365c9a;
}
.cid-rL13akywkT .mbr-text {
  color: #92b5d5;
}
.cid-rL13aou4Ce {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL13aou4Ce .container-fluid {
  padding: 0 3rem;
}
.cid-rL13aou4Ce .mbr-section-subtitle {
  color: #465052;
}
.cid-rL13aou4Ce .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL13aou4Ce .table-wrapper {
  margin: 0 auto;
}
.cid-rL13aou4Ce table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL13aou4Ce table thead tr {
  border: none !important;
}
.cid-rL13aou4Ce table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL13aou4Ce table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL13aou4Ce table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL13aou4Ce table.table {
  background: #f9f9f9;
}
.cid-rL13aou4Ce tr:hover {
  background-color: #efefef !important;
}
.cid-rL13aou4Ce .head-item:after,
.cid-rL13aou4Ce .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL13aou4Ce table th,
  .cid-rL13aou4Ce table td {
    padding: .75rem;
  }
}
.cid-rL13aou4Ce .body-item {
  text-align: left;
}
.cid-rL13aou4Ce .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL13aou4Ce .mbr-section-title,
.cid-rL13aou4Ce .underline {
  color: #365c9a;
}
.cid-rL13aou4Ce .mbr-text {
  color: #92b5d5;
}
.cid-rL13auoJuh {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL13auoJuh .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL13auoJuh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL14YEpX1k {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL14YEpX1k .mbr-text {
  text-align: left;
}
.cid-rL14YFJw1X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL14YFJw1X .mbr-text {
  color: #365c9a;
}
.cid-rL14YGegMX {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rL14YGegMX .container-fluid {
  padding: 0 3rem;
}
.cid-rL14YGegMX .image-block {
  margin: auto;
}
.cid-rL14YGegMX .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL14YGegMX .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL14YGegMX .image-block {
    width: 100% !important;
  }
}
.cid-rL14YGQE4H {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL14YGQE4H .container-fluid {
  padding: 0 3rem;
}
.cid-rL14YGQE4H .mbr-section-subtitle {
  color: #465052;
}
.cid-rL14YGQE4H .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL14YGQE4H .table-wrapper {
  margin: 0 auto;
}
.cid-rL14YGQE4H table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL14YGQE4H table thead tr {
  border: none !important;
}
.cid-rL14YGQE4H table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL14YGQE4H table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rL14YGQE4H table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL14YGQE4H table.table {
  background: #f9f9f9;
}
.cid-rL14YGQE4H tr:hover {
  background-color: #efefef !important;
}
.cid-rL14YGQE4H .head-item:after,
.cid-rL14YGQE4H .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL14YGQE4H table th,
  .cid-rL14YGQE4H table td {
    padding: .75rem;
  }
}
.cid-rL14YGQE4H .body-item {
  text-align: left;
}
.cid-rL14YGQE4H .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL14YGQE4H .mbr-section-title,
.cid-rL14YGQE4H .underline {
  color: #365c9a;
}
.cid-rL14YGQE4H .mbr-text {
  color: #92b5d5;
}
.cid-rL14YIpSpJ {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL14YIpSpJ .container-fluid {
  padding: 0 3rem;
}
.cid-rL14YIpSpJ .mbr-section-subtitle {
  color: #465052;
}
.cid-rL14YIpSpJ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL14YIpSpJ .table-wrapper {
  margin: 0 auto;
}
.cid-rL14YIpSpJ table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL14YIpSpJ table thead tr {
  border: none !important;
}
.cid-rL14YIpSpJ table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL14YIpSpJ table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL14YIpSpJ table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL14YIpSpJ table.table {
  background: #f9f9f9;
}
.cid-rL14YIpSpJ tr:hover {
  background-color: #efefef !important;
}
.cid-rL14YIpSpJ .head-item:after,
.cid-rL14YIpSpJ .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL14YIpSpJ table th,
  .cid-rL14YIpSpJ table td {
    padding: .75rem;
  }
}
.cid-rL14YIpSpJ .body-item {
  text-align: left;
}
.cid-rL14YIpSpJ .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL14YIpSpJ .mbr-section-title,
.cid-rL14YIpSpJ .underline {
  color: #365c9a;
}
.cid-rL14YIpSpJ .mbr-text {
  color: #92b5d5;
}
.cid-rL14YKm988 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL14YKm988 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL14YKm988 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL166KzA3F {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL166KzA3F .mbr-text {
  text-align: left;
}
.cid-rL166LANCm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL166LANCm .mbr-text {
  color: #365c9a;
}
.cid-rL166M7KT7 {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rL166M7KT7 .container-fluid {
  padding: 0 3rem;
}
.cid-rL166M7KT7 .image-block {
  margin: auto;
}
.cid-rL166M7KT7 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL166M7KT7 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL166M7KT7 .image-block {
    width: 100% !important;
  }
}
.cid-rL166MGl1B {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL166MGl1B .container-fluid {
  padding: 0 3rem;
}
.cid-rL166MGl1B .mbr-section-subtitle {
  color: #465052;
}
.cid-rL166MGl1B .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL166MGl1B .table-wrapper {
  margin: 0 auto;
}
.cid-rL166MGl1B table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL166MGl1B table thead tr {
  border: none !important;
}
.cid-rL166MGl1B table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL166MGl1B table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rL166MGl1B table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL166MGl1B table.table {
  background: #f9f9f9;
}
.cid-rL166MGl1B tr:hover {
  background-color: #efefef !important;
}
.cid-rL166MGl1B .head-item:after,
.cid-rL166MGl1B .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL166MGl1B table th,
  .cid-rL166MGl1B table td {
    padding: .75rem;
  }
}
.cid-rL166MGl1B .body-item {
  text-align: left;
}
.cid-rL166MGl1B .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL166MGl1B .mbr-section-title,
.cid-rL166MGl1B .underline {
  color: #365c9a;
}
.cid-rL166MGl1B .mbr-text {
  color: #92b5d5;
}
.cid-rL166O5i7B {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL166O5i7B .container-fluid {
  padding: 0 3rem;
}
.cid-rL166O5i7B .mbr-section-subtitle {
  color: #465052;
}
.cid-rL166O5i7B .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL166O5i7B .table-wrapper {
  margin: 0 auto;
}
.cid-rL166O5i7B table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL166O5i7B table thead tr {
  border: none !important;
}
.cid-rL166O5i7B table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL166O5i7B table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL166O5i7B table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL166O5i7B table.table {
  background: #f9f9f9;
}
.cid-rL166O5i7B tr:hover {
  background-color: #efefef !important;
}
.cid-rL166O5i7B .head-item:after,
.cid-rL166O5i7B .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL166O5i7B table th,
  .cid-rL166O5i7B table td {
    padding: .75rem;
  }
}
.cid-rL166O5i7B .body-item {
  text-align: left;
}
.cid-rL166O5i7B .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL166O5i7B .mbr-section-title,
.cid-rL166O5i7B .underline {
  color: #365c9a;
}
.cid-rL166O5i7B .mbr-text {
  color: #92b5d5;
}
.cid-rL166Q37AS {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL166Q37AS .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL166Q37AS .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL1aAf3gMY {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL1aAf3gMY .mbr-text {
  text-align: left;
}
.cid-rL1aAfJUyH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL1aAfJUyH .mbr-text {
  color: #365c9a;
}
.cid-rL1aAgcsuY {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rL1aAgcsuY .container-fluid {
  padding: 0 3rem;
}
.cid-rL1aAgcsuY .image-block {
  margin: auto;
}
.cid-rL1aAgcsuY .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL1aAgcsuY .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL1aAgcsuY .image-block {
    width: 100% !important;
  }
}
.cid-rL1aAgNW0i {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL1aAgNW0i .container-fluid {
  padding: 0 3rem;
}
.cid-rL1aAgNW0i .mbr-section-subtitle {
  color: #465052;
}
.cid-rL1aAgNW0i .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL1aAgNW0i .table-wrapper {
  margin: 0 auto;
}
.cid-rL1aAgNW0i table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL1aAgNW0i table thead tr {
  border: none !important;
}
.cid-rL1aAgNW0i table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL1aAgNW0i table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rL1aAgNW0i table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL1aAgNW0i table.table {
  background: #f9f9f9;
}
.cid-rL1aAgNW0i tr:hover {
  background-color: #efefef !important;
}
.cid-rL1aAgNW0i .head-item:after,
.cid-rL1aAgNW0i .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL1aAgNW0i table th,
  .cid-rL1aAgNW0i table td {
    padding: .75rem;
  }
}
.cid-rL1aAgNW0i .body-item {
  text-align: left;
}
.cid-rL1aAgNW0i .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL1aAgNW0i .mbr-section-title,
.cid-rL1aAgNW0i .underline {
  color: #365c9a;
}
.cid-rL1aAgNW0i .mbr-text {
  color: #92b5d5;
}
.cid-rL1aAkenZs {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL1aAkenZs .container-fluid {
  padding: 0 3rem;
}
.cid-rL1aAkenZs .mbr-section-subtitle {
  color: #465052;
}
.cid-rL1aAkenZs .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL1aAkenZs .table-wrapper {
  margin: 0 auto;
}
.cid-rL1aAkenZs table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL1aAkenZs table thead tr {
  border: none !important;
}
.cid-rL1aAkenZs table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL1aAkenZs table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL1aAkenZs table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL1aAkenZs table.table {
  background: #f9f9f9;
}
.cid-rL1aAkenZs tr:hover {
  background-color: #efefef !important;
}
.cid-rL1aAkenZs .head-item:after,
.cid-rL1aAkenZs .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL1aAkenZs table th,
  .cid-rL1aAkenZs table td {
    padding: .75rem;
  }
}
.cid-rL1aAkenZs .body-item {
  text-align: left;
}
.cid-rL1aAkenZs .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL1aAkenZs .mbr-section-title,
.cid-rL1aAkenZs .underline {
  color: #365c9a;
}
.cid-rL1aAkenZs .mbr-text {
  color: #92b5d5;
}
.cid-rL1aAq3Ppj {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL1aAq3Ppj .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL1aAq3Ppj .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL1cwLabuC {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL1cwLabuC .mbr-text {
  text-align: left;
}
.cid-rL1cwMj8Em {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL1cwMj8Em .mbr-text {
  color: #365c9a;
}
.cid-rL1cwMThKL {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rL1cwMThKL .container-fluid {
  padding: 0 3rem;
}
.cid-rL1cwMThKL .image-block {
  margin: auto;
}
.cid-rL1cwMThKL .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL1cwMThKL .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL1cwMThKL .image-block {
    width: 100% !important;
  }
}
.cid-rL1cwNTC3L {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL1cwNTC3L .container-fluid {
  padding: 0 3rem;
}
.cid-rL1cwNTC3L .mbr-section-subtitle {
  color: #465052;
}
.cid-rL1cwNTC3L .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL1cwNTC3L .table-wrapper {
  margin: 0 auto;
}
.cid-rL1cwNTC3L table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL1cwNTC3L table thead tr {
  border: none !important;
}
.cid-rL1cwNTC3L table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL1cwNTC3L table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rL1cwNTC3L table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL1cwNTC3L table.table {
  background: #f9f9f9;
}
.cid-rL1cwNTC3L tr:hover {
  background-color: #efefef !important;
}
.cid-rL1cwNTC3L .head-item:after,
.cid-rL1cwNTC3L .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL1cwNTC3L table th,
  .cid-rL1cwNTC3L table td {
    padding: .75rem;
  }
}
.cid-rL1cwNTC3L .body-item {
  text-align: left;
}
.cid-rL1cwNTC3L .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL1cwNTC3L .mbr-section-title,
.cid-rL1cwNTC3L .underline {
  color: #365c9a;
}
.cid-rL1cwNTC3L .mbr-text {
  color: #92b5d5;
}
.cid-rL1cwPQZZn {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL1cwPQZZn .container-fluid {
  padding: 0 3rem;
}
.cid-rL1cwPQZZn .mbr-section-subtitle {
  color: #465052;
}
.cid-rL1cwPQZZn .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL1cwPQZZn .table-wrapper {
  margin: 0 auto;
}
.cid-rL1cwPQZZn table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL1cwPQZZn table thead tr {
  border: none !important;
}
.cid-rL1cwPQZZn table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL1cwPQZZn table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL1cwPQZZn table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL1cwPQZZn table.table {
  background: #f9f9f9;
}
.cid-rL1cwPQZZn tr:hover {
  background-color: #efefef !important;
}
.cid-rL1cwPQZZn .head-item:after,
.cid-rL1cwPQZZn .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL1cwPQZZn table th,
  .cid-rL1cwPQZZn table td {
    padding: .75rem;
  }
}
.cid-rL1cwPQZZn .body-item {
  text-align: left;
}
.cid-rL1cwPQZZn .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL1cwPQZZn .mbr-section-title,
.cid-rL1cwPQZZn .underline {
  color: #365c9a;
}
.cid-rL1cwPQZZn .mbr-text {
  color: #92b5d5;
}
.cid-rL1cwSb1oy {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL1cwSb1oy .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL1cwSb1oy .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL1czLrI05 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL1czLrI05 .mbr-text {
  text-align: left;
}
.cid-rL1czMzvoC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL1czMzvoC .mbr-text {
  color: #365c9a;
}
.cid-rL1czNkVtv {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rL1czNkVtv .container-fluid {
  padding: 0 3rem;
}
.cid-rL1czNkVtv .image-block {
  margin: auto;
}
.cid-rL1czNkVtv .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL1czNkVtv .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL1czNkVtv .image-block {
    width: 100% !important;
  }
}
.cid-rL6VKScyz2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL6VKScyz2 .mbr-text {
  color: #365c9a;
  text-align: center;
}
.cid-rL1czQlifI {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL1czQlifI .container-fluid {
  padding: 0 3rem;
}
.cid-rL1czQlifI .mbr-section-subtitle {
  color: #465052;
}
.cid-rL1czQlifI .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL1czQlifI .table-wrapper {
  margin: 0 auto;
}
.cid-rL1czQlifI table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL1czQlifI table thead tr {
  border: none !important;
}
.cid-rL1czQlifI table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL1czQlifI table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL1czQlifI table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL1czQlifI table.table {
  background: #f9f9f9;
}
.cid-rL1czQlifI tr:hover {
  background-color: #efefef !important;
}
.cid-rL1czQlifI .head-item:after,
.cid-rL1czQlifI .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL1czQlifI table th,
  .cid-rL1czQlifI table td {
    padding: .75rem;
  }
}
.cid-rL1czQlifI .body-item {
  text-align: left;
}
.cid-rL1czQlifI .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL1czQlifI .mbr-section-title,
.cid-rL1czQlifI .underline {
  color: #365c9a;
}
.cid-rL1czQlifI .mbr-text {
  color: #92b5d5;
}
.cid-rL1czU556L {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL1czU556L .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL1czU556L .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL1fkr1VBE {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL1fkr1VBE .mbr-text {
  text-align: left;
}
.cid-rL1fkscWbs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL1fkscWbs .mbr-text {
  color: #365c9a;
}
.cid-rL1fksXcgZ {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rL1fksXcgZ .container-fluid {
  padding: 0 3rem;
}
.cid-rL1fksXcgZ .image-block {
  margin: auto;
}
.cid-rL1fksXcgZ .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL1fksXcgZ .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL1fksXcgZ .image-block {
    width: 100% !important;
  }
}
.cid-rL1fktU6Ee {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL1fktU6Ee .container-fluid {
  padding: 0 3rem;
}
.cid-rL1fktU6Ee .mbr-section-subtitle {
  color: #465052;
}
.cid-rL1fktU6Ee .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL1fktU6Ee .table-wrapper {
  margin: 0 auto;
}
.cid-rL1fktU6Ee table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL1fktU6Ee table thead tr {
  border: none !important;
}
.cid-rL1fktU6Ee table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL1fktU6Ee table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rL1fktU6Ee table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL1fktU6Ee table.table {
  background: #f9f9f9;
}
.cid-rL1fktU6Ee tr:hover {
  background-color: #efefef !important;
}
.cid-rL1fktU6Ee .head-item:after,
.cid-rL1fktU6Ee .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL1fktU6Ee table th,
  .cid-rL1fktU6Ee table td {
    padding: .75rem;
  }
}
.cid-rL1fktU6Ee .body-item {
  text-align: left;
}
.cid-rL1fktU6Ee .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL1fktU6Ee .mbr-section-title,
.cid-rL1fktU6Ee .underline {
  color: #365c9a;
}
.cid-rL1fktU6Ee .mbr-text {
  color: #92b5d5;
}
.cid-rL1fkvXczW {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL1fkvXczW .container-fluid {
  padding: 0 3rem;
}
.cid-rL1fkvXczW .mbr-section-subtitle {
  color: #465052;
}
.cid-rL1fkvXczW .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL1fkvXczW .table-wrapper {
  margin: 0 auto;
}
.cid-rL1fkvXczW table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL1fkvXczW table thead tr {
  border: none !important;
}
.cid-rL1fkvXczW table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL1fkvXczW table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL1fkvXczW table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL1fkvXczW table.table {
  background: #f9f9f9;
}
.cid-rL1fkvXczW tr:hover {
  background-color: #efefef !important;
}
.cid-rL1fkvXczW .head-item:after,
.cid-rL1fkvXczW .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL1fkvXczW table th,
  .cid-rL1fkvXczW table td {
    padding: .75rem;
  }
}
.cid-rL1fkvXczW .body-item {
  text-align: left;
}
.cid-rL1fkvXczW .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL1fkvXczW .mbr-section-title,
.cid-rL1fkvXczW .underline {
  color: #365c9a;
}
.cid-rL1fkvXczW .mbr-text {
  color: #92b5d5;
}
.cid-rL1fkyvUP2 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL1fkyvUP2 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL1fkyvUP2 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL6YiTaFd7 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL6YiTaFd7 .mbr-text {
  text-align: left;
}
.cid-rL6YiU5KWb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL6YiU5KWb .mbr-text {
  color: #365c9a;
}
.cid-rL6YiUAvTK {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rL6YiUAvTK .container-fluid {
  padding: 0 3rem;
}
.cid-rL6YiUAvTK .image-block {
  margin: auto;
}
.cid-rL6YiUAvTK .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL6YiUAvTK .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL6YiUAvTK .image-block {
    width: 100% !important;
  }
}
.cid-rL6YiVjtAH {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL6YiVjtAH .container-fluid {
  padding: 0 3rem;
}
.cid-rL6YiVjtAH .mbr-section-subtitle {
  color: #465052;
}
.cid-rL6YiVjtAH .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL6YiVjtAH .table-wrapper {
  margin: 0 auto;
}
.cid-rL6YiVjtAH table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL6YiVjtAH table thead tr {
  border: none !important;
}
.cid-rL6YiVjtAH table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL6YiVjtAH table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rL6YiVjtAH table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL6YiVjtAH table.table {
  background: #f9f9f9;
}
.cid-rL6YiVjtAH tr:hover {
  background-color: #efefef !important;
}
.cid-rL6YiVjtAH .head-item:after,
.cid-rL6YiVjtAH .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL6YiVjtAH table th,
  .cid-rL6YiVjtAH table td {
    padding: .75rem;
  }
}
.cid-rL6YiVjtAH .body-item {
  text-align: left;
}
.cid-rL6YiVjtAH .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL6YiVjtAH .mbr-section-title,
.cid-rL6YiVjtAH .underline {
  color: #365c9a;
}
.cid-rL6YiVjtAH .mbr-text {
  color: #92b5d5;
}
.cid-rL6YiXbxZ4 {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL6YiXbxZ4 .container-fluid {
  padding: 0 3rem;
}
.cid-rL6YiXbxZ4 .mbr-section-subtitle {
  color: #465052;
}
.cid-rL6YiXbxZ4 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL6YiXbxZ4 .table-wrapper {
  margin: 0 auto;
}
.cid-rL6YiXbxZ4 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL6YiXbxZ4 table thead tr {
  border: none !important;
}
.cid-rL6YiXbxZ4 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL6YiXbxZ4 table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL6YiXbxZ4 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL6YiXbxZ4 table.table {
  background: #f9f9f9;
}
.cid-rL6YiXbxZ4 tr:hover {
  background-color: #efefef !important;
}
.cid-rL6YiXbxZ4 .head-item:after,
.cid-rL6YiXbxZ4 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL6YiXbxZ4 table th,
  .cid-rL6YiXbxZ4 table td {
    padding: .75rem;
  }
}
.cid-rL6YiXbxZ4 .body-item {
  text-align: left;
}
.cid-rL6YiXbxZ4 .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL6YiXbxZ4 .mbr-section-title,
.cid-rL6YiXbxZ4 .underline {
  color: #365c9a;
}
.cid-rL6YiXbxZ4 .mbr-text {
  color: #92b5d5;
}
.cid-rL6YiZXyXW {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL6YiZXyXW .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL6YiZXyXW .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL7120wOBg {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL7120wOBg .mbr-text {
  text-align: left;
}
.cid-rL7121q81v {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL7121q81v .mbr-text {
  color: #365c9a;
}
.cid-rL7121VIfG {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rL7121VIfG .container-fluid {
  padding: 0 3rem;
}
.cid-rL7121VIfG .image-block {
  margin: auto;
}
.cid-rL7121VIfG .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL7121VIfG .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL7121VIfG .image-block {
    width: 100% !important;
  }
}
.cid-rL7122JcQm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL7122JcQm .mbr-text {
  color: #365c9a;
  text-align: center;
}
.cid-rL7123uJhj {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL7123uJhj .container-fluid {
  padding: 0 3rem;
}
.cid-rL7123uJhj .mbr-section-subtitle {
  color: #465052;
}
.cid-rL7123uJhj .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL7123uJhj .table-wrapper {
  margin: 0 auto;
}
.cid-rL7123uJhj table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL7123uJhj table thead tr {
  border: none !important;
}
.cid-rL7123uJhj table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL7123uJhj table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL7123uJhj table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL7123uJhj table.table {
  background: #f9f9f9;
}
.cid-rL7123uJhj tr:hover {
  background-color: #efefef !important;
}
.cid-rL7123uJhj .head-item:after,
.cid-rL7123uJhj .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL7123uJhj table th,
  .cid-rL7123uJhj table td {
    padding: .75rem;
  }
}
.cid-rL7123uJhj .body-item {
  text-align: left;
}
.cid-rL7123uJhj .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL7123uJhj .mbr-section-title,
.cid-rL7123uJhj .underline {
  color: #365c9a;
}
.cid-rL7123uJhj .mbr-text {
  color: #92b5d5;
}
.cid-rL7129OJ8z {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL7129OJ8z .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL7129OJ8z .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rLcpmZxp5I {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rLcpmZxp5I .mbr-text {
  text-align: left;
}
.cid-rLcpn11SbD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rLcpn11SbD .mbr-text {
  color: #365c9a;
}
.cid-rLcpn1BwtF {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rLcpn1BwtF .container-fluid {
  padding: 0 3rem;
}
.cid-rLcpn1BwtF .image-block {
  margin: auto;
}
.cid-rLcpn1BwtF .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rLcpn1BwtF .container-fluid {
    padding: 0 1rem;
  }
  .cid-rLcpn1BwtF .image-block {
    width: 100% !important;
  }
}
.cid-rLcpn2f9he {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rLcpn2f9he .mbr-text {
  color: #365c9a;
  text-align: center;
}
.cid-rLcpn2MV7z {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rLcpn2MV7z .container-fluid {
  padding: 0 3rem;
}
.cid-rLcpn2MV7z .mbr-section-subtitle {
  color: #465052;
}
.cid-rLcpn2MV7z .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rLcpn2MV7z .table-wrapper {
  margin: 0 auto;
}
.cid-rLcpn2MV7z table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rLcpn2MV7z table thead tr {
  border: none !important;
}
.cid-rLcpn2MV7z table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rLcpn2MV7z table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rLcpn2MV7z table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rLcpn2MV7z table.table {
  background: #f9f9f9;
}
.cid-rLcpn2MV7z tr:hover {
  background-color: #efefef !important;
}
.cid-rLcpn2MV7z .head-item:after,
.cid-rLcpn2MV7z .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rLcpn2MV7z table th,
  .cid-rLcpn2MV7z table td {
    padding: .75rem;
  }
}
.cid-rLcpn2MV7z .body-item {
  text-align: left;
}
.cid-rLcpn2MV7z .head-item {
  color: #000000;
  text-align: center;
}
.cid-rLcpn2MV7z .mbr-section-title,
.cid-rLcpn2MV7z .underline {
  color: #365c9a;
}
.cid-rLcpn2MV7z .mbr-text {
  color: #92b5d5;
}
.cid-rLcpn58OVr {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rLcpn58OVr .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLcpn58OVr .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rLcr3yR5s0 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rLcr3yR5s0 .mbr-text {
  text-align: left;
}
.cid-rLcr3zS7Wa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rLcr3zS7Wa .mbr-text {
  color: #365c9a;
}
.cid-rLcr3AwW4T {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 15px;
}
.cid-rLcr3AwW4T .container-fluid {
  padding: 0 3rem;
}
.cid-rLcr3AwW4T .image-block {
  margin: auto;
}
.cid-rLcr3AwW4T .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rLcr3AwW4T .container-fluid {
    padding: 0 1rem;
  }
  .cid-rLcr3AwW4T .image-block {
    width: 100% !important;
  }
}
.cid-rLcr3BpnbC {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rLcr3BpnbC .container-fluid {
  padding: 0 3rem;
}
.cid-rLcr3BpnbC .mbr-section-subtitle {
  color: #465052;
}
.cid-rLcr3BpnbC .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rLcr3BpnbC .table-wrapper {
  margin: 0 auto;
}
.cid-rLcr3BpnbC table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rLcr3BpnbC table thead tr {
  border: none !important;
}
.cid-rLcr3BpnbC table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rLcr3BpnbC table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rLcr3BpnbC table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rLcr3BpnbC table.table {
  background: #f9f9f9;
}
.cid-rLcr3BpnbC tr:hover {
  background-color: #efefef !important;
}
.cid-rLcr3BpnbC .head-item:after,
.cid-rLcr3BpnbC .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rLcr3BpnbC table th,
  .cid-rLcr3BpnbC table td {
    padding: .75rem;
  }
}
.cid-rLcr3BpnbC .body-item {
  text-align: left;
}
.cid-rLcr3BpnbC .head-item {
  color: #000000;
  text-align: center;
}
.cid-rLcr3BpnbC .mbr-section-title,
.cid-rLcr3BpnbC .underline {
  color: #365c9a;
}
.cid-rLcr3BpnbC .mbr-text {
  color: #92b5d5;
}
.cid-rLcr3EzT1E {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rLcr3EzT1E .container-fluid {
  padding: 0 3rem;
}
.cid-rLcr3EzT1E .mbr-section-subtitle {
  color: #465052;
}
.cid-rLcr3EzT1E .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rLcr3EzT1E .table-wrapper {
  margin: 0 auto;
}
.cid-rLcr3EzT1E table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rLcr3EzT1E table thead tr {
  border: none !important;
}
.cid-rLcr3EzT1E table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rLcr3EzT1E table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rLcr3EzT1E table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rLcr3EzT1E table.table {
  background: #f9f9f9;
}
.cid-rLcr3EzT1E tr:hover {
  background-color: #efefef !important;
}
.cid-rLcr3EzT1E .head-item:after,
.cid-rLcr3EzT1E .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rLcr3EzT1E table th,
  .cid-rLcr3EzT1E table td {
    padding: .75rem;
  }
}
.cid-rLcr3EzT1E .body-item {
  text-align: left;
}
.cid-rLcr3EzT1E .head-item {
  color: #000000;
  text-align: center;
}
.cid-rLcr3EzT1E .mbr-section-title,
.cid-rLcr3EzT1E .underline {
  color: #365c9a;
}
.cid-rLcr3EzT1E .mbr-text {
  color: #92b5d5;
}
.cid-rLcr3J4NQw {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rLcr3J4NQw .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLcr3J4NQw .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rLiyA61rg5 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rLiyA61rg5 .mbr-text {
  text-align: left;
}
.cid-rLiyA9yoPJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rLiyA9yoPJ .mbr-text {
  color: #365c9a;
}
.cid-rLiyAaRqpm {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rLiyAaRqpm .container-fluid {
  padding: 0 3rem;
}
.cid-rLiyAaRqpm .image-block {
  margin: auto;
}
.cid-rLiyAaRqpm .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rLiyAaRqpm .container-fluid {
    padding: 0 1rem;
  }
  .cid-rLiyAaRqpm .image-block {
    width: 100% !important;
  }
}
.cid-rLiyAbWkKM {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rLiyAbWkKM .container-fluid {
  padding: 0 3rem;
}
.cid-rLiyAbWkKM .mbr-section-subtitle {
  color: #465052;
}
.cid-rLiyAbWkKM .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rLiyAbWkKM .table-wrapper {
  margin: 0 auto;
}
.cid-rLiyAbWkKM table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rLiyAbWkKM table thead tr {
  border: none !important;
}
.cid-rLiyAbWkKM table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rLiyAbWkKM table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rLiyAbWkKM table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rLiyAbWkKM table.table {
  background: #f9f9f9;
}
.cid-rLiyAbWkKM tr:hover {
  background-color: #efefef !important;
}
.cid-rLiyAbWkKM .head-item:after,
.cid-rLiyAbWkKM .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rLiyAbWkKM table th,
  .cid-rLiyAbWkKM table td {
    padding: .75rem;
  }
}
.cid-rLiyAbWkKM .body-item {
  text-align: left;
}
.cid-rLiyAbWkKM .head-item {
  color: #000000;
  text-align: center;
}
.cid-rLiyAbWkKM .mbr-section-title,
.cid-rLiyAbWkKM .underline {
  color: #365c9a;
}
.cid-rLiyAbWkKM .mbr-text {
  color: #92b5d5;
}
.cid-rLiyAf2nfm {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rLiyAf2nfm .container-fluid {
  padding: 0 3rem;
}
.cid-rLiyAf2nfm .mbr-section-subtitle {
  color: #465052;
}
.cid-rLiyAf2nfm .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rLiyAf2nfm .table-wrapper {
  margin: 0 auto;
}
.cid-rLiyAf2nfm table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rLiyAf2nfm table thead tr {
  border: none !important;
}
.cid-rLiyAf2nfm table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rLiyAf2nfm table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rLiyAf2nfm table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rLiyAf2nfm table.table {
  background: #f9f9f9;
}
.cid-rLiyAf2nfm tr:hover {
  background-color: #efefef !important;
}
.cid-rLiyAf2nfm .head-item:after,
.cid-rLiyAf2nfm .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rLiyAf2nfm table th,
  .cid-rLiyAf2nfm table td {
    padding: .75rem;
  }
}
.cid-rLiyAf2nfm .body-item {
  text-align: left;
}
.cid-rLiyAf2nfm .head-item {
  color: #000000;
  text-align: center;
}
.cid-rLiyAf2nfm .mbr-section-title,
.cid-rLiyAf2nfm .underline {
  color: #365c9a;
}
.cid-rLiyAf2nfm .mbr-text {
  color: #92b5d5;
}
.cid-rLiyAhE34y {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rLiyAhE34y .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLiyAhE34y .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rLiB0o8CJR {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rLiB0o8CJR .mbr-text {
  text-align: left;
}
.cid-rLiB0pXCfO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rLiB0pXCfO .mbr-text {
  color: #365c9a;
}
.cid-rLiB0qNnci {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rLiB0qNnci .container-fluid {
  padding: 0 3rem;
}
.cid-rLiB0qNnci .image-block {
  margin: auto;
}
.cid-rLiB0qNnci .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rLiB0qNnci .container-fluid {
    padding: 0 1rem;
  }
  .cid-rLiB0qNnci .image-block {
    width: 100% !important;
  }
}
.cid-rLiB0ruXlL {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rLiB0ruXlL .container-fluid {
  padding: 0 3rem;
}
.cid-rLiB0ruXlL .mbr-section-subtitle {
  color: #465052;
}
.cid-rLiB0ruXlL .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rLiB0ruXlL .table-wrapper {
  margin: 0 auto;
}
.cid-rLiB0ruXlL table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rLiB0ruXlL table thead tr {
  border: none !important;
}
.cid-rLiB0ruXlL table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rLiB0ruXlL table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rLiB0ruXlL table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rLiB0ruXlL table.table {
  background: #f9f9f9;
}
.cid-rLiB0ruXlL tr:hover {
  background-color: #efefef !important;
}
.cid-rLiB0ruXlL .head-item:after,
.cid-rLiB0ruXlL .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rLiB0ruXlL table th,
  .cid-rLiB0ruXlL table td {
    padding: .75rem;
  }
}
.cid-rLiB0ruXlL .body-item {
  text-align: left;
}
.cid-rLiB0ruXlL .head-item {
  color: #000000;
  text-align: center;
}
.cid-rLiB0ruXlL .mbr-section-title,
.cid-rLiB0ruXlL .underline {
  color: #365c9a;
}
.cid-rLiB0ruXlL .mbr-text {
  color: #92b5d5;
}
.cid-rLiB0ueCTV {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rLiB0ueCTV .container-fluid {
  padding: 0 3rem;
}
.cid-rLiB0ueCTV .mbr-section-subtitle {
  color: #465052;
}
.cid-rLiB0ueCTV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rLiB0ueCTV .table-wrapper {
  margin: 0 auto;
}
.cid-rLiB0ueCTV table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rLiB0ueCTV table thead tr {
  border: none !important;
}
.cid-rLiB0ueCTV table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rLiB0ueCTV table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rLiB0ueCTV table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rLiB0ueCTV table.table {
  background: #f9f9f9;
}
.cid-rLiB0ueCTV tr:hover {
  background-color: #efefef !important;
}
.cid-rLiB0ueCTV .head-item:after,
.cid-rLiB0ueCTV .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rLiB0ueCTV table th,
  .cid-rLiB0ueCTV table td {
    padding: .75rem;
  }
}
.cid-rLiB0ueCTV .body-item {
  text-align: left;
}
.cid-rLiB0ueCTV .head-item {
  color: #000000;
  text-align: center;
}
.cid-rLiB0ueCTV .mbr-section-title,
.cid-rLiB0ueCTV .underline {
  color: #365c9a;
}
.cid-rLiB0ueCTV .mbr-text {
  color: #92b5d5;
}
.cid-rLiB0y9kbb {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rLiB0y9kbb .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLiB0y9kbb .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rORS63dCSl {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rORS63dCSl .mbr-text {
  text-align: left;
}
.cid-rORS6487KA {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rORS6487KA .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-rORS64Xjem {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-rORS64Xjem .container-fluid {
  padding: 0 3rem;
}
.cid-rORS64Xjem .image-block {
  margin: auto;
}
.cid-rORS64Xjem .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rORS64Xjem .container-fluid {
    padding: 0 1rem;
  }
  .cid-rORS64Xjem .image-block {
    width: 100% !important;
  }
}
.cid-rORS67uD8B {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-rORS67uD8B .container-fluid {
  padding: 0 3rem;
}
.cid-rORS67uD8B .image-block {
  margin: auto;
}
.cid-rORS67uD8B .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rORS67uD8B .container-fluid {
    padding: 0 1rem;
  }
  .cid-rORS67uD8B .image-block {
    width: 100% !important;
  }
}
.cid-rORS68c1LB {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rORS68c1LB .mbr-text {
  color: #232323;
}
.cid-rORS68KxRA {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rORS68KxRA .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rORS68KxRA .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJ2xCNYnPK {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ2xCNYnPK .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ2xCNYnPK .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-rPbaDQuREj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPbaDQuREj .mbr-text {
  color: #365c9a;
}
.cid-rPbbXVos1W.popup-builder {
  background-color: #ffffff;
}
.cid-rPbbXVos1W.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rPbbXVos1W.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rPbbXVos1W .modal-content,
.cid-rPbbXVos1W .modal-dialog {
  height: auto;
}
.cid-rPbbXVos1W .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rPbbXVos1W .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rPbbXVos1W .form-wrapper .mbr-form .form-group,
  .cid-rPbbXVos1W .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rPbbXVos1W .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rPbbXVos1W .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rPbbXVos1W .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-rPbbXVos1W .pt-0 {
  padding-top: 0 !important;
}
.cid-rPbbXVos1W .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rPbbXVos1W .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rPbbXVos1W .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rPbbXVos1W .modal-open {
  overflow: hidden;
}
.cid-rPbbXVos1W .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rPbbXVos1W .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rPbbXVos1W .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rPbbXVos1W .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rPbbXVos1W .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rPbbXVos1W .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rPbbXVos1W .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rPbbXVos1W .modal-content {
  background: #232323;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rPbbXVos1W .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rPbbXVos1W .modal-backdrop.fade {
  opacity: 0;
}
.cid-rPbbXVos1W .modal-backdrop.show {
  opacity: .5;
}
.cid-rPbbXVos1W .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rPbbXVos1W .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rPbbXVos1W .modal-header .close:hover {
  opacity: 1;
}
.cid-rPbbXVos1W .modal-header .close:focus {
  outline: none;
}
.cid-rPbbXVos1W .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fac769;
}
.cid-rPbbXVos1W .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rPbbXVos1W .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rPbbXVos1W .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rPbbXVos1W .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rPbbXVos1W .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rPbbXVos1W .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rPbbXVos1W .modal-sm {
    max-width: 300px;
  }
  .cid-rPbbXVos1W .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rPbbXVos1W .modal-lg,
  .cid-rPbbXVos1W .modal-xl {
    max-width: 800px;
  }
  .cid-rPbbXVos1W .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rPbbXVos1W .modal-xl {
    max-width: 1140px;
  }
  .cid-rPbbXVos1W .container {
    max-width: 1140px;
  }
}
.cid-rPbbXVos1W .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rPbbXVos1W .container {
    max-width: 720px;
  }
}
.cid-rPbbXVos1W .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rPbbXVos1W .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rPbbXVos1W .form-group {
  margin-bottom: 1rem;
}
.cid-rPbbXVos1W .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rPbbXVos1W .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rPbbXVos1W .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-rPbax1aUpD.popup-builder {
  background-color: #ffffff;
}
.cid-rPbax1aUpD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rPbax1aUpD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rPbax1aUpD .modal-content,
.cid-rPbax1aUpD .modal-dialog {
  height: auto;
}
.cid-rPbax1aUpD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rPbax1aUpD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rPbax1aUpD .form-wrapper .mbr-form .form-group,
  .cid-rPbax1aUpD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rPbax1aUpD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rPbax1aUpD .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rPbax1aUpD .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-rPbax1aUpD .pt-0 {
  padding-top: 0 !important;
}
.cid-rPbax1aUpD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rPbax1aUpD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rPbax1aUpD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rPbax1aUpD .modal-open {
  overflow: hidden;
}
.cid-rPbax1aUpD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rPbax1aUpD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rPbax1aUpD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rPbax1aUpD .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rPbax1aUpD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rPbax1aUpD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rPbax1aUpD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rPbax1aUpD .modal-content {
  background: #232323;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rPbax1aUpD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rPbax1aUpD .modal-backdrop.fade {
  opacity: 0;
}
.cid-rPbax1aUpD .modal-backdrop.show {
  opacity: .5;
}
.cid-rPbax1aUpD .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rPbax1aUpD .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rPbax1aUpD .modal-header .close:hover {
  opacity: 1;
}
.cid-rPbax1aUpD .modal-header .close:focus {
  outline: none;
}
.cid-rPbax1aUpD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fac769;
}
.cid-rPbax1aUpD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rPbax1aUpD .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rPbax1aUpD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rPbax1aUpD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rPbax1aUpD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rPbax1aUpD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rPbax1aUpD .modal-sm {
    max-width: 300px;
  }
  .cid-rPbax1aUpD .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rPbax1aUpD .modal-lg,
  .cid-rPbax1aUpD .modal-xl {
    max-width: 800px;
  }
  .cid-rPbax1aUpD .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rPbax1aUpD .modal-xl {
    max-width: 1140px;
  }
  .cid-rPbax1aUpD .container {
    max-width: 1140px;
  }
}
.cid-rPbax1aUpD .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rPbax1aUpD .container {
    max-width: 720px;
  }
}
.cid-rPbax1aUpD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rPbax1aUpD .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rPbax1aUpD .form-group {
  margin-bottom: 1rem;
}
.cid-rPbax1aUpD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rPbax1aUpD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rPbax1aUpD .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPwvogGFdH {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rPwvogGFdH .mbr-text {
  text-align: left;
}
.cid-rPwvoi8Pbp {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPwvoi8Pbp .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-rPwvokLGki {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPwvokLGki .card {
  display: block;
  position: relative;
}
.cid-rPwvokLGki .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-rPwvokLGki .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rPwvokLGki .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rPwvokLGki .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-rPwvokLGki .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rPwvokLGki .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rPwvokLGki .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-rPwvokLGki .mbr-card-text,
.cid-rPwvokLGki .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-rPwvokLGki .img-text {
  color: #efefef;
}
.cid-rPwvokLGki .mbr-section-title {
  color: #365c9a;
}
.cid-rPwvokLGki .mbr-title {
  text-align: center;
}
.cid-rPwvomHzgy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPwvomHzgy .card {
  display: block;
  position: relative;
}
.cid-rPwvomHzgy .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-rPwvomHzgy .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rPwvomHzgy .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rPwvomHzgy .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-rPwvomHzgy .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rPwvomHzgy .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rPwvomHzgy .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-rPwvomHzgy .mbr-card-text,
.cid-rPwvomHzgy .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-rPwvomHzgy .img-text {
  color: #efefef;
}
.cid-rPwvomHzgy .mbr-section-title {
  color: #365c9a;
}
.cid-rPwvomHzgy .mbr-title {
  text-align: center;
}
.cid-rPwvopjKMk {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rPwvopjKMk .mbr-text {
  color: #232323;
}
.cid-rPwvopXQ6P {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rPwvopXQ6P .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rPwvopXQ6P .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPwa9sFRAk {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rPwa9sFRAk .mbr-text {
  text-align: left;
}
.cid-rPwa9tzK0W {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPwa9tzK0W .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-rPwa9uaCo9 {
  background: #ffffff;
}
.cid-rPwa9uaCo9 .container-fluid {
  padding: 0 3rem;
}
.cid-rPwa9uaCo9 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rPwa9uaCo9 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rPwa9uaCo9 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rPwa9uaCo9 .image-block {
    width: 100% !important;
  }
}
.cid-rPwb89AW0o {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPwa9vxS46 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rPwa9vxS46 .mbr-text {
  color: #232323;
}
.cid-rPwcatg6kV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPwcatg6kV .card {
  display: block;
  position: relative;
}
.cid-rPwcatg6kV .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-rPwcatg6kV .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rPwcatg6kV .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rPwcatg6kV .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-rPwcatg6kV .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rPwcatg6kV .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rPwcatg6kV .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-rPwcatg6kV .mbr-card-text,
.cid-rPwcatg6kV .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-rPwcatg6kV .img-text {
  color: #efefef;
}
.cid-rPwcatg6kV .mbr-section-title {
  color: #365c9a;
}
.cid-rPwcatg6kV .mbr-title {
  text-align: center;
}
.cid-rPwd7RSfr4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPwd7RSfr4 .card {
  display: block;
  position: relative;
}
.cid-rPwd7RSfr4 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-rPwd7RSfr4 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rPwd7RSfr4 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rPwd7RSfr4 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-rPwd7RSfr4 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rPwd7RSfr4 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rPwd7RSfr4 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-rPwd7RSfr4 .mbr-card-text,
.cid-rPwd7RSfr4 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-rPwd7RSfr4 .img-text {
  color: #efefef;
}
.cid-rPwd7RSfr4 .mbr-section-title {
  color: #365c9a;
}
.cid-rPwd7RSfr4 .mbr-title {
  text-align: center;
}
.cid-rPwa9w9oor {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rPwa9w9oor .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rPwa9w9oor .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rQsNEkhrtc {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rQsNEkhrtc .mbr-text {
  text-align: left;
}
.cid-rQsNEl8SgG {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rQsNEl8SgG .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-rQsNElFUhT {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 15px;
}
.cid-rQsNElFUhT .container-fluid {
  padding: 0 3rem;
}
.cid-rQsNElFUhT .image-block {
  margin: auto;
}
.cid-rQsNElFUhT .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rQsNElFUhT .container-fluid {
    padding: 0 1rem;
  }
  .cid-rQsNElFUhT .image-block {
    width: 100% !important;
  }
}
.cid-rQsNEmN9bl {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rQsNEmN9bl .mbr-text {
  color: #232323;
}
.cid-rQsNEqSaOy {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rQsNEqSaOy .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rQsNEqSaOy .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rQQtJLk0eI {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rQQtJLk0eI .mbr-text {
  text-align: left;
}
.cid-rQQtJLQvsl {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rQQtJLQvsl .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-rQQtJMgO50 {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rQQtJMgO50 .container-fluid {
  padding: 0 3rem;
}
.cid-rQQtJMgO50 .image-block {
  margin: auto;
}
.cid-rQQtJMgO50 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rQQtJMgO50 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rQQtJMgO50 .image-block {
    width: 100% !important;
  }
}
.cid-rQSynKZeXg {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rQSynKZeXg .mbr-text {
  color: #232323;
}
.cid-rQQtJMNz6r {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rQQtJMNz6r .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-rQQxaR1Iju {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rQQxaR1Iju .mbr-section-subtitle {
  color: #767676;
}
.cid-rQQxaR1Iju .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rQQxaR1Iju .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rQQxaR1Iju .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rQQxaR1Iju .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rQQxaR1Iju .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-rQQxaR1Iju .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-rQQxaR1Iju .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rQQxaR1Iju .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-rQQxaR1Iju .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rQQxaR1Iju .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-rQQxaR1Iju ul {
  font-size: 0;
}
.cid-rQQxaR1Iju .mbr-gallery-filter ul {
  text-align: center;
}
.cid-rQQxaR1Iju .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rQQxaR1Iju .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rQQxaR1Iju .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-rQQxaR1Iju .mbr-gallery-filter ul li:first-child,
.cid-rQQxaR1Iju .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-rQQxaR1Iju .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-rQQxaR1Iju .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rQQxaR1Iju .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-rQQxaR1Iju .btn.active:after {
  animation: none;
}
.cid-rQQxaR1Iju .btn:active {
  box-shadow: none !important;
}
.cid-rQQxaR1Iju .btn:hover {
  background: transparent !important;
}
.cid-rQQxaR1Iju .btn:hover:before {
  background: transparent !important;
}
.cid-rQQxaR1Iju .btn:before {
  background-color: transparent !important;
}
.cid-rQQxaR1Iju .btn:focus {
  box-shadow: none !important;
}
.cid-rQQtJNq7eF {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rQQtJNq7eF .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rQQtJNq7eF .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rVFTMF3epm {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rVFTMF3epm .mbr-text {
  text-align: left;
}
.cid-rVFTMHswZC {
  background: #ffffff;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-rVFTMHswZC .container-fluid {
  padding: 0 3rem;
}
.cid-rVFTMHswZC .image-block {
  margin: auto;
}
.cid-rVFTMHswZC .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rVFTMHswZC .container-fluid {
    padding: 0 1rem;
  }
  .cid-rVFTMHswZC .image-block {
    width: 100% !important;
  }
}
.cid-rVFTMJPaNH {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rVFTMJPaNH .mbr-text {
  color: #365c9a;
}
.cid-rVFTMMdKD1 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rVFTMMdKD1 .mbr-text {
  color: #232323;
}
.cid-rVFTMOyGgq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rVFTMOyGgq .mbr-text {
  color: #365c9a;
}
.cid-rVFTMR4CML {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rVFTMR4CML .counter-container {
  color: #767676;
}
.cid-rVFTMR4CML .counter-container ul {
  margin-bottom: 0;
}
.cid-rVFTMR4CML .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rVFTMR4CML .mbr-text {
  color: #232323;
}
.cid-rVFTMTkTzC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rVFTMTkTzC .mbr-text {
  color: #365c9a;
}
.cid-rVFTMVDANL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rVFTN8kaBq {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rVFTN8kaBq .counter-container {
  color: #767676;
}
.cid-rVFTN8kaBq .counter-container ul {
  margin-bottom: 0;
}
.cid-rVFTN8kaBq .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rVFTN8kaBq .mbr-text {
  color: #232323;
}
.cid-rVFTNaLCBO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rVFTNaLCBO .mbr-text {
  text-align: left;
}
.cid-rVFTNgFM20 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rVFTNgFM20 .counter-container {
  color: #767676;
}
.cid-rVFTNgFM20 .counter-container ul {
  margin-bottom: 0;
}
.cid-rVFTNgFM20 .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rVFTNgFM20 .mbr-text {
  color: #232323;
}
.cid-rVFTNjdrQW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rVFTNjdrQW .mbr-text {
  color: #365c9a;
}
.cid-rVFTNlGk5s {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rVFTNlGk5s .mbr-section-subtitle {
  color: #767676;
}
.cid-rVFTNlGk5s .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rVFTNlGk5s .table-wrapper {
  margin: 0 auto;
}
.cid-rVFTNlGk5s table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rVFTNlGk5s table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #9d789b;
  color: white;
  vertical-align: middle;
}
.cid-rVFTNlGk5s table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-rVFTNlGk5s table.table {
  background: #f6f6f6;
}
.cid-rVFTNlGk5s .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rVFTNlGk5s .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rVFTNlGk5s .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rVFTNlGk5s .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-rVFTNlGk5s .dataTables_wrapper {
  display: block;
}
.cid-rVFTNlGk5s .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-rVFTNlGk5s .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rVFTNlGk5s .head-item:after,
.cid-rVFTNlGk5s .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-rVFTNlGk5s .dataTables_filter {
    text-align: center;
  }
  .cid-rVFTNlGk5s .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-rVFTNlGk5s .dataTables_filter {
    text-align: center;
  }
  .cid-rVFTNlGk5s .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-rVFTNlGk5s table th,
  .cid-rVFTNlGk5s table td {
    padding: .75rem;
  }
}
.cid-rVFTNlGk5s .body-item {
  text-align: left;
}
.cid-rVFTNlGk5s .head-item {
  text-align: center;
}
.cid-rVFTNsNPK4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rVFTNsNPK4 .mbr-text {
  color: #365c9a;
}
.cid-rVFTNvovcZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rVFTNvovcZ .mbr-text {
  color: #232323;
}
.cid-rVFTNy1Idj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-rVFTNy1Idj .counter-container {
  color: #767676;
}
.cid-rVFTNy1Idj .counter-container ul {
  margin-bottom: 0;
}
.cid-rVFTNy1Idj .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rVFTNy1Idj .mbr-text {
  color: #232323;
}
.cid-rVFTNAArs6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rVFTNAArs6 .mbr-text {
  color: #232323;
}
.cid-rVFTNDfNqS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-rVFTNDfNqS .counter-container {
  color: #767676;
}
.cid-rVFTNDfNqS .counter-container ul {
  margin-bottom: 0;
}
.cid-rVFTNDfNqS .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rVFTNDfNqS .mbr-text {
  color: #232323;
}
.cid-rVFTNG96nH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rVFTNG96nH .mbr-text {
  color: #232323;
}
.cid-rVFTNJQZw3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-rVFTNJQZw3 .counter-container {
  color: #767676;
}
.cid-rVFTNJQZw3 .counter-container ul {
  margin-bottom: 0;
}
.cid-rVFTNJQZw3 .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rVFTNJQZw3 .mbr-text {
  color: #232323;
}
.cid-rVFTNMVvaJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rVFTNMVvaJ .mbr-text {
  color: #232323;
}
.cid-rVFTNPlw3m {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #f9f9f9;
}
.cid-rVFTNPlw3m .counter-container {
  color: #767676;
}
.cid-rVFTNPlw3m .counter-container ul {
  margin-bottom: 0;
}
.cid-rVFTNPlw3m .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rVFTNPlw3m .mbr-text {
  color: #232323;
}
.cid-rVFTNRL0xG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rVFTNRL0xG .mbr-text {
  color: #365c9a;
}
.cid-rVFTNUn8Qv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rVFTNUn8Qv .mbr-text {
  color: #232323;
}
.cid-rVFTNWOROf {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-rVFTNWOROf .mbr-text,
.cid-rVFTNWOROf .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-rVFTNWOROf H1 {
  color: #2e2e2e;
}
.cid-rVFTNZA7wg {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rVFTNZA7wg .mbr-text {
  color: #232323;
}
.cid-rVFTO28Ygx {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rVFTO28Ygx .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rVFTO28Ygx .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNFL6WqunB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tNFL6WqunB .mbr-section-subtitle {
  color: #767676;
}
.cid-u3Mgay7Ozn {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u3Mgay7Ozn .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-u3Mgay7Ozn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u3Mgay7Ozn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u3Mgay7Ozn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u3Mgay7Ozn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u3Mgay7Ozn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-u3Mgay7Ozn .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-u3Mgay7Ozn .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u3Mgay7Ozn .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-u3Mgay7Ozn .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u3Mgay7Ozn .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-u3Mgay7Ozn ul {
  font-size: 0;
}
.cid-u3Mgay7Ozn .mbr-gallery-filter ul {
  text-align: center;
}
.cid-u3Mgay7Ozn .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-u3Mgay7Ozn .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-u3Mgay7Ozn .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-u3Mgay7Ozn .mbr-gallery-filter ul li:first-child,
.cid-u3Mgay7Ozn .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-u3Mgay7Ozn .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-u3Mgay7Ozn .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-u3Mgay7Ozn .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-u3Mgay7Ozn .btn.active:after {
  animation: none;
}
.cid-u3Mgay7Ozn .btn:active {
  box-shadow: none !important;
}
.cid-u3Mgay7Ozn .btn:hover {
  background: transparent !important;
}
.cid-u3Mgay7Ozn .btn:hover:before {
  background: transparent !important;
}
.cid-u3Mgay7Ozn .btn:before {
  background-color: transparent !important;
}
.cid-u3Mgay7Ozn .btn:focus {
  box-shadow: none !important;
}
.cid-u3Mgay7Ozn .mbr-section-title,
.cid-u3Mgay7Ozn .mbr-gallery-filter ul {
  text-align: left;
}
.cid-u3Mgay7Ozn .mbr-section-title,
.cid-u3Mgay7Ozn .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-u3MglaM0xj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-u3MglaM0xj .mbr-section-subtitle {
  color: #767676;
}
.cid-u2R7Bf0oPS {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u2R7Bf0oPS .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-u2R7Bf0oPS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2R7Bf0oPS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2R7Bf0oPS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2R7Bf0oPS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2R7Bf0oPS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-u2R7Bf0oPS .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-u2R7Bf0oPS .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2R7Bf0oPS .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-u2R7Bf0oPS .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2R7Bf0oPS .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-u2R7Bf0oPS ul {
  font-size: 0;
}
.cid-u2R7Bf0oPS .mbr-gallery-filter ul {
  text-align: center;
}
.cid-u2R7Bf0oPS .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-u2R7Bf0oPS .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-u2R7Bf0oPS .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-u2R7Bf0oPS .mbr-gallery-filter ul li:first-child,
.cid-u2R7Bf0oPS .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-u2R7Bf0oPS .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-u2R7Bf0oPS .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-u2R7Bf0oPS .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-u2R7Bf0oPS .btn.active:after {
  animation: none;
}
.cid-u2R7Bf0oPS .btn:active {
  box-shadow: none !important;
}
.cid-u2R7Bf0oPS .btn:hover {
  background: transparent !important;
}
.cid-u2R7Bf0oPS .btn:hover:before {
  background: transparent !important;
}
.cid-u2R7Bf0oPS .btn:before {
  background-color: transparent !important;
}
.cid-u2R7Bf0oPS .btn:focus {
  box-shadow: none !important;
}
.cid-u2R7Bf0oPS .mbr-section-title,
.cid-u2R7Bf0oPS .mbr-gallery-filter ul {
  text-align: left;
}
.cid-u2R7Bf0oPS .mbr-section-title,
.cid-u2R7Bf0oPS .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-u2R7PYWKaY {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-u2R7PYWKaY .mbr-section-subtitle {
  color: #767676;
}
.cid-u1NLFsLM1A {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u1NLFsLM1A .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-u1NLFsLM1A .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u1NLFsLM1A .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1NLFsLM1A .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u1NLFsLM1A .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u1NLFsLM1A .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-u1NLFsLM1A .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-u1NLFsLM1A .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u1NLFsLM1A .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-u1NLFsLM1A .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u1NLFsLM1A .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-u1NLFsLM1A ul {
  font-size: 0;
}
.cid-u1NLFsLM1A .mbr-gallery-filter ul {
  text-align: center;
}
.cid-u1NLFsLM1A .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-u1NLFsLM1A .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-u1NLFsLM1A .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-u1NLFsLM1A .mbr-gallery-filter ul li:first-child,
.cid-u1NLFsLM1A .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-u1NLFsLM1A .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-u1NLFsLM1A .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-u1NLFsLM1A .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-u1NLFsLM1A .btn.active:after {
  animation: none;
}
.cid-u1NLFsLM1A .btn:active {
  box-shadow: none !important;
}
.cid-u1NLFsLM1A .btn:hover {
  background: transparent !important;
}
.cid-u1NLFsLM1A .btn:hover:before {
  background: transparent !important;
}
.cid-u1NLFsLM1A .btn:before {
  background-color: transparent !important;
}
.cid-u1NLFsLM1A .btn:focus {
  box-shadow: none !important;
}
.cid-u1NLFsLM1A .mbr-section-title,
.cid-u1NLFsLM1A .mbr-gallery-filter ul {
  text-align: left;
}
.cid-u1NLFsLM1A .mbr-section-title,
.cid-u1NLFsLM1A .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-u1NLKmLUFh {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-u1NLKmLUFh .mbr-section-subtitle {
  color: #767676;
}
.cid-u1CBBnki4z {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u1CBBnki4z .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-u1CBBnki4z .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u1CBBnki4z .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1CBBnki4z .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u1CBBnki4z .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u1CBBnki4z .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-u1CBBnki4z .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-u1CBBnki4z .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u1CBBnki4z .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-u1CBBnki4z .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u1CBBnki4z .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-u1CBBnki4z ul {
  font-size: 0;
}
.cid-u1CBBnki4z .mbr-gallery-filter ul {
  text-align: center;
}
.cid-u1CBBnki4z .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-u1CBBnki4z .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-u1CBBnki4z .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-u1CBBnki4z .mbr-gallery-filter ul li:first-child,
.cid-u1CBBnki4z .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-u1CBBnki4z .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-u1CBBnki4z .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-u1CBBnki4z .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-u1CBBnki4z .btn.active:after {
  animation: none;
}
.cid-u1CBBnki4z .btn:active {
  box-shadow: none !important;
}
.cid-u1CBBnki4z .btn:hover {
  background: transparent !important;
}
.cid-u1CBBnki4z .btn:hover:before {
  background: transparent !important;
}
.cid-u1CBBnki4z .btn:before {
  background-color: transparent !important;
}
.cid-u1CBBnki4z .btn:focus {
  box-shadow: none !important;
}
.cid-u1CBBnki4z .mbr-section-title,
.cid-u1CBBnki4z .mbr-gallery-filter ul {
  text-align: left;
}
.cid-u1CBBnki4z .mbr-section-title,
.cid-u1CBBnki4z .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-u1CBGqMzoE {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-u1CBGqMzoE .mbr-section-subtitle {
  color: #767676;
}
.cid-u1fHI8EiwK {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u1fHI8EiwK .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-u1fHI8EiwK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u1fHI8EiwK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1fHI8EiwK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u1fHI8EiwK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u1fHI8EiwK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-u1fHI8EiwK .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-u1fHI8EiwK .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u1fHI8EiwK .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-u1fHI8EiwK .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u1fHI8EiwK .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-u1fHI8EiwK ul {
  font-size: 0;
}
.cid-u1fHI8EiwK .mbr-gallery-filter ul {
  text-align: center;
}
.cid-u1fHI8EiwK .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-u1fHI8EiwK .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-u1fHI8EiwK .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-u1fHI8EiwK .mbr-gallery-filter ul li:first-child,
.cid-u1fHI8EiwK .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-u1fHI8EiwK .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-u1fHI8EiwK .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-u1fHI8EiwK .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-u1fHI8EiwK .btn.active:after {
  animation: none;
}
.cid-u1fHI8EiwK .btn:active {
  box-shadow: none !important;
}
.cid-u1fHI8EiwK .btn:hover {
  background: transparent !important;
}
.cid-u1fHI8EiwK .btn:hover:before {
  background: transparent !important;
}
.cid-u1fHI8EiwK .btn:before {
  background-color: transparent !important;
}
.cid-u1fHI8EiwK .btn:focus {
  box-shadow: none !important;
}
.cid-u1fHI8EiwK .mbr-section-title,
.cid-u1fHI8EiwK .mbr-gallery-filter ul {
  text-align: left;
}
.cid-u1fHI8EiwK .mbr-section-title,
.cid-u1fHI8EiwK .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-u1fHNd1k3R {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-u1fHNd1k3R .mbr-section-subtitle {
  color: #767676;
}
.cid-tYTzYlvHpE {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tYTzYlvHpE .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tYTzYlvHpE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tYTzYlvHpE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tYTzYlvHpE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tYTzYlvHpE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tYTzYlvHpE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tYTzYlvHpE .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tYTzYlvHpE .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tYTzYlvHpE .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tYTzYlvHpE .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tYTzYlvHpE .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tYTzYlvHpE ul {
  font-size: 0;
}
.cid-tYTzYlvHpE .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tYTzYlvHpE .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tYTzYlvHpE .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tYTzYlvHpE .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tYTzYlvHpE .mbr-gallery-filter ul li:first-child,
.cid-tYTzYlvHpE .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tYTzYlvHpE .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tYTzYlvHpE .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tYTzYlvHpE .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tYTzYlvHpE .btn.active:after {
  animation: none;
}
.cid-tYTzYlvHpE .btn:active {
  box-shadow: none !important;
}
.cid-tYTzYlvHpE .btn:hover {
  background: transparent !important;
}
.cid-tYTzYlvHpE .btn:hover:before {
  background: transparent !important;
}
.cid-tYTzYlvHpE .btn:before {
  background-color: transparent !important;
}
.cid-tYTzYlvHpE .btn:focus {
  box-shadow: none !important;
}
.cid-tYTzYlvHpE .mbr-section-title,
.cid-tYTzYlvHpE .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tYTzYlvHpE .mbr-section-title,
.cid-tYTzYlvHpE .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tYTAMNs1Le {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tYTAMNs1Le .mbr-section-subtitle {
  color: #767676;
}
.cid-tY5WVN479g {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tY5WVN479g .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tY5WVN479g .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tY5WVN479g .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tY5WVN479g .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tY5WVN479g .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tY5WVN479g .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tY5WVN479g .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tY5WVN479g .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tY5WVN479g .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tY5WVN479g .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tY5WVN479g .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tY5WVN479g ul {
  font-size: 0;
}
.cid-tY5WVN479g .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tY5WVN479g .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tY5WVN479g .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tY5WVN479g .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tY5WVN479g .mbr-gallery-filter ul li:first-child,
.cid-tY5WVN479g .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tY5WVN479g .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tY5WVN479g .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tY5WVN479g .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tY5WVN479g .btn.active:after {
  animation: none;
}
.cid-tY5WVN479g .btn:active {
  box-shadow: none !important;
}
.cid-tY5WVN479g .btn:hover {
  background: transparent !important;
}
.cid-tY5WVN479g .btn:hover:before {
  background: transparent !important;
}
.cid-tY5WVN479g .btn:before {
  background-color: transparent !important;
}
.cid-tY5WVN479g .btn:focus {
  box-shadow: none !important;
}
.cid-tY5WVN479g .mbr-section-title,
.cid-tY5WVN479g .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tY5WVN479g .mbr-section-title,
.cid-tY5WVN479g .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tY5X21xzIX {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tY5X21xzIX .mbr-section-subtitle {
  color: #767676;
}
.cid-tXAbWeWXv6 {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tXAbWeWXv6 .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tXAbWeWXv6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tXAbWeWXv6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tXAbWeWXv6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tXAbWeWXv6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tXAbWeWXv6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tXAbWeWXv6 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tXAbWeWXv6 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tXAbWeWXv6 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tXAbWeWXv6 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tXAbWeWXv6 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tXAbWeWXv6 ul {
  font-size: 0;
}
.cid-tXAbWeWXv6 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tXAbWeWXv6 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tXAbWeWXv6 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tXAbWeWXv6 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tXAbWeWXv6 .mbr-gallery-filter ul li:first-child,
.cid-tXAbWeWXv6 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tXAbWeWXv6 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tXAbWeWXv6 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tXAbWeWXv6 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tXAbWeWXv6 .btn.active:after {
  animation: none;
}
.cid-tXAbWeWXv6 .btn:active {
  box-shadow: none !important;
}
.cid-tXAbWeWXv6 .btn:hover {
  background: transparent !important;
}
.cid-tXAbWeWXv6 .btn:hover:before {
  background: transparent !important;
}
.cid-tXAbWeWXv6 .btn:before {
  background-color: transparent !important;
}
.cid-tXAbWeWXv6 .btn:focus {
  box-shadow: none !important;
}
.cid-tXAbWeWXv6 .mbr-section-title,
.cid-tXAbWeWXv6 .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tXAbWeWXv6 .mbr-section-title,
.cid-tXAbWeWXv6 .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tXAbZCzVoC {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tXAbZCzVoC .mbr-section-subtitle {
  color: #767676;
}
.cid-tXlzsXjlTW {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tXlzsXjlTW .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tXlzsXjlTW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tXlzsXjlTW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tXlzsXjlTW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tXlzsXjlTW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tXlzsXjlTW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tXlzsXjlTW .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tXlzsXjlTW .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tXlzsXjlTW .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tXlzsXjlTW .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tXlzsXjlTW .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tXlzsXjlTW ul {
  font-size: 0;
}
.cid-tXlzsXjlTW .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tXlzsXjlTW .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tXlzsXjlTW .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tXlzsXjlTW .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tXlzsXjlTW .mbr-gallery-filter ul li:first-child,
.cid-tXlzsXjlTW .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tXlzsXjlTW .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tXlzsXjlTW .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tXlzsXjlTW .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tXlzsXjlTW .btn.active:after {
  animation: none;
}
.cid-tXlzsXjlTW .btn:active {
  box-shadow: none !important;
}
.cid-tXlzsXjlTW .btn:hover {
  background: transparent !important;
}
.cid-tXlzsXjlTW .btn:hover:before {
  background: transparent !important;
}
.cid-tXlzsXjlTW .btn:before {
  background-color: transparent !important;
}
.cid-tXlzsXjlTW .btn:focus {
  box-shadow: none !important;
}
.cid-tXlzsXjlTW .mbr-section-title,
.cid-tXlzsXjlTW .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tXlzsXjlTW .mbr-section-title,
.cid-tXlzsXjlTW .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tXlzCxqa0I {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tXlzCxqa0I .mbr-section-subtitle {
  color: #767676;
}
.cid-tWJDHdAhnM {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tWJDHdAhnM .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tWJDHdAhnM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tWJDHdAhnM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWJDHdAhnM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWJDHdAhnM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tWJDHdAhnM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tWJDHdAhnM .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tWJDHdAhnM .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tWJDHdAhnM .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tWJDHdAhnM .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tWJDHdAhnM .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tWJDHdAhnM ul {
  font-size: 0;
}
.cid-tWJDHdAhnM .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tWJDHdAhnM .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tWJDHdAhnM .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tWJDHdAhnM .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tWJDHdAhnM .mbr-gallery-filter ul li:first-child,
.cid-tWJDHdAhnM .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tWJDHdAhnM .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tWJDHdAhnM .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tWJDHdAhnM .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tWJDHdAhnM .btn.active:after {
  animation: none;
}
.cid-tWJDHdAhnM .btn:active {
  box-shadow: none !important;
}
.cid-tWJDHdAhnM .btn:hover {
  background: transparent !important;
}
.cid-tWJDHdAhnM .btn:hover:before {
  background: transparent !important;
}
.cid-tWJDHdAhnM .btn:before {
  background-color: transparent !important;
}
.cid-tWJDHdAhnM .btn:focus {
  box-shadow: none !important;
}
.cid-tWJDHdAhnM .mbr-section-title,
.cid-tWJDHdAhnM .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tWJDHdAhnM .mbr-section-title,
.cid-tWJDHdAhnM .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tWJDNjpdVP {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tWJDNjpdVP .mbr-section-subtitle {
  color: #767676;
}
.cid-tWflWO5zof {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tWflWO5zof .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tWflWO5zof .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tWflWO5zof .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWflWO5zof .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWflWO5zof .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tWflWO5zof .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tWflWO5zof .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tWflWO5zof .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tWflWO5zof .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tWflWO5zof .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tWflWO5zof .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tWflWO5zof ul {
  font-size: 0;
}
.cid-tWflWO5zof .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tWflWO5zof .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tWflWO5zof .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tWflWO5zof .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tWflWO5zof .mbr-gallery-filter ul li:first-child,
.cid-tWflWO5zof .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tWflWO5zof .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tWflWO5zof .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tWflWO5zof .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tWflWO5zof .btn.active:after {
  animation: none;
}
.cid-tWflWO5zof .btn:active {
  box-shadow: none !important;
}
.cid-tWflWO5zof .btn:hover {
  background: transparent !important;
}
.cid-tWflWO5zof .btn:hover:before {
  background: transparent !important;
}
.cid-tWflWO5zof .btn:before {
  background-color: transparent !important;
}
.cid-tWflWO5zof .btn:focus {
  box-shadow: none !important;
}
.cid-tWflWO5zof .mbr-section-title,
.cid-tWflWO5zof .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tWflWO5zof .mbr-section-title,
.cid-tWflWO5zof .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tWfm26UPMz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tWfm26UPMz .mbr-section-subtitle {
  color: #767676;
}
.cid-tVdz0afpmf {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tVdz0afpmf .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tVdz0afpmf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tVdz0afpmf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVdz0afpmf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tVdz0afpmf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tVdz0afpmf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tVdz0afpmf .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tVdz0afpmf .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tVdz0afpmf .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tVdz0afpmf .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tVdz0afpmf .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tVdz0afpmf ul {
  font-size: 0;
}
.cid-tVdz0afpmf .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tVdz0afpmf .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tVdz0afpmf .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tVdz0afpmf .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tVdz0afpmf .mbr-gallery-filter ul li:first-child,
.cid-tVdz0afpmf .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tVdz0afpmf .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tVdz0afpmf .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tVdz0afpmf .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tVdz0afpmf .btn.active:after {
  animation: none;
}
.cid-tVdz0afpmf .btn:active {
  box-shadow: none !important;
}
.cid-tVdz0afpmf .btn:hover {
  background: transparent !important;
}
.cid-tVdz0afpmf .btn:hover:before {
  background: transparent !important;
}
.cid-tVdz0afpmf .btn:before {
  background-color: transparent !important;
}
.cid-tVdz0afpmf .btn:focus {
  box-shadow: none !important;
}
.cid-tVdz0afpmf .mbr-section-title,
.cid-tVdz0afpmf .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tVdz0afpmf .mbr-section-title,
.cid-tVdz0afpmf .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tVdz1EsyPC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tVdz1EsyPC .mbr-section-subtitle {
  color: #767676;
}
.cid-tU5ot9p636 {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tU5ot9p636 .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tU5ot9p636 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tU5ot9p636 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tU5ot9p636 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tU5ot9p636 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tU5ot9p636 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tU5ot9p636 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tU5ot9p636 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tU5ot9p636 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tU5ot9p636 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tU5ot9p636 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tU5ot9p636 ul {
  font-size: 0;
}
.cid-tU5ot9p636 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tU5ot9p636 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tU5ot9p636 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tU5ot9p636 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tU5ot9p636 .mbr-gallery-filter ul li:first-child,
.cid-tU5ot9p636 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tU5ot9p636 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tU5ot9p636 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tU5ot9p636 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tU5ot9p636 .btn.active:after {
  animation: none;
}
.cid-tU5ot9p636 .btn:active {
  box-shadow: none !important;
}
.cid-tU5ot9p636 .btn:hover {
  background: transparent !important;
}
.cid-tU5ot9p636 .btn:hover:before {
  background: transparent !important;
}
.cid-tU5ot9p636 .btn:before {
  background-color: transparent !important;
}
.cid-tU5ot9p636 .btn:focus {
  box-shadow: none !important;
}
.cid-tU5ot9p636 .mbr-section-title,
.cid-tU5ot9p636 .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tU5ot9p636 .mbr-section-title,
.cid-tU5ot9p636 .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tU5owHHIAS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tU5owHHIAS .mbr-section-subtitle {
  color: #767676;
}
.cid-tTpQTbycCu {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTpQTbycCu .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tTpQTbycCu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tTpQTbycCu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTpQTbycCu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tTpQTbycCu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tTpQTbycCu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tTpQTbycCu .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tTpQTbycCu .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTpQTbycCu .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tTpQTbycCu .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTpQTbycCu .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tTpQTbycCu ul {
  font-size: 0;
}
.cid-tTpQTbycCu .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tTpQTbycCu .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tTpQTbycCu .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tTpQTbycCu .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tTpQTbycCu .mbr-gallery-filter ul li:first-child,
.cid-tTpQTbycCu .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tTpQTbycCu .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tTpQTbycCu .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tTpQTbycCu .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tTpQTbycCu .btn.active:after {
  animation: none;
}
.cid-tTpQTbycCu .btn:active {
  box-shadow: none !important;
}
.cid-tTpQTbycCu .btn:hover {
  background: transparent !important;
}
.cid-tTpQTbycCu .btn:hover:before {
  background: transparent !important;
}
.cid-tTpQTbycCu .btn:before {
  background-color: transparent !important;
}
.cid-tTpQTbycCu .btn:focus {
  box-shadow: none !important;
}
.cid-tTpQTbycCu .mbr-section-title,
.cid-tTpQTbycCu .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tTpQTbycCu .mbr-section-title,
.cid-tTpQTbycCu .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tTpR1L3UIN {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tTpR1L3UIN .mbr-section-subtitle {
  color: #767676;
}
.cid-tTesvAJOT1 {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tTesvAJOT1 .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ede7e2;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tTesvAJOT1 .mbr-section-title {
  color: #365c9a;
  margin-bottom: 1.736vw;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tTesvAJOT1 .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tTesvAJOT1 .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tTesvAJOT1 .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tTesvAJOT1 .items-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tTesvAJOT1 .items-container {
    padding-left: 6.66vw;
  }
}
.cid-tTesvAJOT1 .item {
  position: relative;
  margin-bottom: 0.83vw;
}
@media (max-width: 991px) {
  .cid-tTesvAJOT1 .item {
    margin-bottom: 3.2vw;
  }
}
.cid-tTesvAJOT1 .item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1.4vw;
  width: 0.6vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-tTesvAJOT1 .item:before {
    left: -2.5vw;
    width: 1.2vw;
  }
}
@media (max-width: 575px) {
  .cid-tTesvAJOT1 .item:before {
    left: -2.7vw;
    width: 1.6vw;
  }
}
.cid-tTesvAJOT1 .mbr-text {
  color: #000000;
}
.cid-tTes8KHtrn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tTes8KHtrn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTes8KHtrn .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-tTes8KHtrn .row {
    padding: 0 24px;
  }
}
.cid-tTes8KHtrn .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tTes8KHtrn .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tTes8KHtrn .mbr-section-title {
  color: #2c0066;
}
.cid-tTes8KHtrn .mbr-section-title,
.cid-tTes8KHtrn .mbr-section-btn {
  text-align: left;
  color: #011953;
}
.cid-tTerQduST6 {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 60px;
}
.cid-tTerQduST6 .container-fluid {
  padding: 0 3rem;
}
.cid-tTerQduST6 .image-block {
  position: relative;
  margin: auto;
}
.cid-tTerQduST6 .image-block img {
  width: 100%;
}
.cid-tTerQduST6 .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-tTerQduST6 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tTerQduST6 .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-tTerQduST6 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tTes47OozU {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tTes47OozU .mbr-section-subtitle {
  color: #767676;
}
.cid-tSXFSGx3PP {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tSXFSGx3PP .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tSXFSGx3PP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tSXFSGx3PP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tSXFSGx3PP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tSXFSGx3PP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tSXFSGx3PP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tSXFSGx3PP .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tSXFSGx3PP .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSXFSGx3PP .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tSXFSGx3PP .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSXFSGx3PP .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tSXFSGx3PP ul {
  font-size: 0;
}
.cid-tSXFSGx3PP .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tSXFSGx3PP .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tSXFSGx3PP .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tSXFSGx3PP .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tSXFSGx3PP .mbr-gallery-filter ul li:first-child,
.cid-tSXFSGx3PP .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tSXFSGx3PP .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tSXFSGx3PP .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tSXFSGx3PP .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tSXFSGx3PP .btn.active:after {
  animation: none;
}
.cid-tSXFSGx3PP .btn:active {
  box-shadow: none !important;
}
.cid-tSXFSGx3PP .btn:hover {
  background: transparent !important;
}
.cid-tSXFSGx3PP .btn:hover:before {
  background: transparent !important;
}
.cid-tSXFSGx3PP .btn:before {
  background-color: transparent !important;
}
.cid-tSXFSGx3PP .btn:focus {
  box-shadow: none !important;
}
.cid-tSXFSGx3PP .mbr-section-title,
.cid-tSXFSGx3PP .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tSXFSGx3PP .mbr-section-title,
.cid-tSXFSGx3PP .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tSXRAA15Rd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tSXRAA15Rd .mbr-section-subtitle {
  color: #767676;
}
.cid-tOq3u9f6PZ {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tOq3u9f6PZ .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tOq3u9f6PZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tOq3u9f6PZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tOq3u9f6PZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tOq3u9f6PZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tOq3u9f6PZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tOq3u9f6PZ .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tOq3u9f6PZ .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tOq3u9f6PZ .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tOq3u9f6PZ .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tOq3u9f6PZ .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tOq3u9f6PZ ul {
  font-size: 0;
}
.cid-tOq3u9f6PZ .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tOq3u9f6PZ .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tOq3u9f6PZ .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tOq3u9f6PZ .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tOq3u9f6PZ .mbr-gallery-filter ul li:first-child,
.cid-tOq3u9f6PZ .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tOq3u9f6PZ .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tOq3u9f6PZ .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tOq3u9f6PZ .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tOq3u9f6PZ .btn.active:after {
  animation: none;
}
.cid-tOq3u9f6PZ .btn:active {
  box-shadow: none !important;
}
.cid-tOq3u9f6PZ .btn:hover {
  background: transparent !important;
}
.cid-tOq3u9f6PZ .btn:hover:before {
  background: transparent !important;
}
.cid-tOq3u9f6PZ .btn:before {
  background-color: transparent !important;
}
.cid-tOq3u9f6PZ .btn:focus {
  box-shadow: none !important;
}
.cid-tOq3u9f6PZ .mbr-section-title,
.cid-tOq3u9f6PZ .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tOq3u9f6PZ .mbr-section-title,
.cid-tOq3u9f6PZ .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tOq3L6GSj3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tOq3L6GSj3 .mbr-section-subtitle {
  color: #767676;
}
.cid-tNFLfTxFKf {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tNFLfTxFKf .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tNFLfTxFKf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tNFLfTxFKf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNFLfTxFKf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNFLfTxFKf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tNFLfTxFKf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tNFLfTxFKf .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tNFLfTxFKf .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tNFLfTxFKf .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tNFLfTxFKf .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tNFLfTxFKf .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tNFLfTxFKf ul {
  font-size: 0;
}
.cid-tNFLfTxFKf .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tNFLfTxFKf .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tNFLfTxFKf .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tNFLfTxFKf .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tNFLfTxFKf .mbr-gallery-filter ul li:first-child,
.cid-tNFLfTxFKf .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tNFLfTxFKf .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tNFLfTxFKf .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tNFLfTxFKf .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tNFLfTxFKf .btn.active:after {
  animation: none;
}
.cid-tNFLfTxFKf .btn:active {
  box-shadow: none !important;
}
.cid-tNFLfTxFKf .btn:hover {
  background: transparent !important;
}
.cid-tNFLfTxFKf .btn:hover:before {
  background: transparent !important;
}
.cid-tNFLfTxFKf .btn:before {
  background-color: transparent !important;
}
.cid-tNFLfTxFKf .btn:focus {
  box-shadow: none !important;
}
.cid-tNFLfTxFKf .mbr-section-title,
.cid-tNFLfTxFKf .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tNFLfTxFKf .mbr-section-title,
.cid-tNFLfTxFKf .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tNQw6pXnGp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tNQw6pXnGp .mbr-section-subtitle {
  color: #767676;
}
.cid-tNQvWiyhP5 {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tNQvWiyhP5 .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tNQvWiyhP5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tNQvWiyhP5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNQvWiyhP5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNQvWiyhP5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tNQvWiyhP5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tNQvWiyhP5 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tNQvWiyhP5 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tNQvWiyhP5 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tNQvWiyhP5 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tNQvWiyhP5 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tNQvWiyhP5 ul {
  font-size: 0;
}
.cid-tNQvWiyhP5 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tNQvWiyhP5 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tNQvWiyhP5 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tNQvWiyhP5 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tNQvWiyhP5 .mbr-gallery-filter ul li:first-child,
.cid-tNQvWiyhP5 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tNQvWiyhP5 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tNQvWiyhP5 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tNQvWiyhP5 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tNQvWiyhP5 .btn.active:after {
  animation: none;
}
.cid-tNQvWiyhP5 .btn:active {
  box-shadow: none !important;
}
.cid-tNQvWiyhP5 .btn:hover {
  background: transparent !important;
}
.cid-tNQvWiyhP5 .btn:hover:before {
  background: transparent !important;
}
.cid-tNQvWiyhP5 .btn:before {
  background-color: transparent !important;
}
.cid-tNQvWiyhP5 .btn:focus {
  box-shadow: none !important;
}
.cid-tNQvWiyhP5 .mbr-section-title,
.cid-tNQvWiyhP5 .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tNQvWiyhP5 .mbr-section-title,
.cid-tNQvWiyhP5 .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tLpBUA6aOP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLpBUA6aOP .mbr-section-subtitle {
  color: #767676;
}
.cid-tNlcXydEH9 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tNlcXydEH9 .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tNlcXydEH9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tNlcXydEH9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNlcXydEH9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNlcXydEH9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tNlcXydEH9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tNlcXydEH9 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tNlcXydEH9 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tNlcXydEH9 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tNlcXydEH9 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tNlcXydEH9 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tNlcXydEH9 ul {
  font-size: 0;
}
.cid-tNlcXydEH9 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tNlcXydEH9 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tNlcXydEH9 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tNlcXydEH9 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tNlcXydEH9 .mbr-gallery-filter ul li:first-child,
.cid-tNlcXydEH9 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tNlcXydEH9 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tNlcXydEH9 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tNlcXydEH9 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tNlcXydEH9 .btn.active:after {
  animation: none;
}
.cid-tNlcXydEH9 .btn:active {
  box-shadow: none !important;
}
.cid-tNlcXydEH9 .btn:hover {
  background: transparent !important;
}
.cid-tNlcXydEH9 .btn:hover:before {
  background: transparent !important;
}
.cid-tNlcXydEH9 .btn:before {
  background-color: transparent !important;
}
.cid-tNlcXydEH9 .btn:focus {
  box-shadow: none !important;
}
.cid-tNlcXydEH9 .mbr-section-title,
.cid-tNlcXydEH9 .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tNlcXydEH9 .mbr-section-title,
.cid-tNlcXydEH9 .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tNldf1ex17 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tNldf1ex17 .mbr-section-subtitle {
  color: #767676;
}
.cid-tNlbXCx1Gi {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tNlbXCx1Gi .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tNlbXCx1Gi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tNlbXCx1Gi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNlbXCx1Gi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNlbXCx1Gi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tNlbXCx1Gi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tNlbXCx1Gi .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tNlbXCx1Gi .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tNlbXCx1Gi .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tNlbXCx1Gi .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tNlbXCx1Gi .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tNlbXCx1Gi ul {
  font-size: 0;
}
.cid-tNlbXCx1Gi .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tNlbXCx1Gi .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tNlbXCx1Gi .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tNlbXCx1Gi .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tNlbXCx1Gi .mbr-gallery-filter ul li:first-child,
.cid-tNlbXCx1Gi .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tNlbXCx1Gi .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tNlbXCx1Gi .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tNlbXCx1Gi .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tNlbXCx1Gi .btn.active:after {
  animation: none;
}
.cid-tNlbXCx1Gi .btn:active {
  box-shadow: none !important;
}
.cid-tNlbXCx1Gi .btn:hover {
  background: transparent !important;
}
.cid-tNlbXCx1Gi .btn:hover:before {
  background: transparent !important;
}
.cid-tNlbXCx1Gi .btn:before {
  background-color: transparent !important;
}
.cid-tNlbXCx1Gi .btn:focus {
  box-shadow: none !important;
}
.cid-tNlbXCx1Gi .mbr-section-title,
.cid-tNlbXCx1Gi .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tNlbXCx1Gi .mbr-section-title,
.cid-tNlbXCx1Gi .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tNldhXayDy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tNldhXayDy .mbr-section-subtitle {
  color: #767676;
}
.cid-tLS10KhNVq {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLS10KhNVq .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tLS10KhNVq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLS10KhNVq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLS10KhNVq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLS10KhNVq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLS10KhNVq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLS10KhNVq .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLS10KhNVq .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLS10KhNVq .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLS10KhNVq .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLS10KhNVq .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLS10KhNVq ul {
  font-size: 0;
}
.cid-tLS10KhNVq .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLS10KhNVq .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLS10KhNVq .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLS10KhNVq .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLS10KhNVq .mbr-gallery-filter ul li:first-child,
.cid-tLS10KhNVq .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLS10KhNVq .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLS10KhNVq .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLS10KhNVq .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLS10KhNVq .btn.active:after {
  animation: none;
}
.cid-tLS10KhNVq .btn:active {
  box-shadow: none !important;
}
.cid-tLS10KhNVq .btn:hover {
  background: transparent !important;
}
.cid-tLS10KhNVq .btn:hover:before {
  background: transparent !important;
}
.cid-tLS10KhNVq .btn:before {
  background-color: transparent !important;
}
.cid-tLS10KhNVq .btn:focus {
  box-shadow: none !important;
}
.cid-tLS10KhNVq .mbr-section-title,
.cid-tLS10KhNVq .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tLS10KhNVq .mbr-section-title,
.cid-tLS10KhNVq .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tLS14Meyji {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLS14Meyji .mbr-section-subtitle {
  color: #767676;
}
.cid-tLADauwbGY {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLADauwbGY .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tLADauwbGY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLADauwbGY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLADauwbGY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLADauwbGY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLADauwbGY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLADauwbGY .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLADauwbGY .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLADauwbGY .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLADauwbGY .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLADauwbGY .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLADauwbGY ul {
  font-size: 0;
}
.cid-tLADauwbGY .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLADauwbGY .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLADauwbGY .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLADauwbGY .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLADauwbGY .mbr-gallery-filter ul li:first-child,
.cid-tLADauwbGY .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLADauwbGY .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLADauwbGY .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLADauwbGY .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLADauwbGY .btn.active:after {
  animation: none;
}
.cid-tLADauwbGY .btn:active {
  box-shadow: none !important;
}
.cid-tLADauwbGY .btn:hover {
  background: transparent !important;
}
.cid-tLADauwbGY .btn:hover:before {
  background: transparent !important;
}
.cid-tLADauwbGY .btn:before {
  background-color: transparent !important;
}
.cid-tLADauwbGY .btn:focus {
  box-shadow: none !important;
}
.cid-tLADauwbGY .mbr-section-title,
.cid-tLADauwbGY .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tLADauwbGY .mbr-section-title,
.cid-tLADauwbGY .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tLADq3pJAC {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLADq3pJAC .mbr-section-subtitle {
  color: #767676;
}
.cid-tLpCFXGAnd {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLpCFXGAnd .mbr-text {
  text-align: left;
  color: #365c9a;
}
.cid-tLpC2ODDOs {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLpC2ODDOs .mbr-text {
  text-align: left;
}
.cid-tLpBYEkgWg {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLpBYEkgWg .mbr-section-subtitle {
  color: #767676;
}
.cid-tLpBYEkgWg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLpBYEkgWg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLpBYEkgWg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLpBYEkgWg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLpBYEkgWg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLpBYEkgWg .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLpBYEkgWg .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLpBYEkgWg .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLpBYEkgWg .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLpBYEkgWg .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLpBYEkgWg ul {
  font-size: 0;
}
.cid-tLpBYEkgWg .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLpBYEkgWg .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLpBYEkgWg .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLpBYEkgWg .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLpBYEkgWg .mbr-gallery-filter ul li:first-child,
.cid-tLpBYEkgWg .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLpBYEkgWg .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLpBYEkgWg .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLpBYEkgWg .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLpBYEkgWg .btn.active:after {
  animation: none;
}
.cid-tLpBYEkgWg .btn:active {
  box-shadow: none !important;
}
.cid-tLpBYEkgWg .btn:hover {
  background: transparent !important;
}
.cid-tLpBYEkgWg .btn:hover:before {
  background: transparent !important;
}
.cid-tLpBYEkgWg .btn:before {
  background-color: transparent !important;
}
.cid-tLpBYEkgWg .btn:focus {
  box-shadow: none !important;
}
.cid-tLpBYEkgWg .mbr-section-title,
.cid-tLpBYEkgWg .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLpCXIpwmZ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLpCXIpwmZ .mbr-section-subtitle {
  color: #767676;
}
.cid-tKc2o7z641 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKc2o7z641 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKc2o7z641 .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-tKc2o7z641 .row {
    padding: 0 24px;
  }
}
.cid-tKc2o7z641 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tKc2o7z641 .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tKc2o7z641 .mbr-section-title {
  color: #2c0066;
}
.cid-tKc2o7z641 .mbr-section-title,
.cid-tKc2o7z641 .mbr-section-btn {
  text-align: left;
  color: #00407d;
}
.cid-rJeaIyTpML {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJeaIyTpML .mbr-text {
  text-align: left;
}
.cid-tKbZGsImaz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tKbZGsImaz .mbr-section-subtitle {
  color: #767676;
}
.cid-tKbZGsImaz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tKbZGsImaz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tKbZGsImaz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tKbZGsImaz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tKbZGsImaz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tKbZGsImaz .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tKbZGsImaz .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tKbZGsImaz .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tKbZGsImaz .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tKbZGsImaz .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tKbZGsImaz ul {
  font-size: 0;
}
.cid-tKbZGsImaz .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tKbZGsImaz .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tKbZGsImaz .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tKbZGsImaz .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tKbZGsImaz .mbr-gallery-filter ul li:first-child,
.cid-tKbZGsImaz .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tKbZGsImaz .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tKbZGsImaz .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tKbZGsImaz .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tKbZGsImaz .btn.active:after {
  animation: none;
}
.cid-tKbZGsImaz .btn:active {
  box-shadow: none !important;
}
.cid-tKbZGsImaz .btn:hover {
  background: transparent !important;
}
.cid-tKbZGsImaz .btn:hover:before {
  background: transparent !important;
}
.cid-tKbZGsImaz .btn:before {
  background-color: transparent !important;
}
.cid-tKbZGsImaz .btn:focus {
  box-shadow: none !important;
}
.cid-tKbZGsImaz .mbr-section-title,
.cid-tKbZGsImaz .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tKc44QF3Vo {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tKc44QF3Vo .mbr-section-subtitle {
  color: #767676;
}
.cid-tKc44QF3Vo .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tKc44QF3Vo .table-wrapper {
  margin: 0 auto;
}
.cid-tKc44QF3Vo table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tKc44QF3Vo table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-tKc44QF3Vo table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tKc44QF3Vo .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tKc44QF3Vo .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tKc44QF3Vo .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tKc44QF3Vo .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tKc44QF3Vo .dataTables_wrapper {
  display: block;
}
.cid-tKc44QF3Vo .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tKc44QF3Vo .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tKc44QF3Vo .head-item:after,
.cid-tKc44QF3Vo .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tKc44QF3Vo .dataTables_filter {
    text-align: center;
  }
  .cid-tKc44QF3Vo .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tKc44QF3Vo .dataTables_filter {
    text-align: center;
  }
  .cid-tKc44QF3Vo .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tKc44QF3Vo table th,
  .cid-tKc44QF3Vo table td {
    padding: .75rem;
  }
}
.cid-tKc44QF3Vo .body-item {
  text-align: left;
}
.cid-tKz6JMamI4 {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tKz6JMamI4 .card {
  display: block;
  position: relative;
}
.cid-tKz6JMamI4 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tKz6JMamI4 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tKz6JMamI4 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tKz6JMamI4 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tKz6JMamI4 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tKz6JMamI4 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tKz6JMamI4 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tKz6JMamI4 .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tKz6JMamI4 .mbr-card-text,
.cid-tKz6JMamI4 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tKz4AI05sG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tKz4AI05sG .card {
  display: block;
  position: relative;
}
.cid-tKz4AI05sG .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tKz4AI05sG .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tKz4AI05sG .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tKz4AI05sG .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tKz4AI05sG .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tKz4AI05sG .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tKz4AI05sG .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tKz4AI05sG .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tKz4AI05sG .mbr-card-text,
.cid-tKz4AI05sG .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tKfV5GOAc0 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tKfV5GOAc0 .card {
  display: block;
  position: relative;
}
.cid-tKfV5GOAc0 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tKfV5GOAc0 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tKfV5GOAc0 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tKfV5GOAc0 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tKfV5GOAc0 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tKfV5GOAc0 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tKfV5GOAc0 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tKfV5GOAc0 .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tKfV5GOAc0 .mbr-card-text,
.cid-tKfV5GOAc0 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tKbTnLKHLw {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tKbTnLKHLw .mbr-section-subtitle {
  color: #767676;
}
.cid-tK2WnQdApz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tK2WnQdApz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tK2WnQdApz .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-tK2WnQdApz .row {
    padding: 0 24px;
  }
}
.cid-tK2WnQdApz .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tK2WnQdApz .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tK2WnQdApz .mbr-section-title {
  color: #2c0066;
}
.cid-tK2WnQdApz .mbr-section-title,
.cid-tK2WnQdApz .mbr-section-btn {
  text-align: left;
  color: #00407d;
}
.cid-tK2SlG4ceJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tK2SlG4ceJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tK2SlG4ceJ .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-tK2SlG4ceJ .row {
    padding: 0 24px;
  }
}
.cid-tK2SlG4ceJ .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tK2SlG4ceJ .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tK2SlG4ceJ .mbr-section-title {
  color: #2c0066;
}
.cid-tK2SlG4ceJ .mbr-section-title,
.cid-tK2SlG4ceJ .mbr-section-btn {
  text-align: left;
  color: #00407d;
}
.cid-tK2Sb5RvKN {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tK2Sb5RvKN .mbr-section-subtitle {
  color: #767676;
}
.cid-tK2Sb5RvKN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tK2Sb5RvKN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tK2Sb5RvKN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tK2Sb5RvKN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tK2Sb5RvKN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tK2Sb5RvKN .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tK2Sb5RvKN .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tK2Sb5RvKN .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tK2Sb5RvKN .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tK2Sb5RvKN .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tK2Sb5RvKN ul {
  font-size: 0;
}
.cid-tK2Sb5RvKN .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tK2Sb5RvKN .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tK2Sb5RvKN .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tK2Sb5RvKN .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tK2Sb5RvKN .mbr-gallery-filter ul li:first-child,
.cid-tK2Sb5RvKN .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tK2Sb5RvKN .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tK2Sb5RvKN .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tK2Sb5RvKN .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tK2Sb5RvKN .btn.active:after {
  animation: none;
}
.cid-tK2Sb5RvKN .btn:active {
  box-shadow: none !important;
}
.cid-tK2Sb5RvKN .btn:hover {
  background: transparent !important;
}
.cid-tK2Sb5RvKN .btn:hover:before {
  background: transparent !important;
}
.cid-tK2Sb5RvKN .btn:before {
  background-color: transparent !important;
}
.cid-tK2Sb5RvKN .btn:focus {
  box-shadow: none !important;
}
.cid-tK2Sb5RvKN .mbr-section-title,
.cid-tK2Sb5RvKN .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tK2WXqNEZR {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tK2WXqNEZR .mbr-section-subtitle {
  color: #767676;
}
.cid-tIiHGHzTks {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIiHGHzTks .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIiHGHzTks .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-tIiHGHzTks .row {
    padding: 0 24px;
  }
}
.cid-tIiHGHzTks .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tIiHGHzTks .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tIiHGHzTks .mbr-section-title {
  color: #2c0066;
}
.cid-tIiHGHzTks .mbr-section-title,
.cid-tIiHGHzTks .mbr-section-btn {
  text-align: left;
  color: #00407d;
}
.cid-tIiHD9Hq1c {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIiHD9Hq1c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIiHD9Hq1c .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-tIiHD9Hq1c .row {
    padding: 0 24px;
  }
}
.cid-tIiHD9Hq1c .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tIiHD9Hq1c .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tIiHD9Hq1c .mbr-section-title {
  color: #2c0066;
}
.cid-tIiHD9Hq1c .mbr-section-title,
.cid-tIiHD9Hq1c .mbr-section-btn {
  text-align: left;
  color: #00407d;
}
.cid-tIiHzjJLp3 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tIiHzjJLp3 .mbr-section-subtitle {
  color: #767676;
}
.cid-tIiHzjJLp3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tIiHzjJLp3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIiHzjJLp3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tIiHzjJLp3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tIiHzjJLp3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tIiHzjJLp3 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tIiHzjJLp3 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tIiHzjJLp3 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tIiHzjJLp3 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tIiHzjJLp3 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tIiHzjJLp3 ul {
  font-size: 0;
}
.cid-tIiHzjJLp3 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tIiHzjJLp3 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tIiHzjJLp3 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tIiHzjJLp3 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tIiHzjJLp3 .mbr-gallery-filter ul li:first-child,
.cid-tIiHzjJLp3 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tIiHzjJLp3 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tIiHzjJLp3 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tIiHzjJLp3 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tIiHzjJLp3 .btn.active:after {
  animation: none;
}
.cid-tIiHzjJLp3 .btn:active {
  box-shadow: none !important;
}
.cid-tIiHzjJLp3 .btn:hover {
  background: transparent !important;
}
.cid-tIiHzjJLp3 .btn:hover:before {
  background: transparent !important;
}
.cid-tIiHzjJLp3 .btn:before {
  background-color: transparent !important;
}
.cid-tIiHzjJLp3 .btn:focus {
  box-shadow: none !important;
}
.cid-tIiHzjJLp3 .mbr-section-title,
.cid-tIiHzjJLp3 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tIiHKiAvQj {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tIiHKiAvQj .mbr-section-subtitle {
  color: #767676;
}
.cid-tHOz7knHtm {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHOz7knHtm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHOz7knHtm .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-tHOz7knHtm .row {
    padding: 0 24px;
  }
}
.cid-tHOz7knHtm .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tHOz7knHtm .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tHOz7knHtm .mbr-section-title {
  color: #2c0066;
}
.cid-tHOz7knHtm .mbr-section-title,
.cid-tHOz7knHtm .mbr-section-btn {
  text-align: center;
  color: #00407d;
}
.cid-tHOz7knHtm .mbr-section-title,
.cid-tHOz7knHtm .mbr-section-btn DIV {
  text-align: left;
}
.cid-tHOxuffKAo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHOxuffKAo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHOxuffKAo .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-tHOxuffKAo .row {
    padding: 0 24px;
  }
}
.cid-tHOxuffKAo .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tHOxuffKAo .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tHOxuffKAo .mbr-section-title {
  color: #2c0066;
}
.cid-tHOxuffKAo .mbr-section-title,
.cid-tHOxuffKAo .mbr-section-btn {
  text-align: center;
  color: #00407d;
}
.cid-tHOxuffKAo .mbr-section-title,
.cid-tHOxuffKAo .mbr-section-btn DIV {
  text-align: left;
}
.cid-tHOx0cz3Me {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tHOx0cz3Me .mbr-section-subtitle {
  color: #767676;
}
.cid-tHOx0cz3Me .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tHOx0cz3Me .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tHOx0cz3Me .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tHOx0cz3Me .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tHOx0cz3Me .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tHOx0cz3Me .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tHOx0cz3Me .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHOx0cz3Me .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tHOx0cz3Me .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHOx0cz3Me .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tHOx0cz3Me ul {
  font-size: 0;
}
.cid-tHOx0cz3Me .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tHOx0cz3Me .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tHOx0cz3Me .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tHOx0cz3Me .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tHOx0cz3Me .mbr-gallery-filter ul li:first-child,
.cid-tHOx0cz3Me .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tHOx0cz3Me .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tHOx0cz3Me .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tHOx0cz3Me .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tHOx0cz3Me .btn.active:after {
  animation: none;
}
.cid-tHOx0cz3Me .btn:active {
  box-shadow: none !important;
}
.cid-tHOx0cz3Me .btn:hover {
  background: transparent !important;
}
.cid-tHOx0cz3Me .btn:hover:before {
  background: transparent !important;
}
.cid-tHOx0cz3Me .btn:before {
  background-color: transparent !important;
}
.cid-tHOx0cz3Me .btn:focus {
  box-shadow: none !important;
}
.cid-tHOx0cz3Me .mbr-section-title,
.cid-tHOx0cz3Me .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tHOy7C4kxh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tHOy7C4kxh .mbr-section-subtitle {
  color: #767676;
}
.cid-tG6XppgWMt {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tG6XppgWMt .mbr-text {
  text-align: left;
}
.cid-tG6VHLlC2j {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tG6VHLlC2j .mbr-text {
  text-align: left;
}
.cid-tG6VzgnBpj {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tG6VzgnBpj .mbr-section-subtitle {
  color: #767676;
}
.cid-tG6VzgnBpj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tG6VzgnBpj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tG6VzgnBpj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tG6VzgnBpj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tG6VzgnBpj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tG6VzgnBpj .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tG6VzgnBpj .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tG6VzgnBpj .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tG6VzgnBpj .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tG6VzgnBpj .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tG6VzgnBpj ul {
  font-size: 0;
}
.cid-tG6VzgnBpj .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tG6VzgnBpj .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tG6VzgnBpj .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tG6VzgnBpj .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tG6VzgnBpj .mbr-gallery-filter ul li:first-child,
.cid-tG6VzgnBpj .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tG6VzgnBpj .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tG6VzgnBpj .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tG6VzgnBpj .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tG6VzgnBpj .btn.active:after {
  animation: none;
}
.cid-tG6VzgnBpj .btn:active {
  box-shadow: none !important;
}
.cid-tG6VzgnBpj .btn:hover {
  background: transparent !important;
}
.cid-tG6VzgnBpj .btn:hover:before {
  background: transparent !important;
}
.cid-tG6VzgnBpj .btn:before {
  background-color: transparent !important;
}
.cid-tG6VzgnBpj .btn:focus {
  box-shadow: none !important;
}
.cid-tG6VzgnBpj .mbr-section-title,
.cid-tG6VzgnBpj .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tG6VoBiLOn {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tG6VoBiLOn .mbr-section-subtitle {
  color: #767676;
}
.cid-tFlLtyF86Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFlLtyF86Q .mbr-text {
  text-align: left;
}
.cid-tFlMtIk2I0 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFlMtIk2I0 .mbr-text {
  text-align: left;
}
.cid-tFlLfUo5Il {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tFlLfUo5Il .mbr-section-subtitle {
  color: #767676;
}
.cid-tFlLfUo5Il .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tFlLfUo5Il .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFlLfUo5Il .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFlLfUo5Il .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tFlLfUo5Il .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tFlLfUo5Il .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tFlLfUo5Il .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tFlLfUo5Il .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tFlLfUo5Il .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tFlLfUo5Il .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tFlLfUo5Il ul {
  font-size: 0;
}
.cid-tFlLfUo5Il .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tFlLfUo5Il .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tFlLfUo5Il .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tFlLfUo5Il .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tFlLfUo5Il .mbr-gallery-filter ul li:first-child,
.cid-tFlLfUo5Il .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tFlLfUo5Il .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tFlLfUo5Il .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tFlLfUo5Il .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tFlLfUo5Il .btn.active:after {
  animation: none;
}
.cid-tFlLfUo5Il .btn:active {
  box-shadow: none !important;
}
.cid-tFlLfUo5Il .btn:hover {
  background: transparent !important;
}
.cid-tFlLfUo5Il .btn:hover:before {
  background: transparent !important;
}
.cid-tFlLfUo5Il .btn:before {
  background-color: transparent !important;
}
.cid-tFlLfUo5Il .btn:focus {
  box-shadow: none !important;
}
.cid-tFlLfUo5Il .mbr-section-title,
.cid-tFlLfUo5Il .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tFlL78fIdN {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tFlL78fIdN .mbr-section-subtitle {
  color: #767676;
}
.cid-tFablyfUrb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFablyfUrb .mbr-text {
  text-align: left;
}
.cid-tFab3iyTPa {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFab3iyTPa .mbr-text {
  text-align: left;
}
.cid-tFaaLRzvMX {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tFaaLRzvMX .mbr-section-subtitle {
  color: #767676;
}
.cid-tFaaLRzvMX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tFaaLRzvMX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFaaLRzvMX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFaaLRzvMX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tFaaLRzvMX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tFaaLRzvMX .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tFaaLRzvMX .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tFaaLRzvMX .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tFaaLRzvMX .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tFaaLRzvMX .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tFaaLRzvMX ul {
  font-size: 0;
}
.cid-tFaaLRzvMX .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tFaaLRzvMX .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tFaaLRzvMX .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tFaaLRzvMX .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tFaaLRzvMX .mbr-gallery-filter ul li:first-child,
.cid-tFaaLRzvMX .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tFaaLRzvMX .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tFaaLRzvMX .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tFaaLRzvMX .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tFaaLRzvMX .btn.active:after {
  animation: none;
}
.cid-tFaaLRzvMX .btn:active {
  box-shadow: none !important;
}
.cid-tFaaLRzvMX .btn:hover {
  background: transparent !important;
}
.cid-tFaaLRzvMX .btn:hover:before {
  background: transparent !important;
}
.cid-tFaaLRzvMX .btn:before {
  background-color: transparent !important;
}
.cid-tFaaLRzvMX .btn:focus {
  box-shadow: none !important;
}
.cid-tFaaLRzvMX .mbr-section-title,
.cid-tFaaLRzvMX .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tFaaxK9bEP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tFaaxK9bEP .mbr-section-subtitle {
  color: #767676;
}
.cid-tEYYl7Ja9e {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tEYYl7Ja9e .mbr-text {
  text-align: left;
}
.cid-tEYWXnrd3s {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tEYWXnrd3s .mbr-text {
  text-align: left;
}
.cid-tEYYWRBuwZ {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-tEYYWRBuwZ .container-fluid {
  padding: 0 3rem;
}
.cid-tEYYWRBuwZ .image-block {
  position: relative;
  margin: auto;
}
.cid-tEYYWRBuwZ .image-block img {
  width: 100%;
}
.cid-tEYYWRBuwZ .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-tEYYWRBuwZ .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tEYYWRBuwZ .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-tEYYWRBuwZ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tEYZsMXQY5 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tEYZsMXQY5 .mbr-section-subtitle {
  color: #767676;
}
.cid-tEwwGwYGgg {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tEwwGwYGgg .mbr-text {
  text-align: left;
}
.cid-tEwwIRh2rL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tEwwIRh2rL .mbr-text {
  text-align: left;
}
.cid-tEwwBrzxvX {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tEwwBrzxvX .mbr-section-subtitle {
  color: #767676;
}
.cid-tEwwBrzxvX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tEwwBrzxvX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEwwBrzxvX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tEwwBrzxvX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tEwwBrzxvX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tEwwBrzxvX .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tEwwBrzxvX .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tEwwBrzxvX .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tEwwBrzxvX .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tEwwBrzxvX .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tEwwBrzxvX ul {
  font-size: 0;
}
.cid-tEwwBrzxvX .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tEwwBrzxvX .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tEwwBrzxvX .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tEwwBrzxvX .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tEwwBrzxvX .mbr-gallery-filter ul li:first-child,
.cid-tEwwBrzxvX .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tEwwBrzxvX .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tEwwBrzxvX .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tEwwBrzxvX .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tEwwBrzxvX .btn.active:after {
  animation: none;
}
.cid-tEwwBrzxvX .btn:active {
  box-shadow: none !important;
}
.cid-tEwwBrzxvX .btn:hover {
  background: transparent !important;
}
.cid-tEwwBrzxvX .btn:hover:before {
  background: transparent !important;
}
.cid-tEwwBrzxvX .btn:before {
  background-color: transparent !important;
}
.cid-tEwwBrzxvX .btn:focus {
  box-shadow: none !important;
}
.cid-tEwwBrzxvX .mbr-section-title,
.cid-tEwwBrzxvX .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tEwwDX02gi {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tEwwDX02gi .mbr-section-subtitle {
  color: #767676;
}
.cid-tBLLM3Wpsf {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tBLLM3Wpsf .mbr-text {
  text-align: left;
}
.cid-tBLLnisZUK {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tBLLnisZUK .mbr-text {
  text-align: left;
}
.cid-tBLKAgnwLY {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tBLKAgnwLY .mbr-section-subtitle {
  color: #767676;
}
.cid-tBLKAgnwLY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tBLKAgnwLY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBLKAgnwLY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tBLKAgnwLY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tBLKAgnwLY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tBLKAgnwLY .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tBLKAgnwLY .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tBLKAgnwLY .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tBLKAgnwLY .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tBLKAgnwLY .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tBLKAgnwLY ul {
  font-size: 0;
}
.cid-tBLKAgnwLY .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tBLKAgnwLY .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tBLKAgnwLY .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tBLKAgnwLY .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tBLKAgnwLY .mbr-gallery-filter ul li:first-child,
.cid-tBLKAgnwLY .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tBLKAgnwLY .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tBLKAgnwLY .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tBLKAgnwLY .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tBLKAgnwLY .btn.active:after {
  animation: none;
}
.cid-tBLKAgnwLY .btn:active {
  box-shadow: none !important;
}
.cid-tBLKAgnwLY .btn:hover {
  background: transparent !important;
}
.cid-tBLKAgnwLY .btn:hover:before {
  background: transparent !important;
}
.cid-tBLKAgnwLY .btn:before {
  background-color: transparent !important;
}
.cid-tBLKAgnwLY .btn:focus {
  box-shadow: none !important;
}
.cid-tBLKAgnwLY .mbr-section-title,
.cid-tBLKAgnwLY .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tBLKZrQriG {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tBLKZrQriG .mbr-section-subtitle {
  color: #767676;
}
.cid-tyDQjPRJzG {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tyDQjPRJzG .mbr-text {
  text-align: left;
}
.cid-tyDOGvd3b9 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tyDOGvd3b9 .mbr-text {
  text-align: left;
}
.cid-tyDODawWRe {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tyDODawWRe .mbr-section-subtitle {
  color: #767676;
}
.cid-tyDODawWRe .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tyDODawWRe .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tyDODawWRe .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tyDODawWRe .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tyDODawWRe .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tyDODawWRe .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tyDODawWRe .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tyDODawWRe .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tyDODawWRe .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tyDODawWRe .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tyDODawWRe ul {
  font-size: 0;
}
.cid-tyDODawWRe .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tyDODawWRe .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tyDODawWRe .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tyDODawWRe .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tyDODawWRe .mbr-gallery-filter ul li:first-child,
.cid-tyDODawWRe .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tyDODawWRe .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tyDODawWRe .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tyDODawWRe .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tyDODawWRe .btn.active:after {
  animation: none;
}
.cid-tyDODawWRe .btn:active {
  box-shadow: none !important;
}
.cid-tyDODawWRe .btn:hover {
  background: transparent !important;
}
.cid-tyDODawWRe .btn:hover:before {
  background: transparent !important;
}
.cid-tyDODawWRe .btn:before {
  background-color: transparent !important;
}
.cid-tyDODawWRe .btn:focus {
  box-shadow: none !important;
}
.cid-tyDODawWRe .mbr-section-title,
.cid-tyDODawWRe .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tyDOyCe0mT {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tyDOyCe0mT .mbr-section-subtitle {
  color: #767676;
}
.cid-tyzZGTPFHL {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tyzZGTPFHL .mbr-text {
  text-align: left;
}
.cid-tyzWpQ6yfT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tyzWpQ6yfT .mbr-text {
  text-align: left;
}
.cid-tyzWhPG1ZT {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tyzWhPG1ZT .mbr-section-subtitle {
  color: #767676;
}
.cid-tyzWhPG1ZT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tyzWhPG1ZT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tyzWhPG1ZT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tyzWhPG1ZT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tyzWhPG1ZT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tyzWhPG1ZT .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tyzWhPG1ZT .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tyzWhPG1ZT .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tyzWhPG1ZT .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tyzWhPG1ZT .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tyzWhPG1ZT ul {
  font-size: 0;
}
.cid-tyzWhPG1ZT .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tyzWhPG1ZT .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tyzWhPG1ZT .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tyzWhPG1ZT .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tyzWhPG1ZT .mbr-gallery-filter ul li:first-child,
.cid-tyzWhPG1ZT .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tyzWhPG1ZT .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tyzWhPG1ZT .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tyzWhPG1ZT .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tyzWhPG1ZT .btn.active:after {
  animation: none;
}
.cid-tyzWhPG1ZT .btn:active {
  box-shadow: none !important;
}
.cid-tyzWhPG1ZT .btn:hover {
  background: transparent !important;
}
.cid-tyzWhPG1ZT .btn:hover:before {
  background: transparent !important;
}
.cid-tyzWhPG1ZT .btn:before {
  background-color: transparent !important;
}
.cid-tyzWhPG1ZT .btn:focus {
  box-shadow: none !important;
}
.cid-tyzWhPG1ZT .mbr-section-title,
.cid-tyzWhPG1ZT .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tyzWbLX8QE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tyzWbLX8QE .mbr-section-subtitle {
  color: #767676;
}
.cid-tyyGKs3awP {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tyyGKs3awP .mbr-text {
  text-align: left;
}
.cid-tyyFjTnsxF {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tyyFjTnsxF .mbr-text {
  text-align: left;
}
.cid-tyyFgFqkLj {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tyyFgFqkLj .mbr-section-subtitle {
  color: #767676;
}
.cid-tyyFgFqkLj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tyyFgFqkLj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tyyFgFqkLj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tyyFgFqkLj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tyyFgFqkLj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tyyFgFqkLj .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tyyFgFqkLj .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tyyFgFqkLj .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tyyFgFqkLj .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tyyFgFqkLj .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tyyFgFqkLj ul {
  font-size: 0;
}
.cid-tyyFgFqkLj .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tyyFgFqkLj .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tyyFgFqkLj .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tyyFgFqkLj .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tyyFgFqkLj .mbr-gallery-filter ul li:first-child,
.cid-tyyFgFqkLj .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tyyFgFqkLj .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tyyFgFqkLj .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tyyFgFqkLj .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tyyFgFqkLj .btn.active:after {
  animation: none;
}
.cid-tyyFgFqkLj .btn:active {
  box-shadow: none !important;
}
.cid-tyyFgFqkLj .btn:hover {
  background: transparent !important;
}
.cid-tyyFgFqkLj .btn:hover:before {
  background: transparent !important;
}
.cid-tyyFgFqkLj .btn:before {
  background-color: transparent !important;
}
.cid-tyyFgFqkLj .btn:focus {
  box-shadow: none !important;
}
.cid-tyyFgFqkLj .mbr-section-title,
.cid-tyyFgFqkLj .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tyyF9NNpPM {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tyyF9NNpPM .mbr-section-subtitle {
  color: #767676;
}
.cid-tyt8ZsDYd2 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tyt8ZsDYd2 .mbr-text {
  text-align: left;
}
.cid-tyt8JXyzxx {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tyt8JXyzxx .mbr-text {
  text-align: left;
}
.cid-tyt8yJt28s {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tyt8yJt28s .mbr-section-subtitle {
  color: #767676;
}
.cid-tyt8yJt28s .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tyt8yJt28s .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tyt8yJt28s .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tyt8yJt28s .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tyt8yJt28s .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tyt8yJt28s .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tyt8yJt28s .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tyt8yJt28s .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tyt8yJt28s .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tyt8yJt28s .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tyt8yJt28s ul {
  font-size: 0;
}
.cid-tyt8yJt28s .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tyt8yJt28s .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tyt8yJt28s .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tyt8yJt28s .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tyt8yJt28s .mbr-gallery-filter ul li:first-child,
.cid-tyt8yJt28s .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tyt8yJt28s .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tyt8yJt28s .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tyt8yJt28s .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tyt8yJt28s .btn.active:after {
  animation: none;
}
.cid-tyt8yJt28s .btn:active {
  box-shadow: none !important;
}
.cid-tyt8yJt28s .btn:hover {
  background: transparent !important;
}
.cid-tyt8yJt28s .btn:hover:before {
  background: transparent !important;
}
.cid-tyt8yJt28s .btn:before {
  background-color: transparent !important;
}
.cid-tyt8yJt28s .btn:focus {
  box-shadow: none !important;
}
.cid-tyt8yJt28s .mbr-section-title,
.cid-tyt8yJt28s .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tyt8rZp6QL {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tyt8rZp6QL .mbr-section-subtitle {
  color: #767676;
}
.cid-txNnmySzj2 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txNnmySzj2 .mbr-text {
  text-align: left;
}
.cid-txNnh6BIDI {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txNnh6BIDI .mbr-text {
  text-align: left;
}
.cid-txNneFeTny {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-txNneFeTny .mbr-section-subtitle {
  color: #767676;
}
.cid-txNneFeTny .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txNneFeTny .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txNneFeTny .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txNneFeTny .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txNneFeTny .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-txNneFeTny .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-txNneFeTny .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-txNneFeTny .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-txNneFeTny .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-txNneFeTny .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-txNneFeTny ul {
  font-size: 0;
}
.cid-txNneFeTny .mbr-gallery-filter ul {
  text-align: center;
}
.cid-txNneFeTny .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-txNneFeTny .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-txNneFeTny .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-txNneFeTny .mbr-gallery-filter ul li:first-child,
.cid-txNneFeTny .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-txNneFeTny .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-txNneFeTny .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-txNneFeTny .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-txNneFeTny .btn.active:after {
  animation: none;
}
.cid-txNneFeTny .btn:active {
  box-shadow: none !important;
}
.cid-txNneFeTny .btn:hover {
  background: transparent !important;
}
.cid-txNneFeTny .btn:hover:before {
  background: transparent !important;
}
.cid-txNneFeTny .btn:before {
  background-color: transparent !important;
}
.cid-txNneFeTny .btn:focus {
  box-shadow: none !important;
}
.cid-txNneFeTny .mbr-section-title,
.cid-txNneFeTny .mbr-gallery-filter ul {
  text-align: center;
}
.cid-txNncfpYR1 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-txNncfpYR1 .mbr-section-subtitle {
  color: #767676;
}
.cid-txqxuBoRX4 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txqxuBoRX4 .mbr-text {
  text-align: left;
}
.cid-txqxiigi5W {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txqxiigi5W .mbr-text {
  text-align: left;
}
.cid-txqxbLlust {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-txqxbLlust .mbr-section-subtitle {
  color: #767676;
}
.cid-txqxbLlust .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txqxbLlust .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txqxbLlust .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txqxbLlust .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txqxbLlust .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-txqxbLlust .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-txqxbLlust .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-txqxbLlust .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-txqxbLlust .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-txqxbLlust .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-txqxbLlust ul {
  font-size: 0;
}
.cid-txqxbLlust .mbr-gallery-filter ul {
  text-align: center;
}
.cid-txqxbLlust .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-txqxbLlust .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-txqxbLlust .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-txqxbLlust .mbr-gallery-filter ul li:first-child,
.cid-txqxbLlust .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-txqxbLlust .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-txqxbLlust .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-txqxbLlust .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-txqxbLlust .btn.active:after {
  animation: none;
}
.cid-txqxbLlust .btn:active {
  box-shadow: none !important;
}
.cid-txqxbLlust .btn:hover {
  background: transparent !important;
}
.cid-txqxbLlust .btn:hover:before {
  background: transparent !important;
}
.cid-txqxbLlust .btn:before {
  background-color: transparent !important;
}
.cid-txqxbLlust .btn:focus {
  box-shadow: none !important;
}
.cid-txqxbLlust .mbr-section-title,
.cid-txqxbLlust .mbr-gallery-filter ul {
  text-align: center;
}
.cid-txqxezmxEx {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-txqxezmxEx .mbr-section-subtitle {
  color: #767676;
}
.cid-tx9dvbxAhE {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx9dvbxAhE .mbr-text {
  text-align: left;
}
.cid-tx9cWNYqpO {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tx9cWNYqpO .mbr-text {
  text-align: left;
}
.cid-tx9cOrLZgd {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tx9cOrLZgd .mbr-section-subtitle {
  color: #767676;
}
.cid-tx9cOrLZgd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tx9cOrLZgd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tx9cOrLZgd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tx9cOrLZgd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tx9cOrLZgd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tx9cOrLZgd .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tx9cOrLZgd .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tx9cOrLZgd .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tx9cOrLZgd .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tx9cOrLZgd .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tx9cOrLZgd ul {
  font-size: 0;
}
.cid-tx9cOrLZgd .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tx9cOrLZgd .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tx9cOrLZgd .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tx9cOrLZgd .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tx9cOrLZgd .mbr-gallery-filter ul li:first-child,
.cid-tx9cOrLZgd .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tx9cOrLZgd .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tx9cOrLZgd .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tx9cOrLZgd .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tx9cOrLZgd .btn.active:after {
  animation: none;
}
.cid-tx9cOrLZgd .btn:active {
  box-shadow: none !important;
}
.cid-tx9cOrLZgd .btn:hover {
  background: transparent !important;
}
.cid-tx9cOrLZgd .btn:hover:before {
  background: transparent !important;
}
.cid-tx9cOrLZgd .btn:before {
  background-color: transparent !important;
}
.cid-tx9cOrLZgd .btn:focus {
  box-shadow: none !important;
}
.cid-tx9cOrLZgd .mbr-section-title,
.cid-tx9cOrLZgd .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tx9cRrYLVm {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tx9cRrYLVm .mbr-section-subtitle {
  color: #767676;
}
.cid-twLUNatjzM {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-twLUNatjzM .mbr-text {
  text-align: left;
}
.cid-twLUPnkDqi {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-twLUPnkDqi .mbr-text {
  text-align: left;
}
.cid-twLUIStUzw {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-twLUIStUzw .mbr-section-subtitle {
  color: #767676;
}
.cid-twLUIStUzw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twLUIStUzw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twLUIStUzw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twLUIStUzw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twLUIStUzw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-twLUIStUzw .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-twLUIStUzw .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twLUIStUzw .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-twLUIStUzw .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twLUIStUzw .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-twLUIStUzw ul {
  font-size: 0;
}
.cid-twLUIStUzw .mbr-gallery-filter ul {
  text-align: center;
}
.cid-twLUIStUzw .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-twLUIStUzw .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-twLUIStUzw .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-twLUIStUzw .mbr-gallery-filter ul li:first-child,
.cid-twLUIStUzw .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-twLUIStUzw .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-twLUIStUzw .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-twLUIStUzw .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-twLUIStUzw .btn.active:after {
  animation: none;
}
.cid-twLUIStUzw .btn:active {
  box-shadow: none !important;
}
.cid-twLUIStUzw .btn:hover {
  background: transparent !important;
}
.cid-twLUIStUzw .btn:hover:before {
  background: transparent !important;
}
.cid-twLUIStUzw .btn:before {
  background-color: transparent !important;
}
.cid-twLUIStUzw .btn:focus {
  box-shadow: none !important;
}
.cid-twLUIStUzw .mbr-section-title,
.cid-twLUIStUzw .mbr-gallery-filter ul {
  text-align: center;
}
.cid-twLWti8Ibo {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-twLWti8Ibo .mbr-section-subtitle {
  color: #767676;
}
.cid-tvJ8JQDXCV {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvJ8JQDXCV .mbr-text {
  text-align: left;
}
.cid-tvJ98HUmXc {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvJ98HUmXc .mbr-text {
  text-align: left;
}
.cid-tvJ95wNubm {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tvJ95wNubm .mbr-section-subtitle {
  color: #767676;
}
.cid-tvJ95wNubm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tvJ95wNubm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tvJ95wNubm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tvJ95wNubm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tvJ95wNubm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tvJ95wNubm .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tvJ95wNubm .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tvJ95wNubm .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tvJ95wNubm .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tvJ95wNubm .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tvJ95wNubm ul {
  font-size: 0;
}
.cid-tvJ95wNubm .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tvJ95wNubm .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tvJ95wNubm .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tvJ95wNubm .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tvJ95wNubm .mbr-gallery-filter ul li:first-child,
.cid-tvJ95wNubm .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tvJ95wNubm .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tvJ95wNubm .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tvJ95wNubm .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tvJ95wNubm .btn.active:after {
  animation: none;
}
.cid-tvJ95wNubm .btn:active {
  box-shadow: none !important;
}
.cid-tvJ95wNubm .btn:hover {
  background: transparent !important;
}
.cid-tvJ95wNubm .btn:hover:before {
  background: transparent !important;
}
.cid-tvJ95wNubm .btn:before {
  background-color: transparent !important;
}
.cid-tvJ95wNubm .btn:focus {
  box-shadow: none !important;
}
.cid-tvJ95wNubm .mbr-section-title,
.cid-tvJ95wNubm .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tvJ8DwTOok {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tvJ8DwTOok .mbr-section-subtitle {
  color: #767676;
}
.cid-tuB1yiLDxK {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tuB1yiLDxK .mbr-text {
  text-align: left;
}
.cid-tuAZMkDrff {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tuAZMkDrff .mbr-text {
  text-align: left;
}
.cid-tuAZOJ9PAx {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tuAZOJ9PAx .mbr-section-subtitle {
  color: #767676;
}
.cid-tuAZOJ9PAx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tuAZOJ9PAx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tuAZOJ9PAx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tuAZOJ9PAx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tuAZOJ9PAx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tuAZOJ9PAx .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tuAZOJ9PAx .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tuAZOJ9PAx .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tuAZOJ9PAx .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tuAZOJ9PAx .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tuAZOJ9PAx ul {
  font-size: 0;
}
.cid-tuAZOJ9PAx .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tuAZOJ9PAx .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tuAZOJ9PAx .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tuAZOJ9PAx .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tuAZOJ9PAx .mbr-gallery-filter ul li:first-child,
.cid-tuAZOJ9PAx .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tuAZOJ9PAx .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tuAZOJ9PAx .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tuAZOJ9PAx .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tuAZOJ9PAx .btn.active:after {
  animation: none;
}
.cid-tuAZOJ9PAx .btn:active {
  box-shadow: none !important;
}
.cid-tuAZOJ9PAx .btn:hover {
  background: transparent !important;
}
.cid-tuAZOJ9PAx .btn:hover:before {
  background: transparent !important;
}
.cid-tuAZOJ9PAx .btn:before {
  background-color: transparent !important;
}
.cid-tuAZOJ9PAx .btn:focus {
  box-shadow: none !important;
}
.cid-tuAZOJ9PAx .mbr-section-title,
.cid-tuAZOJ9PAx .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tuAZJSPbQd {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tuAZJSPbQd .mbr-section-subtitle {
  color: #767676;
}
.cid-tuAZJSPbQd .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tuAZJSPbQd .table-wrapper {
  margin: 0 auto;
}
.cid-tuAZJSPbQd table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tuAZJSPbQd table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-tuAZJSPbQd table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tuAZJSPbQd .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tuAZJSPbQd .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tuAZJSPbQd .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tuAZJSPbQd .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tuAZJSPbQd .dataTables_wrapper {
  display: block;
}
.cid-tuAZJSPbQd .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tuAZJSPbQd .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tuAZJSPbQd .head-item:after,
.cid-tuAZJSPbQd .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tuAZJSPbQd .dataTables_filter {
    text-align: center;
  }
  .cid-tuAZJSPbQd .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tuAZJSPbQd .dataTables_filter {
    text-align: center;
  }
  .cid-tuAZJSPbQd .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tuAZJSPbQd table th,
  .cid-tuAZJSPbQd table td {
    padding: .75rem;
  }
}
.cid-tuAZJSPbQd .body-item {
  text-align: left;
}
.cid-tuAYNB7Szu {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tuAYNB7Szu .mbr-section-subtitle {
  color: #767676;
}
.cid-tu7rNXYXCv {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tu7rNXYXCv .mbr-text {
  text-align: left;
}
.cid-tu7roaCia5 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tu7roaCia5 .mbr-text {
  text-align: left;
}
.cid-tu7rm8tg3e {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tu7rm8tg3e .mbr-section-subtitle {
  color: #767676;
}
.cid-tu7rm8tg3e .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tu7rm8tg3e .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tu7rm8tg3e .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tu7rm8tg3e .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tu7rm8tg3e .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tu7rm8tg3e .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tu7rm8tg3e .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tu7rm8tg3e .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tu7rm8tg3e .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tu7rm8tg3e .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tu7rm8tg3e ul {
  font-size: 0;
}
.cid-tu7rm8tg3e .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tu7rm8tg3e .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tu7rm8tg3e .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tu7rm8tg3e .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tu7rm8tg3e .mbr-gallery-filter ul li:first-child,
.cid-tu7rm8tg3e .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tu7rm8tg3e .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tu7rm8tg3e .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tu7rm8tg3e .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tu7rm8tg3e .btn.active:after {
  animation: none;
}
.cid-tu7rm8tg3e .btn:active {
  box-shadow: none !important;
}
.cid-tu7rm8tg3e .btn:hover {
  background: transparent !important;
}
.cid-tu7rm8tg3e .btn:hover:before {
  background: transparent !important;
}
.cid-tu7rm8tg3e .btn:before {
  background-color: transparent !important;
}
.cid-tu7rm8tg3e .btn:focus {
  box-shadow: none !important;
}
.cid-tu7rm8tg3e .mbr-section-title,
.cid-tu7rm8tg3e .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tu7quxRz9V {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tu7quxRz9V .mbr-section-subtitle {
  color: #767676;
}
.cid-tthYTQ3H6k {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tthYTQ3H6k .mbr-text {
  text-align: left;
}
.cid-tthYgiuwE2 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tthYgiuwE2 .mbr-text {
  text-align: left;
}
.cid-tthYbc0r3l {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tthYbc0r3l .mbr-section-subtitle {
  color: #767676;
}
.cid-tthYbc0r3l .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tthYbc0r3l .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tthYbc0r3l .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tthYbc0r3l .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tthYbc0r3l .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tthYbc0r3l .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tthYbc0r3l .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tthYbc0r3l .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tthYbc0r3l .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tthYbc0r3l .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tthYbc0r3l ul {
  font-size: 0;
}
.cid-tthYbc0r3l .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tthYbc0r3l .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tthYbc0r3l .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tthYbc0r3l .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tthYbc0r3l .mbr-gallery-filter ul li:first-child,
.cid-tthYbc0r3l .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tthYbc0r3l .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tthYbc0r3l .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tthYbc0r3l .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tthYbc0r3l .btn.active:after {
  animation: none;
}
.cid-tthYbc0r3l .btn:active {
  box-shadow: none !important;
}
.cid-tthYbc0r3l .btn:hover {
  background: transparent !important;
}
.cid-tthYbc0r3l .btn:hover:before {
  background: transparent !important;
}
.cid-tthYbc0r3l .btn:before {
  background-color: transparent !important;
}
.cid-tthYbc0r3l .btn:focus {
  box-shadow: none !important;
}
.cid-tthYbc0r3l .mbr-section-title,
.cid-tthYbc0r3l .mbr-gallery-filter ul {
  text-align: center;
}
.cid-ttinyEw1f2 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ttinyEw1f2 .mbr-section-subtitle {
  color: #767676;
}
.cid-ttinyEw1f2 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-ttinyEw1f2 .table-wrapper {
  margin: 0 auto;
}
.cid-ttinyEw1f2 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-ttinyEw1f2 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-ttinyEw1f2 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-ttinyEw1f2 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-ttinyEw1f2 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-ttinyEw1f2 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-ttinyEw1f2 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-ttinyEw1f2 .dataTables_wrapper {
  display: block;
}
.cid-ttinyEw1f2 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-ttinyEw1f2 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-ttinyEw1f2 .head-item:after,
.cid-ttinyEw1f2 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-ttinyEw1f2 .dataTables_filter {
    text-align: center;
  }
  .cid-ttinyEw1f2 .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-ttinyEw1f2 .dataTables_filter {
    text-align: center;
  }
  .cid-ttinyEw1f2 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-ttinyEw1f2 table th,
  .cid-ttinyEw1f2 table td {
    padding: .75rem;
  }
}
.cid-ttinyEw1f2 .body-item {
  text-align: left;
}
.cid-tthY1SN0Hb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tthY1SN0Hb .mbr-section-subtitle {
  color: #767676;
}
.cid-ttbWNjpnwc {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ttbWNjpnwc .mbr-text {
  text-align: left;
}
.cid-ttbVL2OSUV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ttbVL2OSUV .mbr-text {
  text-align: left;
}
.cid-ttbVHgyy6i {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-ttbVHgyy6i .mbr-section-subtitle {
  color: #767676;
}
.cid-ttbVHgyy6i .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ttbVHgyy6i .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttbVHgyy6i .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ttbVHgyy6i .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ttbVHgyy6i .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-ttbVHgyy6i .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-ttbVHgyy6i .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ttbVHgyy6i .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-ttbVHgyy6i .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ttbVHgyy6i .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-ttbVHgyy6i ul {
  font-size: 0;
}
.cid-ttbVHgyy6i .mbr-gallery-filter ul {
  text-align: center;
}
.cid-ttbVHgyy6i .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-ttbVHgyy6i .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-ttbVHgyy6i .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-ttbVHgyy6i .mbr-gallery-filter ul li:first-child,
.cid-ttbVHgyy6i .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-ttbVHgyy6i .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-ttbVHgyy6i .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-ttbVHgyy6i .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-ttbVHgyy6i .btn.active:after {
  animation: none;
}
.cid-ttbVHgyy6i .btn:active {
  box-shadow: none !important;
}
.cid-ttbVHgyy6i .btn:hover {
  background: transparent !important;
}
.cid-ttbVHgyy6i .btn:hover:before {
  background: transparent !important;
}
.cid-ttbVHgyy6i .btn:before {
  background-color: transparent !important;
}
.cid-ttbVHgyy6i .btn:focus {
  box-shadow: none !important;
}
.cid-ttbVHgyy6i .mbr-section-title,
.cid-ttbVHgyy6i .mbr-gallery-filter ul {
  text-align: center;
}
.cid-ttbW7Pa7is {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-ttbW7Pa7is .mbr-section-subtitle {
  color: #767676;
}
.cid-ttbySyBmpJ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ttbySyBmpJ .mbr-text {
  text-align: left;
}
.cid-ttbyAM1rMV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ttbyAM1rMV .mbr-text {
  text-align: left;
}
.cid-ttbytFKFRP {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-ttbytFKFRP .mbr-section-subtitle {
  color: #767676;
}
.cid-ttbytFKFRP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ttbytFKFRP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttbytFKFRP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ttbytFKFRP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ttbytFKFRP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-ttbytFKFRP .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-ttbytFKFRP .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ttbytFKFRP .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-ttbytFKFRP .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ttbytFKFRP .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-ttbytFKFRP ul {
  font-size: 0;
}
.cid-ttbytFKFRP .mbr-gallery-filter ul {
  text-align: center;
}
.cid-ttbytFKFRP .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-ttbytFKFRP .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-ttbytFKFRP .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-ttbytFKFRP .mbr-gallery-filter ul li:first-child,
.cid-ttbytFKFRP .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-ttbytFKFRP .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-ttbytFKFRP .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-ttbytFKFRP .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-ttbytFKFRP .btn.active:after {
  animation: none;
}
.cid-ttbytFKFRP .btn:active {
  box-shadow: none !important;
}
.cid-ttbytFKFRP .btn:hover {
  background: transparent !important;
}
.cid-ttbytFKFRP .btn:hover:before {
  background: transparent !important;
}
.cid-ttbytFKFRP .btn:before {
  background-color: transparent !important;
}
.cid-ttbytFKFRP .btn:focus {
  box-shadow: none !important;
}
.cid-ttbytFKFRP .mbr-section-title,
.cid-ttbytFKFRP .mbr-gallery-filter ul {
  text-align: center;
}
.cid-ttbW3oAtUo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-ttbW3oAtUo .mbr-section-subtitle {
  color: #767676;
}
.cid-tsUW6oAZg1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tsUW6oAZg1 .mbr-text {
  text-align: left;
}
.cid-tsYAqkP8Er {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tsYAqkP8Er .mbr-text {
  text-align: left;
}
.cid-tsUVUp3WfL {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tsUVUp3WfL .mbr-section-subtitle {
  color: #767676;
}
.cid-tsUVUp3WfL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tsUVUp3WfL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsUVUp3WfL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsUVUp3WfL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tsUVUp3WfL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tsUVUp3WfL .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tsUVUp3WfL .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsUVUp3WfL .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tsUVUp3WfL .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsUVUp3WfL .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tsUVUp3WfL ul {
  font-size: 0;
}
.cid-tsUVUp3WfL .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tsUVUp3WfL .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tsUVUp3WfL .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tsUVUp3WfL .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tsUVUp3WfL .mbr-gallery-filter ul li:first-child,
.cid-tsUVUp3WfL .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tsUVUp3WfL .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tsUVUp3WfL .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tsUVUp3WfL .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tsUVUp3WfL .btn.active:after {
  animation: none;
}
.cid-tsUVUp3WfL .btn:active {
  box-shadow: none !important;
}
.cid-tsUVUp3WfL .btn:hover {
  background: transparent !important;
}
.cid-tsUVUp3WfL .btn:hover:before {
  background: transparent !important;
}
.cid-tsUVUp3WfL .btn:before {
  background-color: transparent !important;
}
.cid-tsUVUp3WfL .btn:focus {
  box-shadow: none !important;
}
.cid-tsUVUp3WfL .mbr-section-title,
.cid-tsUVUp3WfL .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tsUVQnJzNi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tsUVQnJzNi .mbr-section-subtitle {
  color: #767676;
}
.cid-tspn6ejGs9 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tspn6ejGs9 .mbr-text {
  text-align: left;
}
.cid-tspnjg6Z6p {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tspnjg6Z6p .mbr-text {
  text-align: left;
}
.cid-tspn3LDvi1 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tspn3LDvi1 .mbr-section-subtitle {
  color: #767676;
}
.cid-tspn3LDvi1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tspn3LDvi1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tspn3LDvi1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tspn3LDvi1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tspn3LDvi1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tspn3LDvi1 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tspn3LDvi1 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tspn3LDvi1 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tspn3LDvi1 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tspn3LDvi1 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tspn3LDvi1 ul {
  font-size: 0;
}
.cid-tspn3LDvi1 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tspn3LDvi1 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tspn3LDvi1 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tspn3LDvi1 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tspn3LDvi1 .mbr-gallery-filter ul li:first-child,
.cid-tspn3LDvi1 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tspn3LDvi1 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tspn3LDvi1 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tspn3LDvi1 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tspn3LDvi1 .btn.active:after {
  animation: none;
}
.cid-tspn3LDvi1 .btn:active {
  box-shadow: none !important;
}
.cid-tspn3LDvi1 .btn:hover {
  background: transparent !important;
}
.cid-tspn3LDvi1 .btn:hover:before {
  background: transparent !important;
}
.cid-tspn3LDvi1 .btn:before {
  background-color: transparent !important;
}
.cid-tspn3LDvi1 .btn:focus {
  box-shadow: none !important;
}
.cid-tspn3LDvi1 .mbr-section-title,
.cid-tspn3LDvi1 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tspn01Rts5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tspn01Rts5 .mbr-section-subtitle {
  color: #767676;
}
.cid-tsdWnlNrwX {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tsdWnlNrwX .mbr-text {
  text-align: left;
}
.cid-tsdWvUH4pi {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tsdWvUH4pi .mbr-text {
  text-align: left;
}
.cid-tsdW8Qco9b {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tsdW8Qco9b .mbr-section-subtitle {
  color: #767676;
}
.cid-tsdW8Qco9b .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tsdW8Qco9b .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsdW8Qco9b .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsdW8Qco9b .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tsdW8Qco9b .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tsdW8Qco9b .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tsdW8Qco9b .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsdW8Qco9b .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tsdW8Qco9b .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsdW8Qco9b .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tsdW8Qco9b ul {
  font-size: 0;
}
.cid-tsdW8Qco9b .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tsdW8Qco9b .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tsdW8Qco9b .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tsdW8Qco9b .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tsdW8Qco9b .mbr-gallery-filter ul li:first-child,
.cid-tsdW8Qco9b .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tsdW8Qco9b .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tsdW8Qco9b .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tsdW8Qco9b .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tsdW8Qco9b .btn.active:after {
  animation: none;
}
.cid-tsdW8Qco9b .btn:active {
  box-shadow: none !important;
}
.cid-tsdW8Qco9b .btn:hover {
  background: transparent !important;
}
.cid-tsdW8Qco9b .btn:hover:before {
  background: transparent !important;
}
.cid-tsdW8Qco9b .btn:before {
  background-color: transparent !important;
}
.cid-tsdW8Qco9b .btn:focus {
  box-shadow: none !important;
}
.cid-tsdW8Qco9b .mbr-section-title,
.cid-tsdW8Qco9b .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBb11i64i {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #e8eff9;
}
.cid-tLBb11i64i .mbr-text {
  text-align: center;
  color: #365c9a;
}
.cid-rW1rj4RwFz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e8eff9;
}
.cid-rW1rj4RwFz .mbr-text {
  color: #365c9a;
  text-align: center;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rX1ZHNzyLd {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rX1ZHNzyLd .mbr-text {
  text-align: left;
}
.cid-rX1ZHOItlg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rX1ZHOItlg .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-rX1ZHSEizi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rX1ZHSEizi .card {
  display: block;
  position: relative;
}
.cid-rX1ZHSEizi .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-rX1ZHSEizi .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rX1ZHSEizi .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rX1ZHSEizi .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-rX1ZHSEizi .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rX1ZHSEizi .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rX1ZHSEizi .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-rX1ZHSEizi .mbr-card-text,
.cid-rX1ZHSEizi .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-rX1ZHSEizi .img-text {
  color: #efefef;
}
.cid-rX1ZHSEizi .mbr-section-title {
  color: #365c9a;
}
.cid-rX1ZHSEizi .mbr-title {
  text-align: center;
}
.cid-rX1ZHRG1Zu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rX1ZHRG1Zu .mbr-text {
  color: #232323;
}
.cid-rX1ZHX1i17 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rX1ZHX1i17 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rX1ZHX1i17 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJ2xCNYnPK {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ2xCNYnPK .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ2xCNYnPK .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sQuo6DzyvW {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sQuo6DzyvW .container-fluid {
  padding: 0 3rem;
}
.cid-sQuo6DzyvW .image-block {
  margin: auto;
}
.cid-sQuo6DzyvW .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sQuo6DzyvW .container-fluid {
    padding: 0 1rem;
  }
  .cid-sQuo6DzyvW .image-block {
    width: 100% !important;
  }
}
.cid-sQuoo1vLbb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQuoo1vLbb .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-sQuoo1vLbb .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-sQNqLpq7t7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQNqLpq7t7 .mbr-text {
  text-align: left;
}
.cid-sQNqpCVoWt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQNqpCVoWt .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-sQNqpCVoWt .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-sQuooOfRLz {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sQuopu1ZQy {
  padding-top: 15px;
  padding-bottom: 30px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-sQuopu1ZQy .mbr-text,
.cid-sQuopu1ZQy .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-sQuopu1ZQy H1 {
  color: #2e2e2e;
}
.cid-sQuoq2B1Ma {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQuoq2B1Ma .mbr-text {
  text-align: left;
}
.cid-sQuoquaIDE {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sQuoquaIDE .container-fluid {
  padding: 0 3rem;
}
.cid-sQuoquaIDE .image-block {
  margin: auto;
}
.cid-sQuoquaIDE .image-block img {
  width: 100%;
}
@media (max-width: 800px) {
  .cid-sQuoquaIDE .container-fluid {
    padding: 0 1rem;
  }
  .cid-sQuoquaIDE .image-block {
    width: 100% !important;
  }
}
.cid-sQuoquaIDE img {
  width: 30%;
}
.cid-sQup8sTCSD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQup8sTCSD .mbr-text {
  text-align: left;
}
.cid-sQuoYF07GH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQuoYF07GH .mbr-text {
  text-align: left;
}
.cid-sQuoZkNgdt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQuoZkNgdt .mbr-text {
  color: #232323;
}
.cid-sQuoZReFZP {
  padding-top: 30px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sQuoZReFZP .mbr-section-subtitle {
  color: #767676;
}
.cid-sQuoZReFZP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sQuoZReFZP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQuoZReFZP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sQuoZReFZP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sQuoZReFZP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-sQuoZReFZP .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sQuoZReFZP .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQuoZReFZP .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sQuoZReFZP .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQuoZReFZP .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sQuoZReFZP ul {
  font-size: 0;
}
.cid-sQuoZReFZP .mbr-gallery-filter ul {
  text-align: center;
}
.cid-sQuoZReFZP .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sQuoZReFZP .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-sQuoZReFZP .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sQuoZReFZP .mbr-gallery-filter ul li:first-child,
.cid-sQuoZReFZP .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sQuoZReFZP .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sQuoZReFZP .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-sQuoZReFZP .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sQuoZReFZP .btn.active:after {
  animation: none;
}
.cid-sQuoZReFZP .btn:active {
  box-shadow: none !important;
}
.cid-sQuoZReFZP .btn:hover {
  background: transparent !important;
}
.cid-sQuoZReFZP .btn:hover:before {
  background: transparent !important;
}
.cid-sQuoZReFZP .btn:before {
  background-color: transparent !important;
}
.cid-sQuoZReFZP .btn:focus {
  box-shadow: none !important;
}
.cid-sQupGkIprE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQupGkIprE P {
  color: #767676;
}
.cid-sQupGkIprE hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-sQupBka149 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQupBka149 .mbr-text {
  text-align: left;
}
.cid-sQupD3UkC5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQupD3UkC5 .mbr-text {
  text-align: left;
}
.cid-sQupEeSEgb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQupEeSEgb .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-sQupF1evsh {
  padding-top: 30px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sQupF1evsh .mbr-section-subtitle {
  color: #767676;
}
.cid-sQupF1evsh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sQupF1evsh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQupF1evsh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sQupF1evsh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sQupF1evsh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-sQupF1evsh .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sQupF1evsh .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQupF1evsh .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sQupF1evsh .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQupF1evsh .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sQupF1evsh ul {
  font-size: 0;
}
.cid-sQupF1evsh .mbr-gallery-filter ul {
  text-align: center;
}
.cid-sQupF1evsh .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sQupF1evsh .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-sQupF1evsh .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sQupF1evsh .mbr-gallery-filter ul li:first-child,
.cid-sQupF1evsh .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sQupF1evsh .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sQupF1evsh .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-sQupF1evsh .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sQupF1evsh .btn.active:after {
  animation: none;
}
.cid-sQupF1evsh .btn:active {
  box-shadow: none !important;
}
.cid-sQupF1evsh .btn:hover {
  background: transparent !important;
}
.cid-sQupF1evsh .btn:hover:before {
  background: transparent !important;
}
.cid-sQupF1evsh .btn:before {
  background-color: transparent !important;
}
.cid-sQupF1evsh .btn:focus {
  box-shadow: none !important;
}
.cid-sQuq9K77d6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQuq9K77d6 P {
  color: #767676;
}
.cid-sQuq9K77d6 hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-sQuq6UBhMT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQuq6UBhMT .mbr-text {
  text-align: left;
}
.cid-sQuq7LpKgz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQuq7LpKgz .mbr-text {
  text-align: left;
}
.cid-sQuq8nrxEt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQuq8nrxEt .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-sQuq8VGsFl {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sQuq8VGsFl .container-fluid {
  padding: 0 3rem;
}
.cid-sQuq8VGsFl .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sQuq8VGsFl .container-fluid {
    padding: 0 1rem;
  }
  .cid-sQuq8VGsFl .video-block {
    width: 100% !important;
  }
}
.cid-sQuqCsox6k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQuqCsox6k P {
  color: #767676;
}
.cid-sQuqCsox6k hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-sQuqyWbnGl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQuqyWbnGl .mbr-text {
  text-align: left;
}
.cid-sQuqzE75ls {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQuqzE75ls .mbr-text {
  text-align: left;
}
.cid-sQuqAjuDBM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQuqAjuDBM .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-sQuqB3xPYO {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sQuqB3xPYO .container-fluid {
  padding: 0 3rem;
}
.cid-sQuqB3xPYO .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sQuqB3xPYO .container-fluid {
    padding: 0 1rem;
  }
  .cid-sQuqB3xPYO .video-block {
    width: 100% !important;
  }
}
.cid-sQurk1Pg1p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQurk1Pg1p P {
  color: #767676;
}
.cid-sQurk1Pg1p hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-sQur64itdD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQur64itdD .mbr-text {
  text-align: left;
}
.cid-sQur6LqjYJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQur6LqjYJ .mbr-text {
  text-align: left;
}
.cid-sQur83iOCq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQur83iOCq .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-sQur91qXui {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sQur91qXui .container-fluid {
  padding: 0 3rem;
}
.cid-sQur91qXui .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sQur91qXui .container-fluid {
    padding: 0 1rem;
  }
  .cid-sQur91qXui .video-block {
    width: 100% !important;
  }
}
.cid-sQurYQlwVw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQurYQlwVw P {
  color: #767676;
}
.cid-sQurYQlwVw hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-sQurI6Cv9I {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQurI6Cv9I .mbr-text {
  text-align: left;
}
.cid-sQurIMZNgu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQurIMZNgu .mbr-text {
  text-align: left;
}
.cid-sQurTWh7zz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQurTWh7zz .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-sQurVR0m80 {
  padding-top: 30px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sQurVR0m80 .mbr-section-subtitle {
  color: #767676;
}
.cid-sQurVR0m80 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sQurVR0m80 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQurVR0m80 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sQurVR0m80 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sQurVR0m80 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-sQurVR0m80 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sQurVR0m80 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQurVR0m80 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sQurVR0m80 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQurVR0m80 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sQurVR0m80 ul {
  font-size: 0;
}
.cid-sQurVR0m80 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-sQurVR0m80 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sQurVR0m80 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-sQurVR0m80 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sQurVR0m80 .mbr-gallery-filter ul li:first-child,
.cid-sQurVR0m80 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sQurVR0m80 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sQurVR0m80 .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-sQurVR0m80 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sQurVR0m80 .btn.active:after {
  animation: none;
}
.cid-sQurVR0m80 .btn:active {
  box-shadow: none !important;
}
.cid-sQurVR0m80 .btn:hover {
  background: transparent !important;
}
.cid-sQurVR0m80 .btn:hover:before {
  background: transparent !important;
}
.cid-sQurVR0m80 .btn:before {
  background-color: transparent !important;
}
.cid-sQurVR0m80 .btn:focus {
  box-shadow: none !important;
}
.cid-sQY1Dd5pHG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQY1Dd5pHG P {
  color: #767676;
}
.cid-sQY1Dd5pHG hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-sQYaFvRIap {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQYaFvRIap .mbr-text {
  text-align: left;
}
.cid-sQY1LcMYKC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQY1LcMYKC .mbr-text {
  text-align: left;
}
.cid-sQY2xx2zIq {
  padding-top: 30px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sQY2xx2zIq .mbr-section-subtitle {
  color: #767676;
}
.cid-sQY2xx2zIq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sQY2xx2zIq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQY2xx2zIq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sQY2xx2zIq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sQY2xx2zIq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-sQY2xx2zIq .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sQY2xx2zIq .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQY2xx2zIq .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sQY2xx2zIq .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQY2xx2zIq .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sQY2xx2zIq ul {
  font-size: 0;
}
.cid-sQY2xx2zIq .mbr-gallery-filter ul {
  text-align: center;
}
.cid-sQY2xx2zIq .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sQY2xx2zIq .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-sQY2xx2zIq .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sQY2xx2zIq .mbr-gallery-filter ul li:first-child,
.cid-sQY2xx2zIq .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sQY2xx2zIq .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sQY2xx2zIq .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-sQY2xx2zIq .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sQY2xx2zIq .btn.active:after {
  animation: none;
}
.cid-sQY2xx2zIq .btn:active {
  box-shadow: none !important;
}
.cid-sQY2xx2zIq .btn:hover {
  background: transparent !important;
}
.cid-sQY2xx2zIq .btn:hover:before {
  background: transparent !important;
}
.cid-sQY2xx2zIq .btn:before {
  background-color: transparent !important;
}
.cid-sQY2xx2zIq .btn:focus {
  box-shadow: none !important;
}
.cid-sR6ZB2VYVP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR6ZB2VYVP P {
  color: #767676;
}
.cid-sR6ZB2VYVP hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-sR70t4Im2i {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR70t4Im2i .mbr-text {
  text-align: left;
}
.cid-sR70yD6vep {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR70yD6vep .mbr-text {
  text-align: left;
}
.cid-sR72iimZKN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR72iimZKN .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-sR72iimZKN .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-sR70ZBzU41 {
  padding-top: 30px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sR70ZBzU41 .mbr-section-subtitle {
  color: #767676;
}
.cid-sR70ZBzU41 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sR70ZBzU41 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sR70ZBzU41 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sR70ZBzU41 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sR70ZBzU41 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-sR70ZBzU41 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sR70ZBzU41 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sR70ZBzU41 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sR70ZBzU41 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sR70ZBzU41 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sR70ZBzU41 ul {
  font-size: 0;
}
.cid-sR70ZBzU41 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-sR70ZBzU41 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sR70ZBzU41 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-sR70ZBzU41 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sR70ZBzU41 .mbr-gallery-filter ul li:first-child,
.cid-sR70ZBzU41 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sR70ZBzU41 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sR70ZBzU41 .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-sR70ZBzU41 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sR70ZBzU41 .btn.active:after {
  animation: none;
}
.cid-sR70ZBzU41 .btn:active {
  box-shadow: none !important;
}
.cid-sR70ZBzU41 .btn:hover {
  background: transparent !important;
}
.cid-sR70ZBzU41 .btn:hover:before {
  background: transparent !important;
}
.cid-sR70ZBzU41 .btn:before {
  background-color: transparent !important;
}
.cid-sR70ZBzU41 .btn:focus {
  box-shadow: none !important;
}
.cid-sQZp6uSFnA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQZp6uSFnA P {
  color: #767676;
}
.cid-sQZp6uSFnA hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-sR71XIWxNV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR71XIWxNV .mbr-text {
  text-align: left;
}
.cid-sR72va72hg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR72va72hg .mbr-text {
  text-align: left;
}
.cid-sR72WxUd7q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR72WxUd7q .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-sR72WxUd7q .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-sR733VhUVv {
  padding-top: 30px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sR733VhUVv .mbr-section-subtitle {
  color: #767676;
}
.cid-sR733VhUVv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sR733VhUVv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sR733VhUVv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sR733VhUVv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sR733VhUVv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-sR733VhUVv .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sR733VhUVv .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sR733VhUVv .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sR733VhUVv .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sR733VhUVv .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sR733VhUVv ul {
  font-size: 0;
}
.cid-sR733VhUVv .mbr-gallery-filter ul {
  text-align: center;
}
.cid-sR733VhUVv .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sR733VhUVv .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-sR733VhUVv .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sR733VhUVv .mbr-gallery-filter ul li:first-child,
.cid-sR733VhUVv .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sR733VhUVv .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sR733VhUVv .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-sR733VhUVv .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sR733VhUVv .btn.active:after {
  animation: none;
}
.cid-sR733VhUVv .btn:active {
  box-shadow: none !important;
}
.cid-sR733VhUVv .btn:hover {
  background: transparent !important;
}
.cid-sR733VhUVv .btn:hover:before {
  background: transparent !important;
}
.cid-sR733VhUVv .btn:before {
  background-color: transparent !important;
}
.cid-sR733VhUVv .btn:focus {
  box-shadow: none !important;
}
.cid-sR73J2IlcE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR73J2IlcE P {
  color: #767676;
}
.cid-sR73J2IlcE hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-sR73k7899A {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR73k7899A .mbr-text {
  text-align: left;
}
.cid-sR73mhQhpx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR73mhQhpx .mbr-text {
  text-align: left;
}
.cid-sR73pHtxQQ {
  padding-top: 30px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sR73pHtxQQ .mbr-section-subtitle {
  color: #767676;
}
.cid-sR73pHtxQQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sR73pHtxQQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sR73pHtxQQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sR73pHtxQQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sR73pHtxQQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-sR73pHtxQQ .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sR73pHtxQQ .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sR73pHtxQQ .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sR73pHtxQQ .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sR73pHtxQQ .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sR73pHtxQQ ul {
  font-size: 0;
}
.cid-sR73pHtxQQ .mbr-gallery-filter ul {
  text-align: center;
}
.cid-sR73pHtxQQ .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sR73pHtxQQ .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-sR73pHtxQQ .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sR73pHtxQQ .mbr-gallery-filter ul li:first-child,
.cid-sR73pHtxQQ .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sR73pHtxQQ .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sR73pHtxQQ .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-sR73pHtxQQ .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sR73pHtxQQ .btn.active:after {
  animation: none;
}
.cid-sR73pHtxQQ .btn:active {
  box-shadow: none !important;
}
.cid-sR73pHtxQQ .btn:hover {
  background: transparent !important;
}
.cid-sR73pHtxQQ .btn:hover:before {
  background: transparent !important;
}
.cid-sR73pHtxQQ .btn:before {
  background-color: transparent !important;
}
.cid-sR73pHtxQQ .btn:focus {
  box-shadow: none !important;
}
.cid-sR71W97vO7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR71W97vO7 P {
  color: #767676;
}
.cid-sR71W97vO7 hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-sQZp9xEYsE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQZp9xEYsE .mbr-text {
  text-align: left;
}
.cid-sQZpobjoWy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQZpobjoWy .mbr-text {
  text-align: left;
}
.cid-sQZpITf3ab {
  padding-top: 15px;
  padding-bottom: 30px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-sQZpITf3ab .mbr-text,
.cid-sQZpITf3ab .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-sQZpITf3ab H1 {
  color: #2e2e2e;
}
.cid-sR70rnhgWR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR70rnhgWR P {
  color: #767676;
}
.cid-sR70rnhgWR hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-sR6ZjNQU83 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR6ZjNQU83 .mbr-text {
  text-align: left;
}
.cid-sR6ZJOvpX5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR6ZJOvpX5 .mbr-text {
  text-align: left;
}
.cid-sR6ZQIjZIx {
  padding-top: 15px;
  padding-bottom: 30px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-sR6ZQIjZIx .mbr-text,
.cid-sR6ZQIjZIx .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-sR6ZQIjZIx H1 {
  color: #2e2e2e;
}
.cid-sQuvqMCDKu {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQuvqMCDKu .mbr-overlay {
  background: #efefef;
}
.cid-sQuvqMCDKu .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sQuvqMCDKu .client-name {
  color: #8d97ad;
}
.cid-sQuvqMCDKu .wrap-img {
  padding-bottom: 1rem;
}
.cid-sQuvqMCDKu .wrap-img img {
  max-width: 100%;
}
.cid-sQuvqMCDKu .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-sQuvqMCDKu .mbr-section-title {
  color: #365c9a;
}
.cid-sQuCXlojM1 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-sQuCXlojM1 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sQuCXlojM1 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJ27wUBMWG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ27wUBMWG .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ27wUBMWG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sTsLtngn6E {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sTsLtngn6E .container-fluid {
  padding: 0 3rem;
}
.cid-sTsLtngn6E .image-block {
  margin: auto;
}
.cid-sTsLtngn6E .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sTsLtngn6E .container-fluid {
    padding: 0 1rem;
  }
  .cid-sTsLtngn6E .image-block {
    width: 100% !important;
  }
}
.cid-sTsM1qUPSz {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sTsM1qUPSz .mbr-text {
  color: #232323;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJ27wUBMWG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ27wUBMWG .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ27wUBMWG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sTy4Wg2Li6 {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sTy4Wg2Li6 .container-fluid {
  padding: 0 3rem;
}
.cid-sTy4Wg2Li6 .image-block {
  margin: auto;
}
.cid-sTy4Wg2Li6 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sTy4Wg2Li6 .container-fluid {
    padding: 0 1rem;
  }
  .cid-sTy4Wg2Li6 .image-block {
    width: 100% !important;
  }
}
.cid-sTy4WCZneS {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sTy4WCZneS .mbr-text {
  color: #232323;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJ27wUBMWG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ27wUBMWG .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ27wUBMWG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sTy5wD4FMG {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sTy5wD4FMG .container-fluid {
  padding: 0 3rem;
}
.cid-sTy5wD4FMG .image-block {
  margin: auto;
}
.cid-sTy5wD4FMG .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sTy5wD4FMG .container-fluid {
    padding: 0 1rem;
  }
  .cid-sTy5wD4FMG .image-block {
    width: 100% !important;
  }
}
.cid-sTy5wVrycx {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sTy5wVrycx .mbr-text {
  color: #232323;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJ27wUBMWG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ27wUBMWG .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ27wUBMWG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sTy7IUOpoQ {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sTy7IUOpoQ .container-fluid {
  padding: 0 3rem;
}
.cid-sTy7IUOpoQ .image-block {
  margin: auto;
}
.cid-sTy7IUOpoQ .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sTy7IUOpoQ .container-fluid {
    padding: 0 1rem;
  }
  .cid-sTy7IUOpoQ .image-block {
    width: 100% !important;
  }
}
.cid-sTy7JmvoTX {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sTy7JmvoTX .mbr-text {
  color: #232323;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJ27wUBMWG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ27wUBMWG .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ27wUBMWG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sTy8mn3xp5 {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sTy8mn3xp5 .container-fluid {
  padding: 0 3rem;
}
.cid-sTy8mn3xp5 .image-block {
  margin: auto;
}
.cid-sTy8mn3xp5 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sTy8mn3xp5 .container-fluid {
    padding: 0 1rem;
  }
  .cid-sTy8mn3xp5 .image-block {
    width: 100% !important;
  }
}
.cid-sTy8mLyfJn {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sTy8mLyfJn .mbr-text {
  color: #232323;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJ27wUBMWG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ27wUBMWG .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ27wUBMWG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sTy8TydIX6 {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sTy8TydIX6 .container-fluid {
  padding: 0 3rem;
}
.cid-sTy8TydIX6 .image-block {
  margin: auto;
}
.cid-sTy8TydIX6 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sTy8TydIX6 .container-fluid {
    padding: 0 1rem;
  }
  .cid-sTy8TydIX6 .image-block {
    width: 100% !important;
  }
}
.cid-sTy8TOuQXc {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sTy8TOuQXc .mbr-text {
  color: #232323;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJ27wUBMWG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ27wUBMWG .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ27wUBMWG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sTy9wtI8c6 {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sTy9wtI8c6 .container-fluid {
  padding: 0 3rem;
}
.cid-sTy9wtI8c6 .image-block {
  margin: auto;
}
.cid-sTy9wtI8c6 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sTy9wtI8c6 .container-fluid {
    padding: 0 1rem;
  }
  .cid-sTy9wtI8c6 .image-block {
    width: 100% !important;
  }
}
.cid-sTy9wSm7T0 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sTy9wSm7T0 .mbr-text {
  color: #232323;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJ27wUBMWG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ27wUBMWG .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ27wUBMWG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sTydDf7VTJ {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sTydDf7VTJ .container-fluid {
  padding: 0 3rem;
}
.cid-sTydDf7VTJ .image-block {
  margin: auto;
}
.cid-sTydDf7VTJ .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sTydDf7VTJ .container-fluid {
    padding: 0 1rem;
  }
  .cid-sTydDf7VTJ .image-block {
    width: 100% !important;
  }
}
.cid-sTydDJxBCB {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sTydDJxBCB .mbr-text {
  color: #232323;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJ27wUBMWG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ27wUBMWG .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ27wUBMWG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sTymuJ6btk {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sTymuJ6btk .container-fluid {
  padding: 0 3rem;
}
.cid-sTymuJ6btk .image-block {
  margin: auto;
}
.cid-sTymuJ6btk .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sTymuJ6btk .container-fluid {
    padding: 0 1rem;
  }
  .cid-sTymuJ6btk .image-block {
    width: 100% !important;
  }
}
.cid-sTymv1zYQB {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sTymv1zYQB .mbr-text {
  color: #232323;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJ2DyFOl3g {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJ2DyFOl3g .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ2DyFOl3g .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tp1kqK6pWU {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tp1kqK6pWU .mbr-text {
  text-align: left;
  color: #365c9a;
}
.cid-uNlJaYF3D6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uNlJaYF3D6 .card {
  display: block;
  position: relative;
}
.cid-uNlJaYF3D6 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-uNlJaYF3D6 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-uNlJaYF3D6 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uNlJaYF3D6 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-uNlJaYF3D6 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uNlJaYF3D6 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-uNlJaYF3D6 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-uNlJaYF3D6 .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-uNlJaYF3D6 .mbr-card-text,
.cid-uNlJaYF3D6 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-uMB4Zkqnip {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uMB4Zkqnip .card {
  display: block;
  position: relative;
}
.cid-uMB4Zkqnip .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-uMB4Zkqnip .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-uMB4Zkqnip .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uMB4Zkqnip .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-uMB4Zkqnip .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uMB4Zkqnip .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-uMB4Zkqnip .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-uMB4Zkqnip .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-uMB4Zkqnip .mbr-card-text,
.cid-uMB4Zkqnip .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-uaDNX6akHq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uaDNX6akHq .card {
  display: block;
  position: relative;
}
.cid-uaDNX6akHq .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-uaDNX6akHq .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-uaDNX6akHq .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uaDNX6akHq .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-uaDNX6akHq .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uaDNX6akHq .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-uaDNX6akHq .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-uaDNX6akHq .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-uaDNX6akHq .mbr-card-text,
.cid-uaDNX6akHq .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-uaDMYpNfX1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uaDMYpNfX1 .card {
  display: block;
  position: relative;
}
.cid-uaDMYpNfX1 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-uaDMYpNfX1 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-uaDMYpNfX1 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uaDMYpNfX1 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-uaDMYpNfX1 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uaDMYpNfX1 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-uaDMYpNfX1 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-uaDMYpNfX1 .mbr-section-title {
  color: #365c9a;
}
.cid-uaDMYpNfX1 .mbr-card-text,
.cid-uaDMYpNfX1 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tYXR9SdtxH {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tYXR9SdtxH .card {
  display: block;
  position: relative;
}
.cid-tYXR9SdtxH .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tYXR9SdtxH .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tYXR9SdtxH .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tYXR9SdtxH .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tYXR9SdtxH .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tYXR9SdtxH .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tYXR9SdtxH .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tYXR9SdtxH .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tYXR9SdtxH .mbr-card-text,
.cid-tYXR9SdtxH .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tP680xmLZN {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tP680xmLZN .card {
  display: block;
  position: relative;
}
.cid-tP680xmLZN .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tP680xmLZN .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tP680xmLZN .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tP680xmLZN .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tP680xmLZN .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tP680xmLZN .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tP680xmLZN .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tP680xmLZN .mbr-section-title {
  color: #365c9a;
}
.cid-tP680xmLZN .mbr-card-text,
.cid-tP680xmLZN .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tHlXGjzXFC {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tHlXGjzXFC .card {
  display: block;
  position: relative;
}
.cid-tHlXGjzXFC .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tHlXGjzXFC .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tHlXGjzXFC .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tHlXGjzXFC .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tHlXGjzXFC .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tHlXGjzXFC .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tHlXGjzXFC .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tHlXGjzXFC .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tHlXGjzXFC .mbr-card-text,
.cid-tHlXGjzXFC .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tGjMbX8Emu {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGjMbX8Emu .card {
  display: block;
  position: relative;
}
.cid-tGjMbX8Emu .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tGjMbX8Emu .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tGjMbX8Emu .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tGjMbX8Emu .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tGjMbX8Emu .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tGjMbX8Emu .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tGjMbX8Emu .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tGjMbX8Emu .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tGjMbX8Emu .mbr-card-text,
.cid-tGjMbX8Emu .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tFmfRjFsAM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tFmfRjFsAM .card {
  display: block;
  position: relative;
}
.cid-tFmfRjFsAM .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tFmfRjFsAM .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tFmfRjFsAM .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tFmfRjFsAM .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tFmfRjFsAM .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tFmfRjFsAM .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tFmfRjFsAM .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tFmfRjFsAM .mbr-section-title {
  color: #365c9a;
}
.cid-tFmfRjFsAM .mbr-card-text,
.cid-tFmfRjFsAM .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tyFlJZ4Yvu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tyFlJZ4Yvu .card {
  display: block;
  position: relative;
}
.cid-tyFlJZ4Yvu .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tyFlJZ4Yvu .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tyFlJZ4Yvu .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tyFlJZ4Yvu .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tyFlJZ4Yvu .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tyFlJZ4Yvu .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tyFlJZ4Yvu .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tyFlJZ4Yvu .mbr-section-title {
  color: #365c9a;
}
.cid-tyFlJZ4Yvu .mbr-card-text,
.cid-tyFlJZ4Yvu .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tytjefJCrS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tytjefJCrS .card {
  display: block;
  position: relative;
}
.cid-tytjefJCrS .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tytjefJCrS .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tytjefJCrS .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tytjefJCrS .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tytjefJCrS .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tytjefJCrS .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tytjefJCrS .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tytjefJCrS .mbr-section-title {
  color: #365c9a;
}
.cid-tytjefJCrS .mbr-card-text,
.cid-tytjefJCrS .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tuHarEdtUn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tuHarEdtUn .card {
  display: block;
  position: relative;
}
.cid-tuHarEdtUn .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tuHarEdtUn .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tuHarEdtUn .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tuHarEdtUn .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tuHarEdtUn .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tuHarEdtUn .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tuHarEdtUn .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tuHarEdtUn .mbr-section-title {
  color: #365c9a;
}
.cid-tuHarEdtUn .mbr-card-text,
.cid-tuHarEdtUn .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tu9qnSfJRv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tu9qnSfJRv .card {
  display: block;
  position: relative;
}
.cid-tu9qnSfJRv .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tu9qnSfJRv .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tu9qnSfJRv .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tu9qnSfJRv .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tu9qnSfJRv .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tu9qnSfJRv .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tu9qnSfJRv .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tu9qnSfJRv .mbr-section-title {
  color: #365c9a;
}
.cid-tu9qnSfJRv .mbr-card-text,
.cid-tu9qnSfJRv .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tu9qw8MS3X {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tu9qw8MS3X .mbr-section-subtitle {
  color: #767676;
}
.cid-tp1kmoOFWw {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tp1kmoOFWw .card {
  display: block;
  position: relative;
}
.cid-tp1kmoOFWw .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tp1kmoOFWw .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tp1kmoOFWw .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tp1kmoOFWw .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tp1kmoOFWw .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tp1kmoOFWw .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tp1kmoOFWw .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tp1kmoOFWw .mbr-section-title {
  color: #365c9a;
}
.cid-tp1kmoOFWw .mbr-card-text,
.cid-tp1kmoOFWw .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tu9qvgXaB7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tu9qvgXaB7 .mbr-section-subtitle {
  color: #767676;
}
.cid-sYltJutg6B {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sYltJutg6B .card {
  display: block;
  position: relative;
}
.cid-sYltJutg6B .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-sYltJutg6B .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sYltJutg6B .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sYltJutg6B .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-sYltJutg6B .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sYltJutg6B .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sYltJutg6B .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-sYltJutg6B .mbr-section-title {
  color: #365c9a;
}
.cid-sYltJutg6B .mbr-card-text,
.cid-sYltJutg6B .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0js2xrYFQ {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0js2xrYFQ .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0js2xrYFQ .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0js2CxfEx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0js2CxfEx .mbr-text {
  text-align: center;
}
.cid-t0js2F8CMI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0js2F8CMI .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-t0js2AK1t0 {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-t0js2AK1t0 .container-fluid {
  padding: 0 3rem;
}
.cid-t0js2AK1t0 .image-block {
  margin: auto;
}
.cid-t0js2AK1t0 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0js2AK1t0 .container-fluid {
    padding: 0 1rem;
  }
  .cid-t0js2AK1t0 .image-block {
    width: 100% !important;
  }
}
.cid-t0js2CfJvI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0js2CfJvI .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-t0js2CfJvI .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-t0js2CMGWD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0js2CMGWD .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-t0js2CMGWD .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-t0jwYzDqHn {
  padding-top: 15px;
  padding-bottom: 30px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-t0jwYzDqHn .mbr-text,
.cid-t0jwYzDqHn .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-t0jwYzDqHn H1 {
  color: #2e2e2e;
}
.cid-t0js2D3hVN {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t0js2Dipjz {
  padding-top: 15px;
  padding-bottom: 30px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-t0js2Dipjz .mbr-text,
.cid-t0js2Dipjz .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-t0js2Dipjz H1 {
  color: #2e2e2e;
}
.cid-t0jxRveIqE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0jxRveIqE .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-t0jxRveIqE .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-t0jx27CiQ6 {
  padding-top: 15px;
  padding-bottom: 30px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-t0jx27CiQ6 .mbr-text,
.cid-t0jx27CiQ6 .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-t0jx27CiQ6 H1 {
  color: #2e2e2e;
}
.cid-t0rtwKMF10 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0rtwKMF10 .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-t0rtwKMF10 .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-t0rtoTogU0 {
  padding-top: 15px;
  padding-bottom: 60px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-t0rtoTogU0 .mbr-text,
.cid-t0rtoTogU0 .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-t0rtoTogU0 H1 {
  color: #2e2e2e;
}
.cid-t0rzBzPdPt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t0rzBzPdPt .video-wrapper iframe {
  width: 100%;
}
.cid-t0rzBzPdPt .mbr-section-title,
.cid-t0rzBzPdPt .mbr-section-subtitle,
.cid-t0rzBzPdPt .mbr-text {
  text-align: center;
}
.cid-t0rzBzPdPt .mbr-section-title {
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-t0rzBzPdPt .mbr-text {
  padding-top: 16px;
}
.cid-t0js2DOglP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0js2DOglP .mbr-text {
  text-align: left;
}
.cid-t0js2G3c2X {
  padding-top: 30px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-t0js2G3c2X .mbr-section-subtitle {
  color: #767676;
}
.cid-t0js2G3c2X .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t0js2G3c2X .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t0js2G3c2X .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t0js2G3c2X .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t0js2G3c2X .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-t0js2G3c2X .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-t0js2G3c2X .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t0js2G3c2X .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-t0js2G3c2X .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t0js2G3c2X .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t0js2G3c2X ul {
  font-size: 0;
}
.cid-t0js2G3c2X .mbr-gallery-filter ul {
  text-align: center;
}
.cid-t0js2G3c2X .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-t0js2G3c2X .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-t0js2G3c2X .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-t0js2G3c2X .mbr-gallery-filter ul li:first-child,
.cid-t0js2G3c2X .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-t0js2G3c2X .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-t0js2G3c2X .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-t0js2G3c2X .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-t0js2G3c2X .btn.active:after {
  animation: none;
}
.cid-t0js2G3c2X .btn:active {
  box-shadow: none !important;
}
.cid-t0js2G3c2X .btn:hover {
  background: transparent !important;
}
.cid-t0js2G3c2X .btn:hover:before {
  background: transparent !important;
}
.cid-t0js2G3c2X .btn:before {
  background-color: transparent !important;
}
.cid-t0js2G3c2X .btn:focus {
  box-shadow: none !important;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0js4ntLXP {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0js4ntLXP .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0js4ntLXP .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0GzIfNOsq {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t0GzIfNOsq .mbr-text {
  text-align: left;
}
.cid-t0GzIgDdIV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0GzIgDdIV .mbr-text {
  color: #365c9a;
}
.cid-t0GzIgQQDY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-t0GzIgQQDY .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t0GzIgQQDY .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-t0GzIgQQDY .mbr-text {
  color: #767676;
}
.cid-t0GzIh7eBU {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t0GzIh7eBU .mbr-text {
  text-align: center;
}
.cid-t0GzIhojUg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0GzIhojUg .mbr-text {
  color: #232323;
}
.cid-t0GzIhELAr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0GzIhELAr .mbr-section-subtitle {
  color: #767676;
}
.cid-t0GzIhELAr .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-t0GzIhELAr .table-wrapper {
  margin: 0 auto;
}
.cid-t0GzIhELAr table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-t0GzIhELAr table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-t0GzIhELAr table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-t0GzIhELAr .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-t0GzIhELAr .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-t0GzIhELAr .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-t0GzIhELAr .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-t0GzIhELAr .dataTables_wrapper {
  display: block;
}
.cid-t0GzIhELAr .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-t0GzIhELAr .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-t0GzIhELAr .head-item:after,
.cid-t0GzIhELAr .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-t0GzIhELAr .dataTables_filter {
    text-align: center;
  }
  .cid-t0GzIhELAr .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-t0GzIhELAr .dataTables_filter {
    text-align: center;
  }
  .cid-t0GzIhELAr .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-t0GzIhELAr table th,
  .cid-t0GzIhELAr table td {
    padding: .75rem;
  }
}
.cid-t0GzIhELAr .body-item {
  text-align: left;
}
.cid-t6EzjfwFzN {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t6EzjfwFzN .mbr-section-subtitle {
  color: #767676;
}
.cid-t6EzjfwFzN .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-t6EzjfwFzN .table-wrapper {
  margin: 0 auto;
}
.cid-t6EzjfwFzN table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-t6EzjfwFzN table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-t6EzjfwFzN table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-t6EzjfwFzN .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-t6EzjfwFzN .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-t6EzjfwFzN .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-t6EzjfwFzN .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-t6EzjfwFzN .dataTables_wrapper {
  display: block;
}
.cid-t6EzjfwFzN .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-t6EzjfwFzN .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-t6EzjfwFzN .head-item:after,
.cid-t6EzjfwFzN .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-t6EzjfwFzN .dataTables_filter {
    text-align: center;
  }
  .cid-t6EzjfwFzN .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-t6EzjfwFzN .dataTables_filter {
    text-align: center;
  }
  .cid-t6EzjfwFzN .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-t6EzjfwFzN table th,
  .cid-t6EzjfwFzN table td {
    padding: .75rem;
  }
}
.cid-t6EzjfwFzN .body-item {
  text-align: left;
}
.cid-t0GzV5gPds {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t0GzV5gPds .mbr-section-subtitle {
  color: #767676;
}
.cid-t0GzV5gPds .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-t0GzV5gPds .table-wrapper {
  margin: 0 auto;
}
.cid-t0GzV5gPds table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-t0GzV5gPds table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-t0GzV5gPds table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-t0GzV5gPds .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-t0GzV5gPds .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-t0GzV5gPds .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-t0GzV5gPds .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-t0GzV5gPds .dataTables_wrapper {
  display: block;
}
.cid-t0GzV5gPds .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-t0GzV5gPds .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-t0GzV5gPds .head-item:after,
.cid-t0GzV5gPds .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-t0GzV5gPds .dataTables_filter {
    text-align: center;
  }
  .cid-t0GzV5gPds .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-t0GzV5gPds .dataTables_filter {
    text-align: center;
  }
  .cid-t0GzV5gPds .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-t0GzV5gPds table th,
  .cid-t0GzV5gPds table td {
    padding: .75rem;
  }
}
.cid-t0GzV5gPds .body-item {
  text-align: left;
}
.cid-t0GzIj2T8c {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0GzIj2T8c .mbr-section-subtitle {
  color: #767676;
}
.cid-t0GzIj2T8c .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-t0GzIj2T8c .table-wrapper {
  margin: 0 auto;
}
.cid-t0GzIj2T8c table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-t0GzIj2T8c table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-t0GzIj2T8c table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-t0GzIj2T8c .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-t0GzIj2T8c .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-t0GzIj2T8c .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-t0GzIj2T8c .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-t0GzIj2T8c .dataTables_wrapper {
  display: block;
}
.cid-t0GzIj2T8c .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-t0GzIj2T8c .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-t0GzIj2T8c .head-item:after,
.cid-t0GzIj2T8c .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-t0GzIj2T8c .dataTables_filter {
    text-align: center;
  }
  .cid-t0GzIj2T8c .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-t0GzIj2T8c .dataTables_filter {
    text-align: center;
  }
  .cid-t0GzIj2T8c .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-t0GzIj2T8c table th,
  .cid-t0GzIj2T8c table td {
    padding: .75rem;
  }
}
.cid-t0GzIj2T8c .body-item {
  text-align: left;
}
.cid-t0GzIw4LYV {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t0GzIksloW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0GzIksloW P {
  color: #767676;
}
.cid-t0GzIksloW hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-t0GzIwt1iS {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0GzIwt1iS .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0GzIwt1iS .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0GzIxRcyW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0GzIxRcyW .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0GzIxRcyW .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0GzIxRcyW .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t9p2ZSYZ0O {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t9p2ZSYZ0O .mbr-text {
  text-align: left;
}
.cid-t9p2ZTHEGF {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t9p2ZTHEGF .mbr-text {
  color: #365c9a;
  text-align: center;
}
.cid-t9p5rdZ4OC {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-t9p5rdZ4OC .container-fluid {
  padding: 0 3rem;
}
.cid-t9p5rdZ4OC .image-block {
  margin: auto;
}
.cid-t9p5rdZ4OC .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t9p5rdZ4OC .container-fluid {
    padding: 0 1rem;
  }
  .cid-t9p5rdZ4OC .image-block {
    width: 100% !important;
  }
}
.cid-t9p5dECRjQ {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-t9p5dECRjQ .container-fluid {
  padding: 0 3rem;
}
.cid-t9p5dECRjQ .image-block {
  margin: auto;
}
.cid-t9p5dECRjQ .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t9p5dECRjQ .container-fluid {
    padding: 0 1rem;
  }
  .cid-t9p5dECRjQ .image-block {
    width: 100% !important;
  }
}
.cid-t9p2ZUgDYJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t9p2ZUgDYJ .mbr-text {
  color: #232323;
}
.cid-t9p4ntnixE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t9p4ntnixE .video-wrapper iframe {
  width: 100%;
}
.cid-t9p4ntnixE .mbr-section-title,
.cid-t9p4ntnixE .mbr-section-subtitle,
.cid-t9p4ntnixE .mbr-text {
  text-align: center;
}
.cid-t9p4ntnixE .mbr-section-title {
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-t9p4ntnixE .mbr-text {
  padding-top: 16px;
}
.cid-t9vqrIhqsx {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t9vqrIhqsx .mbr-section-subtitle {
  color: #465052;
}
.cid-t9vqrIhqsx .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-t9vqrIhqsx .table-wrapper {
  margin: 0 auto;
}
.cid-t9vqrIhqsx table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-t9vqrIhqsx table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-t9vqrIhqsx table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-t9vqrIhqsx .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-t9vqrIhqsx .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-t9vqrIhqsx .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-t9vqrIhqsx .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-t9vqrIhqsx .dataTables_wrapper {
  display: block;
}
.cid-t9vqrIhqsx .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-t9vqrIhqsx .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-t9vqrIhqsx .head-item:after,
.cid-t9vqrIhqsx .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-t9vqrIhqsx .dataTables_filter {
    text-align: center;
  }
  .cid-t9vqrIhqsx .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-t9vqrIhqsx .dataTables_filter {
    text-align: center;
  }
  .cid-t9vqrIhqsx .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-t9vqrIhqsx table th,
  .cid-t9vqrIhqsx table td {
    padding: .75rem;
  }
}
.cid-t9vqrIhqsx .body-item {
  text-align: left;
}
.cid-t9p2ZZBs3H {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t9p2ZZP5mx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t9p2ZZP5mx P {
  color: #767676;
}
.cid-t9p2ZZP5mx hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-t9p3009sN7 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t9p3009sN7 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t9p3009sN7 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t9p301gyKO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t9p301gyKO .mbr-text a {
  background-size: 100% 0%;
}
.cid-t9p301gyKO .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t9p301gyKO .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t9vua8WRqA {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-t9vua8WRqA .mbr-text {
  text-align: left;
}
.cid-t9vyD0QB2v {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #e6ecf2;
}
.cid-t9vyD0QB2v .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-t9vyD0QB2v .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-t9vyD0QB2v .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-t9vyD0QB2v .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-t9vyD0QB2v .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-t9vyD0QB2v .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-t9vyD0QB2v .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-t9vyD0QB2v .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-t9vyD0QB2v .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-t9vyD0QB2v .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-t9vyD0QB2v .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-t9vyD0QB2v .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-t9vyD0QB2v .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-t9vyD0QB2v .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-t9vyD0QB2v .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-t9vyD0QB2v .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-t9vyD0QB2v .card-wrapper .card-img .meta-category {
  background-color: #4f87fb;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-t9vyD0QB2v .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-t9vyD0QB2v .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-t9vyD0QB2v .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-t9vyD0QB2v .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-t9vyD0QB2v .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-t9vyD0QB2v .btn[class*='-outline']:active,
.cid-t9vyD0QB2v .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-t9vyD0QB2v .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-t9vyD0QB2v .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-t9vyD0QB2v .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-t9vyD0QB2v .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-t9vyD0QB2v .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-t9vyD0QB2v .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-t9vyD0QB2v .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-t9vyD0QB2v .card {
    margin-bottom: 15px;
  }
}
.cid-t9vuaeoZox {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t9vuaeoZox .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t9vuaeoZox .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t9vuafoPJc {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t9vuafoPJc .mbr-text a {
  background-size: 100% 0%;
}
.cid-t9vuafoPJc .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t9vuafoPJc .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-taZsHa72Si {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eff9;
}
.cid-taZsHa72Si .image-wrapper {
  height: 100%;
}
@media (max-width: 991px) {
  .cid-taZsHa72Si .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-taZsHa72Si .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-taZsHa72Si .image-wrapper img {
    border-end-start-radius: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-taZsHa72Si .text-wrapper {
    padding: 10rem 5rem 0 0rem;
  }
}
.cid-taZsHa72Si .mbr-section-title {
  color: #404d50;
}
.cid-taZsHa72Si .mbr-text {
  color: #6c7577;
}
.cid-taZsHa72Si .btn {
  padding: 1rem 3.4rem;
}
.cid-taZsHa72Si .mbr-fallback-image.disabled {
  display: none;
}
.cid-taZsHa72Si .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taZsHa72Si .mbr-text,
.cid-taZsHa72Si .mbr-section-btn {
  color: #6c7577;
  text-align: center;
}
.cid-taZpjzuRrM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e8eff9;
}
.cid-taZpjzuRrM .mbr-text {
  color: #465052;
  text-align: left;
}
.cid-taZpjzuRrM .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-tbPotWz8BE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #b2ccd2;
}
.cid-tbPotWz8BE .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tbPotWz8BE .row-element,
.cid-tbPotWz8BE .image-element {
  padding: 0;
}
.cid-tbPotWz8BE .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tbPotWz8BE .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tbPotWz8BE .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-tbPotWz8BE .text-content {
    padding: 2rem 1rem;
  }
  .cid-tbPotWz8BE .mbr-title,
  .cid-tbPotWz8BE .underline,
  .cid-tbPotWz8BE .mbr-text,
  .cid-tbPotWz8BE .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tbPotWz8BE .mbr-title {
  color: #232323;
}
.cid-tbPotWz8BE .mbr-text,
.cid-tbPotWz8BE .mbr-section-btn {
  color: #404d50;
}
.cid-tf3roqMvUa {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tf3roqMvUa .mbr-text {
  text-align: center;
}
.cid-tf3rZeW4o4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tf3rZeW4o4 .mbr-text {
  color: #404d50;
}
.cid-tf3rJqIIxO {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 90px;
}
.cid-tf3rJqIIxO .container-fluid {
  padding: 0 3rem;
}
.cid-tf3rJqIIxO .image-block {
  margin: auto;
}
.cid-tf3rJqIIxO .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tf3rJqIIxO .container-fluid {
    padding: 0 1rem;
  }
  .cid-tf3rJqIIxO .image-block {
    width: 100% !important;
  }
}
.cid-tdlxyoHvyl {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #e6ecf2;
}
.cid-tdlxyoHvyl .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tdlxyoHvyl .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tdlxyoHvyl .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tdlxyoHvyl .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tdlxyoHvyl .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tdlxyoHvyl .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tdlxyoHvyl .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-tdlxyoHvyl .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-tdlxyoHvyl .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tdlxyoHvyl .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-tdlxyoHvyl .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tdlxyoHvyl .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-tdlxyoHvyl .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tdlxyoHvyl .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-tdlxyoHvyl .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-tdlxyoHvyl .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-tdlxyoHvyl .card-wrapper .card-img .meta-category {
  background-color: #4f87fb;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-tdlxyoHvyl .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-tdlxyoHvyl .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tdlxyoHvyl .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tdlxyoHvyl .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-tdlxyoHvyl .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdlxyoHvyl .btn[class*='-outline']:active,
.cid-tdlxyoHvyl .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdlxyoHvyl .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-tdlxyoHvyl .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-tdlxyoHvyl .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-tdlxyoHvyl .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-tdlxyoHvyl .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-tdlxyoHvyl .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-tdlxyoHvyl .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-tdlxyoHvyl .card {
    margin-bottom: 15px;
  }
}
.cid-tdlxyoHvyl .contents .mbr-section-title {
  color: #4289a7;
}
.cid-tdlxyoHvyl .card-wrapper .card-box .card-title {
  color: #404d50;
}
.cid-tdaLGGkmbU {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tdaLGGkmbU .mbr-text {
  text-align: left;
}
.cid-tdaLIEUPoz {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-tdaLIEUPoz .container-fluid {
  padding: 0 3rem;
}
.cid-tdaLIEUPoz .image-block {
  margin: auto;
}
.cid-tdaLIEUPoz .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tdaLIEUPoz .container-fluid {
    padding: 0 1rem;
  }
  .cid-tdaLIEUPoz .image-block {
    width: 100% !important;
  }
}
.cid-tdaLKno3Zt {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tdaLKno3Zt .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tdaLN5kMVz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tdaLN5kMVz .mbr-section-subtitle {
  color: #767676;
}
.cid-tcYz0Exyyj {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tcYz0Exyyj .mbr-text {
  text-align: left;
}
.cid-tcYyZCxjWj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tcYyZCxjWj .mbr-text {
  color: #232323;
}
.cid-tcYyVOFKLP {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tcYyVOFKLP .mbr-section-subtitle {
  color: #767676;
}
.cid-tcYyVOFKLP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tcYyVOFKLP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcYyVOFKLP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tcYyVOFKLP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tcYyVOFKLP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tcYyVOFKLP .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tcYyVOFKLP .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tcYyVOFKLP .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tcYyVOFKLP .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tcYyVOFKLP .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tcYyVOFKLP ul {
  font-size: 0;
}
.cid-tcYyVOFKLP .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tcYyVOFKLP .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tcYyVOFKLP .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tcYyVOFKLP .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tcYyVOFKLP .mbr-gallery-filter ul li:first-child,
.cid-tcYyVOFKLP .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tcYyVOFKLP .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tcYyVOFKLP .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tcYyVOFKLP .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tcYyVOFKLP .btn.active:after {
  animation: none;
}
.cid-tcYyVOFKLP .btn:active {
  box-shadow: none !important;
}
.cid-tcYyVOFKLP .btn:hover {
  background: transparent !important;
}
.cid-tcYyVOFKLP .btn:hover:before {
  background: transparent !important;
}
.cid-tcYyVOFKLP .btn:before {
  background-color: transparent !important;
}
.cid-tcYyVOFKLP .btn:focus {
  box-shadow: none !important;
}
.cid-tcYyVOFKLP .mbr-section-title,
.cid-tcYyVOFKLP .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tcYyWzYmU0 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tcYyWzYmU0 .mbr-section-subtitle {
  color: #767676;
}
.cid-tcw5f0LT0c {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tcw5f0LT0c .mbr-text {
  text-align: left;
}
.cid-tcw5di3JVH {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tcw5di3JVH .mbr-text {
  color: #232323;
}
.cid-tcw5cewlUD {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tcw5cewlUD .mbr-section-subtitle {
  color: #767676;
}
.cid-tcw5cewlUD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tcw5cewlUD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcw5cewlUD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tcw5cewlUD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tcw5cewlUD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tcw5cewlUD .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tcw5cewlUD .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tcw5cewlUD .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tcw5cewlUD .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tcw5cewlUD .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tcw5cewlUD ul {
  font-size: 0;
}
.cid-tcw5cewlUD .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tcw5cewlUD .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tcw5cewlUD .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tcw5cewlUD .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tcw5cewlUD .mbr-gallery-filter ul li:first-child,
.cid-tcw5cewlUD .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tcw5cewlUD .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tcw5cewlUD .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tcw5cewlUD .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tcw5cewlUD .btn.active:after {
  animation: none;
}
.cid-tcw5cewlUD .btn:active {
  box-shadow: none !important;
}
.cid-tcw5cewlUD .btn:hover {
  background: transparent !important;
}
.cid-tcw5cewlUD .btn:hover:before {
  background: transparent !important;
}
.cid-tcw5cewlUD .btn:before {
  background-color: transparent !important;
}
.cid-tcw5cewlUD .btn:focus {
  box-shadow: none !important;
}
.cid-tcw5cewlUD .mbr-section-title,
.cid-tcw5cewlUD .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tcw5mEBho3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tcw5mEBho3 .mbr-section-subtitle {
  color: #767676;
}
.cid-tc3oJKjdfs {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tc3oJKjdfs .mbr-text {
  text-align: left;
}
.cid-tc3oLyKuDs {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tc3oLyKuDs .mbr-text {
  color: #232323;
}
.cid-tc3oN2ociS {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tc3oN2ociS .mbr-section-subtitle {
  color: #767676;
}
.cid-tc3oN2ociS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tc3oN2ociS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tc3oN2ociS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tc3oN2ociS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tc3oN2ociS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tc3oN2ociS .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tc3oN2ociS .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tc3oN2ociS .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tc3oN2ociS .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tc3oN2ociS .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tc3oN2ociS ul {
  font-size: 0;
}
.cid-tc3oN2ociS .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tc3oN2ociS .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tc3oN2ociS .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tc3oN2ociS .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tc3oN2ociS .mbr-gallery-filter ul li:first-child,
.cid-tc3oN2ociS .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tc3oN2ociS .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tc3oN2ociS .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tc3oN2ociS .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tc3oN2ociS .btn.active:after {
  animation: none;
}
.cid-tc3oN2ociS .btn:active {
  box-shadow: none !important;
}
.cid-tc3oN2ociS .btn:hover {
  background: transparent !important;
}
.cid-tc3oN2ociS .btn:hover:before {
  background: transparent !important;
}
.cid-tc3oN2ociS .btn:before {
  background-color: transparent !important;
}
.cid-tc3oN2ociS .btn:focus {
  box-shadow: none !important;
}
.cid-tc3oN2ociS .mbr-section-title,
.cid-tc3oN2ociS .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tc3pF085Vl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tc3pF085Vl .mbr-section-subtitle {
  color: #767676;
}
.cid-tbKhgQl9gY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tbKhgQl9gY .image-wrapper {
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}
.cid-tbKhgQl9gY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tbKhgQl9gY .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tbKhgQl9gY .mbr-section-title {
  color: #2e6b75;
}
.cid-tbKhgQl9gY .mbr-text {
  color: #6c7577;
}
.cid-tbKhgQl9gY .mbr-description {
  color: #6c7577;
}
.cid-tbKhgQl9gY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbKhgQl9gY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taZpk4bEMq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-taZpk4bEMq .mbr-text a {
  background-size: 100% 0%;
}
.cid-taZpk4bEMq .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-taZpk4bEMq .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tb1j00j5iL {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eff9;
}
.cid-tb1j00j5iL .image-wrapper {
  height: 100%;
}
@media (max-width: 991px) {
  .cid-tb1j00j5iL .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tb1j00j5iL .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tb1j00j5iL .image-wrapper img {
    border-end-start-radius: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-tb1j00j5iL .text-wrapper {
    padding: 10rem 5rem 0 0rem;
  }
}
.cid-tb1j00j5iL .mbr-section-title {
  color: #404d50;
}
.cid-tb1j00j5iL .mbr-text {
  color: #6c7577;
}
.cid-tb1j00j5iL .btn {
  padding: 1rem 3.4rem;
}
.cid-tb1j00j5iL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tb1j00j5iL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tb1j00j5iL .mbr-text,
.cid-tb1j00j5iL .mbr-section-btn {
  color: #6c7577;
  text-align: center;
}
.cid-tbPkmgXhH4 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #e8eff9;
}
.cid-tbPkmgXhH4 .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tbPnLxGbCn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #b2ccd2;
}
.cid-tbPnLxGbCn .mbr-section-title {
  color: #36187d;
}
.cid-tbPnLxGbCn .mbr-section-subtitle {
  color: #6c758f;
}
@media (max-width: 992px) {
  .cid-tbPnLxGbCn .align-left {
    text-align: center;
  }
}
.cid-tbPnLxGbCn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbPnLxGbCn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfpWxtrY0C {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tfpWxtrY0C .mbr-section-subtitle {
  color: #767676;
}
.cid-tfpWxtrY0C .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tfpWxtrY0C .table-wrapper {
  margin: 0 auto;
}
.cid-tfpWxtrY0C table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tfpWxtrY0C table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-tfpWxtrY0C table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tfpWxtrY0C .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tfpWxtrY0C .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tfpWxtrY0C .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tfpWxtrY0C .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tfpWxtrY0C .dataTables_wrapper {
  display: block;
}
.cid-tfpWxtrY0C .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tfpWxtrY0C .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tfpWxtrY0C .head-item:after,
.cid-tfpWxtrY0C .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tfpWxtrY0C .dataTables_filter {
    text-align: center;
  }
  .cid-tfpWxtrY0C .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tfpWxtrY0C .dataTables_filter {
    text-align: center;
  }
  .cid-tfpWxtrY0C .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tfpWxtrY0C table th,
  .cid-tfpWxtrY0C table td {
    padding: .75rem;
  }
}
.cid-tfpWxtrY0C .body-item {
  text-align: left;
}
.cid-tfpWxtrY0C .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tfpWxtrY0C .mbr-section-title,
.cid-tfpWxtrY0C .underline {
  color: #365c9a;
  text-align: left;
}
.cid-tfpWxtrY0C .head-item {
  text-align: left;
}
.cid-tdgLMPs6cb {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #e8eff9;
}
.cid-tdgLMPs6cb .mbr-text {
  text-align: center;
}
.cid-tdtsdFhtNb {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #e8eff9;
}
.cid-tdtsdFhtNb .mbr-section-subtitle {
  color: #767676;
}
.cid-tdtsdFhtNb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tdtsdFhtNb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tdtsdFhtNb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tdtsdFhtNb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tdtsdFhtNb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #efefef);
}
.cid-tdtsdFhtNb .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tdtsdFhtNb .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tdtsdFhtNb .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tdtsdFhtNb .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tdtsdFhtNb .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tdtsdFhtNb ul {
  font-size: 0;
}
.cid-tdtsdFhtNb .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tdtsdFhtNb .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tdtsdFhtNb .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tdtsdFhtNb .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tdtsdFhtNb .mbr-gallery-filter ul li:first-child,
.cid-tdtsdFhtNb .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tdtsdFhtNb .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tdtsdFhtNb .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-tdtsdFhtNb .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tdtsdFhtNb .btn.active:after {
  animation: none;
}
.cid-tdtsdFhtNb .btn:active {
  box-shadow: none !important;
}
.cid-tdtsdFhtNb .btn:hover {
  background: transparent !important;
}
.cid-tdtsdFhtNb .btn:hover:before {
  background: transparent !important;
}
.cid-tdtsdFhtNb .btn:before {
  background-color: transparent !important;
}
.cid-tdtsdFhtNb .btn:focus {
  box-shadow: none !important;
}
.cid-tdtsdFhtNb .mbr-section-title,
.cid-tdtsdFhtNb .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tdttedvPRq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tdttedvPRq .mbr-section-subtitle {
  color: #767676;
}
.cid-tdQ8crAYRY {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #e6ecf2;
}
.cid-tdQ8crAYRY .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tdQ8crAYRY .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tdQ8crAYRY .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tdQ8crAYRY .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tdQ8crAYRY .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tdQ8crAYRY .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tdQ8crAYRY .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-tdQ8crAYRY .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-tdQ8crAYRY .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tdQ8crAYRY .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-tdQ8crAYRY .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tdQ8crAYRY .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-tdQ8crAYRY .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tdQ8crAYRY .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-tdQ8crAYRY .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-tdQ8crAYRY .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-tdQ8crAYRY .card-wrapper .card-img .meta-category {
  background-color: #4f87fb;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-tdQ8crAYRY .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-tdQ8crAYRY .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tdQ8crAYRY .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tdQ8crAYRY .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-tdQ8crAYRY .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdQ8crAYRY .btn[class*='-outline']:active,
.cid-tdQ8crAYRY .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdQ8crAYRY .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-tdQ8crAYRY .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-tdQ8crAYRY .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-tdQ8crAYRY .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-tdQ8crAYRY .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-tdQ8crAYRY .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-tdQ8crAYRY .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-tdQ8crAYRY .card {
    margin-bottom: 15px;
  }
}
.cid-tdQ8crAYRY .contents .mbr-section-title {
  color: #4289a7;
}
.cid-tdQ8crAYRY .card-wrapper .card-box .card-title {
  color: #404d50;
}
.cid-tdIfbppMUM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e6ecf2;
}
.cid-tdIfbppMUM .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tdIfbppMUM .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tdIfbppMUM .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tdIfbppMUM .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tdIfbppMUM .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tdIfbppMUM .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tdIfbppMUM .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-tdIfbppMUM .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-tdIfbppMUM .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tdIfbppMUM .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-tdIfbppMUM .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tdIfbppMUM .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-tdIfbppMUM .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tdIfbppMUM .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-tdIfbppMUM .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-tdIfbppMUM .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-tdIfbppMUM .card-wrapper .card-img .meta-category {
  background-color: #4f87fb;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-tdIfbppMUM .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-tdIfbppMUM .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tdIfbppMUM .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tdIfbppMUM .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-tdIfbppMUM .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdIfbppMUM .btn[class*='-outline']:active,
.cid-tdIfbppMUM .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdIfbppMUM .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-tdIfbppMUM .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-tdIfbppMUM .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-tdIfbppMUM .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-tdIfbppMUM .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-tdIfbppMUM .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-tdIfbppMUM .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-tdIfbppMUM .card {
    margin-bottom: 15px;
  }
}
.cid-tdIfbppMUM .contents .mbr-section-title {
  color: #4289a7;
}
.cid-tdIfbppMUM .card-wrapper .card-box .card-title {
  color: #404d50;
}
.cid-tdwYKU6hJt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e6ecf2;
}
.cid-tdwYKU6hJt .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tdwYKU6hJt .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tdwYKU6hJt .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tdwYKU6hJt .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tdwYKU6hJt .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tdwYKU6hJt .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tdwYKU6hJt .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-tdwYKU6hJt .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-tdwYKU6hJt .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tdwYKU6hJt .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-tdwYKU6hJt .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tdwYKU6hJt .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-tdwYKU6hJt .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tdwYKU6hJt .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-tdwYKU6hJt .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-tdwYKU6hJt .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-tdwYKU6hJt .card-wrapper .card-img .meta-category {
  background-color: #4f87fb;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-tdwYKU6hJt .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-tdwYKU6hJt .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tdwYKU6hJt .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tdwYKU6hJt .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-tdwYKU6hJt .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdwYKU6hJt .btn[class*='-outline']:active,
.cid-tdwYKU6hJt .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdwYKU6hJt .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-tdwYKU6hJt .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-tdwYKU6hJt .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-tdwYKU6hJt .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-tdwYKU6hJt .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-tdwYKU6hJt .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-tdwYKU6hJt .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-tdwYKU6hJt .card {
    margin-bottom: 15px;
  }
}
.cid-tdwYKU6hJt .contents .mbr-section-title {
  color: #4289a7;
}
.cid-tdwYKU6hJt .card-wrapper .card-box .card-title {
  color: #404d50;
}
.cid-tdmS6eKeRo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e6ecf2;
}
.cid-tdmS6eKeRo .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tdmS6eKeRo .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tdmS6eKeRo .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tdmS6eKeRo .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tdmS6eKeRo .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tdmS6eKeRo .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tdmS6eKeRo .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-tdmS6eKeRo .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-tdmS6eKeRo .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tdmS6eKeRo .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-tdmS6eKeRo .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tdmS6eKeRo .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-tdmS6eKeRo .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tdmS6eKeRo .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-tdmS6eKeRo .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-tdmS6eKeRo .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-tdmS6eKeRo .card-wrapper .card-img .meta-category {
  background-color: #4f87fb;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-tdmS6eKeRo .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-tdmS6eKeRo .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tdmS6eKeRo .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tdmS6eKeRo .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-tdmS6eKeRo .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdmS6eKeRo .btn[class*='-outline']:active,
.cid-tdmS6eKeRo .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdmS6eKeRo .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-tdmS6eKeRo .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-tdmS6eKeRo .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-tdmS6eKeRo .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-tdmS6eKeRo .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-tdmS6eKeRo .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-tdmS6eKeRo .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-tdmS6eKeRo .card {
    margin-bottom: 15px;
  }
}
.cid-tdmS6eKeRo .contents .mbr-section-title {
  color: #4289a7;
}
.cid-tdmS6eKeRo .card-wrapper .card-box .card-title {
  color: #404d50;
}
.cid-tdlyMYJOPt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e6ecf2;
}
.cid-tdlyMYJOPt .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tdlyMYJOPt .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tdlyMYJOPt .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tdlyMYJOPt .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tdlyMYJOPt .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tdlyMYJOPt .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tdlyMYJOPt .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-tdlyMYJOPt .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-tdlyMYJOPt .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tdlyMYJOPt .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-tdlyMYJOPt .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tdlyMYJOPt .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-tdlyMYJOPt .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tdlyMYJOPt .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-tdlyMYJOPt .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-tdlyMYJOPt .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-tdlyMYJOPt .card-wrapper .card-img .meta-category {
  background-color: #4f87fb;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-tdlyMYJOPt .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-tdlyMYJOPt .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tdlyMYJOPt .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tdlyMYJOPt .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-tdlyMYJOPt .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdlyMYJOPt .btn[class*='-outline']:active,
.cid-tdlyMYJOPt .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdlyMYJOPt .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-tdlyMYJOPt .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-tdlyMYJOPt .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-tdlyMYJOPt .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-tdlyMYJOPt .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-tdlyMYJOPt .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-tdlyMYJOPt .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-tdlyMYJOPt .card {
    margin-bottom: 15px;
  }
}
.cid-tdlyMYJOPt .contents .mbr-section-title {
  color: #4289a7;
}
.cid-tdlyMYJOPt .card-wrapper .card-box .card-title {
  color: #404d50;
}
.cid-tdaL60veYQ {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #e6ecf2;
}
.cid-tdaL60veYQ .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tdaL60veYQ .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tdaL60veYQ .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tdaL60veYQ .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tdaL60veYQ .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tdaL60veYQ .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tdaL60veYQ .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-tdaL60veYQ .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-tdaL60veYQ .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tdaL60veYQ .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-tdaL60veYQ .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tdaL60veYQ .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-tdaL60veYQ .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tdaL60veYQ .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-tdaL60veYQ .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-tdaL60veYQ .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-tdaL60veYQ .card-wrapper .card-img .meta-category {
  background-color: #4f87fb;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-tdaL60veYQ .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-tdaL60veYQ .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tdaL60veYQ .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tdaL60veYQ .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-tdaL60veYQ .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdaL60veYQ .btn[class*='-outline']:active,
.cid-tdaL60veYQ .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdaL60veYQ .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-tdaL60veYQ .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-tdaL60veYQ .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-tdaL60veYQ .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-tdaL60veYQ .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-tdaL60veYQ .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-tdaL60veYQ .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-tdaL60veYQ .card {
    margin-bottom: 15px;
  }
}
.cid-tdaL60veYQ .contents .mbr-section-title {
  color: #4289a7;
}
.cid-tdaL60veYQ .card-wrapper .card-box .card-title {
  color: #404d50;
}
.cid-tdeXHocxuP {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #e6ecf2;
}
.cid-tdeXHocxuP .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tdeXHocxuP .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tdeXHocxuP .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tdeXHocxuP .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tdeXHocxuP .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tdeXHocxuP .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tdeXHocxuP .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-tdeXHocxuP .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-tdeXHocxuP .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tdeXHocxuP .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-tdeXHocxuP .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tdeXHocxuP .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-tdeXHocxuP .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tdeXHocxuP .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-tdeXHocxuP .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-tdeXHocxuP .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-tdeXHocxuP .card-wrapper .card-img .meta-category {
  background-color: #4f87fb;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-tdeXHocxuP .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-tdeXHocxuP .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tdeXHocxuP .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tdeXHocxuP .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-tdeXHocxuP .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdeXHocxuP .btn[class*='-outline']:active,
.cid-tdeXHocxuP .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tdeXHocxuP .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-tdeXHocxuP .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-tdeXHocxuP .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-tdeXHocxuP .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-tdeXHocxuP .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-tdeXHocxuP .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-tdeXHocxuP .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-tdeXHocxuP .card {
    margin-bottom: 15px;
  }
}
.cid-tdeXHocxuP .contents .mbr-section-title {
  color: #4289a7;
}
.cid-tdeXHocxuP .card-wrapper .card-box .card-title {
  color: #404d50;
}
.cid-tcZvsQe5JD {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #e6ecf2;
}
.cid-tcZvsQe5JD .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tcZvsQe5JD .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tcZvsQe5JD .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tcZvsQe5JD .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tcZvsQe5JD .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tcZvsQe5JD .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tcZvsQe5JD .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-tcZvsQe5JD .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-tcZvsQe5JD .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tcZvsQe5JD .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-tcZvsQe5JD .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tcZvsQe5JD .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-tcZvsQe5JD .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tcZvsQe5JD .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-tcZvsQe5JD .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-tcZvsQe5JD .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-tcZvsQe5JD .card-wrapper .card-img .meta-category {
  background-color: #4f87fb;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-tcZvsQe5JD .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-tcZvsQe5JD .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tcZvsQe5JD .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tcZvsQe5JD .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-tcZvsQe5JD .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tcZvsQe5JD .btn[class*='-outline']:active,
.cid-tcZvsQe5JD .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tcZvsQe5JD .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-tcZvsQe5JD .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-tcZvsQe5JD .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-tcZvsQe5JD .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-tcZvsQe5JD .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-tcZvsQe5JD .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-tcZvsQe5JD .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-tcZvsQe5JD .card {
    margin-bottom: 15px;
  }
}
.cid-tcZvsQe5JD .contents .mbr-section-title {
  color: #4289a7;
}
.cid-tcZvsQe5JD .card-wrapper .card-box .card-title {
  color: #404d50;
}
.cid-tcqgaUSCa9 {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #e6ecf2;
}
.cid-tcqgaUSCa9 .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tcqgaUSCa9 .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tcqgaUSCa9 .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tcqgaUSCa9 .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tcqgaUSCa9 .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tcqgaUSCa9 .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tcqgaUSCa9 .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-tcqgaUSCa9 .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-tcqgaUSCa9 .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tcqgaUSCa9 .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-tcqgaUSCa9 .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tcqgaUSCa9 .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-tcqgaUSCa9 .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tcqgaUSCa9 .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-tcqgaUSCa9 .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-tcqgaUSCa9 .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-tcqgaUSCa9 .card-wrapper .card-img .meta-category {
  background-color: #4f87fb;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-tcqgaUSCa9 .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-tcqgaUSCa9 .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tcqgaUSCa9 .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tcqgaUSCa9 .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-tcqgaUSCa9 .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tcqgaUSCa9 .btn[class*='-outline']:active,
.cid-tcqgaUSCa9 .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tcqgaUSCa9 .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-tcqgaUSCa9 .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-tcqgaUSCa9 .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-tcqgaUSCa9 .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-tcqgaUSCa9 .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-tcqgaUSCa9 .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-tcqgaUSCa9 .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-tcqgaUSCa9 .card {
    margin-bottom: 15px;
  }
}
.cid-tcqgaUSCa9 .contents .mbr-section-title {
  color: #4289a7;
}
.cid-tcqgaUSCa9 .card-wrapper .card-box .card-title {
  color: #404d50;
}
.cid-tcKxGjsYye {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tcKxGjsYye .mbr-section-subtitle {
  color: #767676;
}
.cid-tcKxGjsYye .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tcKxGjsYye .table-wrapper {
  margin: 0 auto;
}
.cid-tcKxGjsYye table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tcKxGjsYye table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-tcKxGjsYye table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tcKxGjsYye .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tcKxGjsYye .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tcKxGjsYye .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tcKxGjsYye .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tcKxGjsYye .dataTables_wrapper {
  display: block;
}
.cid-tcKxGjsYye .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tcKxGjsYye .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tcKxGjsYye .head-item:after,
.cid-tcKxGjsYye .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tcKxGjsYye .dataTables_filter {
    text-align: center;
  }
  .cid-tcKxGjsYye .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tcKxGjsYye .dataTables_filter {
    text-align: center;
  }
  .cid-tcKxGjsYye .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tcKxGjsYye table th,
  .cid-tcKxGjsYye table td {
    padding: .75rem;
  }
}
.cid-tcKxGjsYye .body-item {
  text-align: left;
}
.cid-tcNBlSqIpY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tcNBlSqIpY .mbr-section-subtitle {
  color: #767676;
}
.cid-tfldAQqax2 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tfldAQqax2 .mbr-text {
  text-align: left;
}
.cid-tfldCkKEPt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tfldCkKEPt .mbr-text {
  color: #232323;
}
.cid-tfldEnEVB4 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tfldEnEVB4 .mbr-section-subtitle {
  color: #767676;
}
.cid-tfldEnEVB4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tfldEnEVB4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfldEnEVB4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfldEnEVB4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tfldEnEVB4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tfldEnEVB4 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tfldEnEVB4 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tfldEnEVB4 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tfldEnEVB4 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tfldEnEVB4 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tfldEnEVB4 ul {
  font-size: 0;
}
.cid-tfldEnEVB4 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tfldEnEVB4 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tfldEnEVB4 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tfldEnEVB4 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tfldEnEVB4 .mbr-gallery-filter ul li:first-child,
.cid-tfldEnEVB4 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tfldEnEVB4 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tfldEnEVB4 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tfldEnEVB4 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tfldEnEVB4 .btn.active:after {
  animation: none;
}
.cid-tfldEnEVB4 .btn:active {
  box-shadow: none !important;
}
.cid-tfldEnEVB4 .btn:hover {
  background: transparent !important;
}
.cid-tfldEnEVB4 .btn:hover:before {
  background: transparent !important;
}
.cid-tfldEnEVB4 .btn:before {
  background-color: transparent !important;
}
.cid-tfldEnEVB4 .btn:focus {
  box-shadow: none !important;
}
.cid-tfldEnEVB4 .mbr-section-title,
.cid-tfldEnEVB4 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tfldIQeBNd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tfldIQeBNd .mbr-section-subtitle {
  color: #767676;
}
.cid-tdTO1zn38S {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tdTO1zn38S .mbr-text {
  text-align: left;
}
.cid-tdTO3VgjSR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tdTO3VgjSR .mbr-text {
  color: #232323;
}
.cid-tdTO7v4LmX {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tdTO7v4LmX .mbr-section-subtitle {
  color: #767676;
}
.cid-tdTO7v4LmX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tdTO7v4LmX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tdTO7v4LmX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tdTO7v4LmX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tdTO7v4LmX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tdTO7v4LmX .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tdTO7v4LmX .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tdTO7v4LmX .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tdTO7v4LmX .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tdTO7v4LmX .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tdTO7v4LmX ul {
  font-size: 0;
}
.cid-tdTO7v4LmX .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tdTO7v4LmX .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tdTO7v4LmX .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tdTO7v4LmX .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tdTO7v4LmX .mbr-gallery-filter ul li:first-child,
.cid-tdTO7v4LmX .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tdTO7v4LmX .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tdTO7v4LmX .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tdTO7v4LmX .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tdTO7v4LmX .btn.active:after {
  animation: none;
}
.cid-tdTO7v4LmX .btn:active {
  box-shadow: none !important;
}
.cid-tdTO7v4LmX .btn:hover {
  background: transparent !important;
}
.cid-tdTO7v4LmX .btn:hover:before {
  background: transparent !important;
}
.cid-tdTO7v4LmX .btn:before {
  background-color: transparent !important;
}
.cid-tdTO7v4LmX .btn:focus {
  box-shadow: none !important;
}
.cid-tdTO7v4LmX .mbr-section-title,
.cid-tdTO7v4LmX .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tdTO9foIRT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tdTO9foIRT .mbr-section-subtitle {
  color: #767676;
}
.cid-tdTNf5AfbU {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tdTNf5AfbU .mbr-text {
  text-align: left;
}
.cid-tdTNjsigrS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tdTNjsigrS .mbr-text {
  color: #232323;
}
.cid-tdTNVf0t1D {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tdTNVf0t1D .mbr-section-subtitle {
  color: #767676;
}
.cid-tdTNVf0t1D .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tdTNVf0t1D .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tdTNVf0t1D .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tdTNVf0t1D .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tdTNVf0t1D .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tdTNVf0t1D .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tdTNVf0t1D .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tdTNVf0t1D .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tdTNVf0t1D .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tdTNVf0t1D .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tdTNVf0t1D ul {
  font-size: 0;
}
.cid-tdTNVf0t1D .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tdTNVf0t1D .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tdTNVf0t1D .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tdTNVf0t1D .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tdTNVf0t1D .mbr-gallery-filter ul li:first-child,
.cid-tdTNVf0t1D .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tdTNVf0t1D .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tdTNVf0t1D .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tdTNVf0t1D .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tdTNVf0t1D .btn.active:after {
  animation: none;
}
.cid-tdTNVf0t1D .btn:active {
  box-shadow: none !important;
}
.cid-tdTNVf0t1D .btn:hover {
  background: transparent !important;
}
.cid-tdTNVf0t1D .btn:hover:before {
  background: transparent !important;
}
.cid-tdTNVf0t1D .btn:before {
  background-color: transparent !important;
}
.cid-tdTNVf0t1D .btn:focus {
  box-shadow: none !important;
}
.cid-tdTNVf0t1D .mbr-section-title,
.cid-tdTNVf0t1D .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tdTNX8T0Ru {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tdTNX8T0Ru .mbr-section-subtitle {
  color: #767676;
}
.cid-tdTNhSZ0IS {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tdTNhSZ0IS .mbr-text {
  text-align: left;
}
.cid-td5AHkKd19 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-td5AHkKd19 .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-td5AJcA1jW {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-td5AJcA1jW .mbr-section-subtitle {
  color: #767676;
}
.cid-td5AJcA1jW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-td5AJcA1jW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-td5AJcA1jW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-td5AJcA1jW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-td5AJcA1jW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-td5AJcA1jW .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-td5AJcA1jW .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-td5AJcA1jW .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-td5AJcA1jW .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-td5AJcA1jW .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-td5AJcA1jW ul {
  font-size: 0;
}
.cid-td5AJcA1jW .mbr-gallery-filter ul {
  text-align: center;
}
.cid-td5AJcA1jW .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-td5AJcA1jW .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-td5AJcA1jW .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-td5AJcA1jW .mbr-gallery-filter ul li:first-child,
.cid-td5AJcA1jW .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-td5AJcA1jW .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-td5AJcA1jW .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-td5AJcA1jW .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-td5AJcA1jW .btn.active:after {
  animation: none;
}
.cid-td5AJcA1jW .btn:active {
  box-shadow: none !important;
}
.cid-td5AJcA1jW .btn:hover {
  background: transparent !important;
}
.cid-td5AJcA1jW .btn:hover:before {
  background: transparent !important;
}
.cid-td5AJcA1jW .btn:before {
  background-color: transparent !important;
}
.cid-td5AJcA1jW .btn:focus {
  box-shadow: none !important;
}
.cid-td5AJcA1jW .mbr-section-title,
.cid-td5AJcA1jW .mbr-gallery-filter ul {
  text-align: center;
}
.cid-td5AU7OfXP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-td5AU7OfXP .mbr-section-subtitle {
  color: #767676;
}
.cid-tcWEEpcMWp {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tcWEEpcMWp .mbr-text {
  text-align: left;
}
.cid-tcWEFDCMbc {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tcWEFDCMbc .mbr-text {
  color: #232323;
}
.cid-tcWEIa88lP {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tcWEIa88lP .mbr-section-subtitle {
  color: #767676;
}
.cid-tcWEIa88lP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tcWEIa88lP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcWEIa88lP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tcWEIa88lP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tcWEIa88lP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tcWEIa88lP .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tcWEIa88lP .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tcWEIa88lP .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tcWEIa88lP .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tcWEIa88lP .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tcWEIa88lP ul {
  font-size: 0;
}
.cid-tcWEIa88lP .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tcWEIa88lP .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tcWEIa88lP .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tcWEIa88lP .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tcWEIa88lP .mbr-gallery-filter ul li:first-child,
.cid-tcWEIa88lP .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tcWEIa88lP .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tcWEIa88lP .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tcWEIa88lP .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tcWEIa88lP .btn.active:after {
  animation: none;
}
.cid-tcWEIa88lP .btn:active {
  box-shadow: none !important;
}
.cid-tcWEIa88lP .btn:hover {
  background: transparent !important;
}
.cid-tcWEIa88lP .btn:hover:before {
  background: transparent !important;
}
.cid-tcWEIa88lP .btn:before {
  background-color: transparent !important;
}
.cid-tcWEIa88lP .btn:focus {
  box-shadow: none !important;
}
.cid-tcWEIa88lP .mbr-section-title,
.cid-tcWEIa88lP .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tcWELoKKWJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tcWELoKKWJ .mbr-section-subtitle {
  color: #767676;
}
.cid-tcNAJeSLM5 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tcNAJeSLM5 .mbr-text {
  text-align: left;
}
.cid-tcNAKkeMxW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tcNAKkeMxW .mbr-text {
  color: #232323;
}
.cid-tcNAMkufsf {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tcNAMkufsf .mbr-section-subtitle {
  color: #767676;
}
.cid-tcNAMkufsf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tcNAMkufsf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcNAMkufsf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tcNAMkufsf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tcNAMkufsf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tcNAMkufsf .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tcNAMkufsf .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tcNAMkufsf .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tcNAMkufsf .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tcNAMkufsf .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tcNAMkufsf ul {
  font-size: 0;
}
.cid-tcNAMkufsf .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tcNAMkufsf .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tcNAMkufsf .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tcNAMkufsf .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tcNAMkufsf .mbr-gallery-filter ul li:first-child,
.cid-tcNAMkufsf .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tcNAMkufsf .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tcNAMkufsf .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tcNAMkufsf .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tcNAMkufsf .btn.active:after {
  animation: none;
}
.cid-tcNAMkufsf .btn:active {
  box-shadow: none !important;
}
.cid-tcNAMkufsf .btn:hover {
  background: transparent !important;
}
.cid-tcNAMkufsf .btn:hover:before {
  background: transparent !important;
}
.cid-tcNAMkufsf .btn:before {
  background-color: transparent !important;
}
.cid-tcNAMkufsf .btn:focus {
  box-shadow: none !important;
}
.cid-tcNAMkufsf .mbr-section-title,
.cid-tcNAMkufsf .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tcNBmTrncJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tcNBmTrncJ .mbr-section-subtitle {
  color: #767676;
}
.cid-tclez5b82s {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tclez5b82s .mbr-text {
  text-align: left;
}
.cid-tcleBg6TaP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tcleBg6TaP .mbr-text {
  color: #232323;
}
.cid-tcleHqvwfS {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tcleHqvwfS .mbr-section-subtitle {
  color: #767676;
}
.cid-tcleHqvwfS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tcleHqvwfS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcleHqvwfS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tcleHqvwfS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tcleHqvwfS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tcleHqvwfS .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tcleHqvwfS .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tcleHqvwfS .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tcleHqvwfS .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tcleHqvwfS .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tcleHqvwfS ul {
  font-size: 0;
}
.cid-tcleHqvwfS .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tcleHqvwfS .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tcleHqvwfS .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tcleHqvwfS .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tcleHqvwfS .mbr-gallery-filter ul li:first-child,
.cid-tcleHqvwfS .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tcleHqvwfS .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tcleHqvwfS .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tcleHqvwfS .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tcleHqvwfS .btn.active:after {
  animation: none;
}
.cid-tcleHqvwfS .btn:active {
  box-shadow: none !important;
}
.cid-tcleHqvwfS .btn:hover {
  background: transparent !important;
}
.cid-tcleHqvwfS .btn:hover:before {
  background: transparent !important;
}
.cid-tcleHqvwfS .btn:before {
  background-color: transparent !important;
}
.cid-tcleHqvwfS .btn:focus {
  box-shadow: none !important;
}
.cid-tcleHqvwfS .mbr-section-title,
.cid-tcleHqvwfS .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tcqiKuiZyS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tcqiKuiZyS .mbr-section-subtitle {
  color: #767676;
}
.cid-tbXiKX7G4g {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tbXiKX7G4g .mbr-text {
  text-align: left;
}
.cid-tbXiMSbCDV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tbXiMSbCDV .mbr-text {
  color: #232323;
}
.cid-tbXiHPrISE {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tbXiHPrISE .mbr-section-subtitle {
  color: #767676;
}
.cid-tbXiHPrISE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tbXiHPrISE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tbXiHPrISE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tbXiHPrISE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tbXiHPrISE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tbXiHPrISE .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tbXiHPrISE .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tbXiHPrISE .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tbXiHPrISE .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tbXiHPrISE .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tbXiHPrISE ul {
  font-size: 0;
}
.cid-tbXiHPrISE .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tbXiHPrISE .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tbXiHPrISE .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tbXiHPrISE .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tbXiHPrISE .mbr-gallery-filter ul li:first-child,
.cid-tbXiHPrISE .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tbXiHPrISE .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tbXiHPrISE .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tbXiHPrISE .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tbXiHPrISE .btn.active:after {
  animation: none;
}
.cid-tbXiHPrISE .btn:active {
  box-shadow: none !important;
}
.cid-tbXiHPrISE .btn:hover {
  background: transparent !important;
}
.cid-tbXiHPrISE .btn:hover:before {
  background: transparent !important;
}
.cid-tbXiHPrISE .btn:before {
  background-color: transparent !important;
}
.cid-tbXiHPrISE .btn:focus {
  box-shadow: none !important;
}
.cid-tbXiHPrISE .mbr-section-title,
.cid-tbXiHPrISE .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tc3pODU6Gs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tc3pODU6Gs .mbr-section-subtitle {
  color: #767676;
}
.cid-tbKbjfJEaf {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tbKbjfJEaf .mbr-text {
  text-align: left;
}
.cid-tb1j00YgGA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tb1j00YgGA .mbr-text {
  color: #465052;
  text-align: left;
}
.cid-tb1j00YgGA .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-tbKaDAMEoU {
  padding-top: 30px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tbKaDAMEoU .mbr-section-subtitle {
  color: #767676;
}
.cid-tbKaDAMEoU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tbKaDAMEoU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tbKaDAMEoU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tbKaDAMEoU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tbKaDAMEoU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tbKaDAMEoU .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tbKaDAMEoU .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tbKaDAMEoU .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tbKaDAMEoU .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tbKaDAMEoU .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tbKaDAMEoU ul {
  font-size: 0;
}
.cid-tbKaDAMEoU .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tbKaDAMEoU .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tbKaDAMEoU .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tbKaDAMEoU .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tbKaDAMEoU .mbr-gallery-filter ul li:first-child,
.cid-tbKaDAMEoU .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tbKaDAMEoU .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tbKaDAMEoU .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-tbKaDAMEoU .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tbKaDAMEoU .btn.active:after {
  animation: none;
}
.cid-tbKaDAMEoU .btn:active {
  box-shadow: none !important;
}
.cid-tbKaDAMEoU .btn:hover {
  background: transparent !important;
}
.cid-tbKaDAMEoU .btn:hover:before {
  background: transparent !important;
}
.cid-tbKaDAMEoU .btn:before {
  background-color: transparent !important;
}
.cid-tbKaDAMEoU .btn:focus {
  box-shadow: none !important;
}
.cid-tc3pPzTTL6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tc3pPzTTL6 .mbr-section-subtitle {
  color: #767676;
}
.cid-tb1kZ2AQ1f {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tb1kZ2AQ1f .mbr-text {
  text-align: left;
}
.cid-tb1lqqGh5p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tb1lqqGh5p .mbr-text {
  text-align: left;
}
.cid-tb1l6bzQYc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tb1l6bzQYc .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tb1lv0o7sX {
  padding-top: 30px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tb1lv0o7sX .mbr-section-subtitle {
  color: #767676;
}
.cid-tb1lv0o7sX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tb1lv0o7sX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tb1lv0o7sX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tb1lv0o7sX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tb1lv0o7sX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tb1lv0o7sX .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tb1lv0o7sX .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tb1lv0o7sX .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tb1lv0o7sX .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tb1lv0o7sX .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tb1lv0o7sX ul {
  font-size: 0;
}
.cid-tb1lv0o7sX .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tb1lv0o7sX .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tb1lv0o7sX .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tb1lv0o7sX .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tb1lv0o7sX .mbr-gallery-filter ul li:first-child,
.cid-tb1lv0o7sX .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tb1lv0o7sX .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tb1lv0o7sX .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-tb1lv0o7sX .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tb1lv0o7sX .btn.active:after {
  animation: none;
}
.cid-tb1lv0o7sX .btn:active {
  box-shadow: none !important;
}
.cid-tb1lv0o7sX .btn:hover {
  background: transparent !important;
}
.cid-tb1lv0o7sX .btn:hover:before {
  background: transparent !important;
}
.cid-tb1lv0o7sX .btn:before {
  background-color: transparent !important;
}
.cid-tb1lv0o7sX .btn:focus {
  box-shadow: none !important;
}
.cid-tc3pQxP4lo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tc3pQxP4lo .mbr-section-subtitle {
  color: #767676;
}
.cid-tb1j01GQqL {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tb1j01GQqL .mbr-text {
  text-align: left;
}
.cid-tb1j02nKd1 {
  padding-top: 30px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tb1j02nKd1 .mbr-section-subtitle {
  color: #767676;
}
.cid-tb1j02nKd1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tb1j02nKd1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tb1j02nKd1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tb1j02nKd1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tb1j02nKd1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tb1j02nKd1 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tb1j02nKd1 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tb1j02nKd1 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tb1j02nKd1 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tb1j02nKd1 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tb1j02nKd1 ul {
  font-size: 0;
}
.cid-tb1j02nKd1 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tb1j02nKd1 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tb1j02nKd1 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tb1j02nKd1 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tb1j02nKd1 .mbr-gallery-filter ul li:first-child,
.cid-tb1j02nKd1 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tb1j02nKd1 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tb1j02nKd1 .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-tb1j02nKd1 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tb1j02nKd1 .btn.active:after {
  animation: none;
}
.cid-tb1j02nKd1 .btn:active {
  box-shadow: none !important;
}
.cid-tb1j02nKd1 .btn:hover {
  background: transparent !important;
}
.cid-tb1j02nKd1 .btn:hover:before {
  background: transparent !important;
}
.cid-tb1j02nKd1 .btn:before {
  background-color: transparent !important;
}
.cid-tb1j02nKd1 .btn:focus {
  box-shadow: none !important;
}
.cid-tb1j02aTgQ {
  padding-top: 15px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tb1j02aTgQ .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tb1j04TZcf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-tb1j04TZcf .mbr-text a {
  background-size: 100% 0%;
}
.cid-tb1j04TZcf .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-tb1j04TZcf .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfSaEmfgvo {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eff9;
}
.cid-tfSaEmfgvo .image-wrapper {
  height: 100%;
}
@media (max-width: 991px) {
  .cid-tfSaEmfgvo .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tfSaEmfgvo .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tfSaEmfgvo .image-wrapper img {
    border-end-start-radius: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-tfSaEmfgvo .text-wrapper {
    padding: 10rem 5rem 0 0rem;
  }
}
.cid-tfSaEmfgvo .mbr-section-title {
  color: #404d50;
}
.cid-tfSaEmfgvo .mbr-text {
  color: #6c7577;
}
.cid-tfSaEmfgvo .btn {
  padding: 1rem 3.4rem;
}
.cid-tfSaEmfgvo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfSaEmfgvo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfSaEmfgvo .mbr-text,
.cid-tfSaEmfgvo .mbr-section-btn {
  color: #6c7577;
  text-align: center;
}
.cid-tfSaEmDZMD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e8eff9;
}
.cid-tfSaEmDZMD .mbr-text {
  color: #465052;
  text-align: left;
}
.cid-tfSaEmDZMD .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-tfSaEn0plf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #b2ccd2;
}
.cid-tfSaEn0plf .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tfSaEn0plf .row-element,
.cid-tfSaEn0plf .image-element {
  padding: 0;
}
.cid-tfSaEn0plf .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tfSaEn0plf .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tfSaEn0plf .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-tfSaEn0plf .text-content {
    padding: 2rem 1rem;
  }
  .cid-tfSaEn0plf .mbr-title,
  .cid-tfSaEn0plf .underline,
  .cid-tfSaEn0plf .mbr-text,
  .cid-tfSaEn0plf .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tfSaEn0plf .mbr-title {
  color: #232323;
}
.cid-tfSaEn0plf .mbr-text,
.cid-tfSaEn0plf .mbr-section-btn {
  color: #404d50;
}
.cid-tmLyDwdIMu {
  padding-top: 135px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-tmLyDwdIMu .mbr-section-subtitle {
  color: #365c9a;
}
.cid-tmLyDwdIMu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tmLyDwdIMu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmLyDwdIMu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmLyDwdIMu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tmLyDwdIMu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tmLyDwdIMu .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmLyDwdIMu .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmLyDwdIMu .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmLyDwdIMu .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmLyDwdIMu .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tmLyDwdIMu ul {
  font-size: 0;
}
.cid-tmLyDwdIMu .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmLyDwdIMu .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tmLyDwdIMu .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tmLyDwdIMu .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tmLyDwdIMu .mbr-gallery-filter ul li:first-child,
.cid-tmLyDwdIMu .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tmLyDwdIMu .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tmLyDwdIMu .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tmLyDwdIMu .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tmLyDwdIMu .btn.active:after {
  animation: none;
}
.cid-tmLyDwdIMu .btn:active {
  box-shadow: none !important;
}
.cid-tmLyDwdIMu .btn:hover {
  background: transparent !important;
}
.cid-tmLyDwdIMu .btn:hover:before {
  background: transparent !important;
}
.cid-tmLyDwdIMu .btn:before {
  background-color: transparent !important;
}
.cid-tmLyDwdIMu .btn:focus {
  box-shadow: none !important;
}
.cid-tmLyDwdIMu .mbr-section-title,
.cid-tmLyDwdIMu .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmyOxL8ckB {
  padding-top: 135px;
  padding-bottom: 135px;
  background-color: #efefef;
}
.cid-tmyOxL8ckB .mbr-section-subtitle {
  color: #365c9a;
}
.cid-tmyOxL8ckB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tmyOxL8ckB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmyOxL8ckB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmyOxL8ckB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tmyOxL8ckB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tmyOxL8ckB .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmyOxL8ckB .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmyOxL8ckB .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmyOxL8ckB .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmyOxL8ckB .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tmyOxL8ckB ul {
  font-size: 0;
}
.cid-tmyOxL8ckB .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmyOxL8ckB .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tmyOxL8ckB .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tmyOxL8ckB .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tmyOxL8ckB .mbr-gallery-filter ul li:first-child,
.cid-tmyOxL8ckB .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tmyOxL8ckB .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tmyOxL8ckB .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tmyOxL8ckB .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tmyOxL8ckB .btn.active:after {
  animation: none;
}
.cid-tmyOxL8ckB .btn:active {
  box-shadow: none !important;
}
.cid-tmyOxL8ckB .btn:hover {
  background: transparent !important;
}
.cid-tmyOxL8ckB .btn:hover:before {
  background: transparent !important;
}
.cid-tmyOxL8ckB .btn:before {
  background-color: transparent !important;
}
.cid-tmyOxL8ckB .btn:focus {
  box-shadow: none !important;
}
.cid-tmyOxL8ckB .mbr-section-title,
.cid-tmyOxL8ckB .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tlly1k9lHV {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #e6ecf2;
}
.cid-tlly1k9lHV .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tlly1k9lHV .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tlly1k9lHV .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tlly1k9lHV .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tlly1k9lHV .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tlly1k9lHV .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tlly1k9lHV .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-tlly1k9lHV .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-tlly1k9lHV .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tlly1k9lHV .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-tlly1k9lHV .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tlly1k9lHV .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-tlly1k9lHV .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tlly1k9lHV .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-tlly1k9lHV .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-tlly1k9lHV .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-tlly1k9lHV .card-wrapper .card-img .meta-category {
  background-color: #4f87fb;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-tlly1k9lHV .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-tlly1k9lHV .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tlly1k9lHV .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tlly1k9lHV .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-tlly1k9lHV .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tlly1k9lHV .btn[class*='-outline']:active,
.cid-tlly1k9lHV .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tlly1k9lHV .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-tlly1k9lHV .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-tlly1k9lHV .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-tlly1k9lHV .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-tlly1k9lHV .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-tlly1k9lHV .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-tlly1k9lHV .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-tlly1k9lHV .card {
    margin-bottom: 15px;
  }
}
.cid-tlly1k9lHV .contents .mbr-section-title {
  color: #4289a7;
}
.cid-tlly1k9lHV .card-wrapper .card-box .card-title {
  color: #404d50;
}
.cid-tlhSNAlW9s {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #e6ecf2;
}
.cid-tlhSNAlW9s .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tlhSNAlW9s .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tlhSNAlW9s .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tlhSNAlW9s .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tlhSNAlW9s .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tlhSNAlW9s .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tlhSNAlW9s .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-tlhSNAlW9s .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-tlhSNAlW9s .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tlhSNAlW9s .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-tlhSNAlW9s .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tlhSNAlW9s .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-tlhSNAlW9s .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tlhSNAlW9s .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-tlhSNAlW9s .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-tlhSNAlW9s .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-tlhSNAlW9s .card-wrapper .card-img .meta-category {
  background-color: #4f87fb;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-tlhSNAlW9s .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-tlhSNAlW9s .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tlhSNAlW9s .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tlhSNAlW9s .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-tlhSNAlW9s .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tlhSNAlW9s .btn[class*='-outline']:active,
.cid-tlhSNAlW9s .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tlhSNAlW9s .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-tlhSNAlW9s .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-tlhSNAlW9s .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-tlhSNAlW9s .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-tlhSNAlW9s .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-tlhSNAlW9s .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-tlhSNAlW9s .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-tlhSNAlW9s .card {
    margin-bottom: 15px;
  }
}
.cid-tlhSNAlW9s .contents .mbr-section-title {
  color: #4289a7;
}
.cid-tlhSNAlW9s .card-wrapper .card-box .card-title {
  color: #404d50;
}
.cid-tlntudgb43 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tlntudgb43 .mbr-section-subtitle {
  color: #767676;
}
.cid-tlntudgb43 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tlntudgb43 .table-wrapper {
  margin: 0 auto;
}
.cid-tlntudgb43 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tlntudgb43 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #ec6963;
  color: white;
  vertical-align: middle;
}
.cid-tlntudgb43 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tlntudgb43 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tlntudgb43 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tlntudgb43 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tlntudgb43 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tlntudgb43 .dataTables_wrapper {
  display: block;
}
.cid-tlntudgb43 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tlntudgb43 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tlntudgb43 .head-item:after,
.cid-tlntudgb43 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tlntudgb43 .dataTables_filter {
    text-align: center;
  }
  .cid-tlntudgb43 .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tlntudgb43 .dataTables_filter {
    text-align: center;
  }
  .cid-tlntudgb43 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tlntudgb43 table th,
  .cid-tlntudgb43 table td {
    padding: .75rem;
  }
}
.cid-tlntudgb43 .body-item {
  text-align: left;
}
.cid-tlPNOTnypj {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tlPNOTnypj .mbr-section-subtitle {
  color: #767676;
}
.cid-tlPNOTnypj .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tlPNOTnypj .table-wrapper {
  margin: 0 auto;
}
.cid-tlPNOTnypj table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tlPNOTnypj table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-tlPNOTnypj table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tlPNOTnypj .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tlPNOTnypj .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tlPNOTnypj .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tlPNOTnypj .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tlPNOTnypj .dataTables_wrapper {
  display: block;
}
.cid-tlPNOTnypj .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tlPNOTnypj .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tlPNOTnypj .head-item:after,
.cid-tlPNOTnypj .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tlPNOTnypj .dataTables_filter {
    text-align: center;
  }
  .cid-tlPNOTnypj .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tlPNOTnypj .dataTables_filter {
    text-align: center;
  }
  .cid-tlPNOTnypj .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tlPNOTnypj table th,
  .cid-tlPNOTnypj table td {
    padding: .75rem;
  }
}
.cid-tlPNOTnypj .body-item {
  text-align: left;
}
.cid-tn56iD8230 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tn56iD8230 .mbr-section-subtitle {
  color: #767676;
}
.cid-tn550ouDqN {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tn550ouDqN .mbr-text {
  text-align: left;
}
.cid-tn55ns5WLk {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tn55ns5WLk .mbr-text {
  text-align: left;
}
.cid-tn55parWv1 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tn55parWv1 .mbr-section-subtitle {
  color: #767676;
}
.cid-tn55parWv1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tn55parWv1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tn55parWv1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tn55parWv1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tn55parWv1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tn55parWv1 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tn55parWv1 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tn55parWv1 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tn55parWv1 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tn55parWv1 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tn55parWv1 ul {
  font-size: 0;
}
.cid-tn55parWv1 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tn55parWv1 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tn55parWv1 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tn55parWv1 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tn55parWv1 .mbr-gallery-filter ul li:first-child,
.cid-tn55parWv1 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tn55parWv1 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tn55parWv1 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tn55parWv1 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tn55parWv1 .btn.active:after {
  animation: none;
}
.cid-tn55parWv1 .btn:active {
  box-shadow: none !important;
}
.cid-tn55parWv1 .btn:hover {
  background: transparent !important;
}
.cid-tn55parWv1 .btn:hover:before {
  background: transparent !important;
}
.cid-tn55parWv1 .btn:before {
  background-color: transparent !important;
}
.cid-tn55parWv1 .btn:focus {
  box-shadow: none !important;
}
.cid-tn55parWv1 .mbr-section-title,
.cid-tn55parWv1 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tn55i2pbdJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tn55i2pbdJ .mbr-section-subtitle {
  color: #767676;
}
.cid-tmSKluxZ1p {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmSKluxZ1p .mbr-text {
  text-align: left;
}
.cid-tmSKk4EB8j {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tmSKk4EB8j .mbr-text {
  text-align: left;
}
.cid-tmSKiLxCcn {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tmSKiLxCcn .mbr-section-subtitle {
  color: #767676;
}
.cid-tmSKiLxCcn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tmSKiLxCcn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmSKiLxCcn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmSKiLxCcn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tmSKiLxCcn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tmSKiLxCcn .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmSKiLxCcn .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmSKiLxCcn .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmSKiLxCcn .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmSKiLxCcn .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tmSKiLxCcn ul {
  font-size: 0;
}
.cid-tmSKiLxCcn .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmSKiLxCcn .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tmSKiLxCcn .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tmSKiLxCcn .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tmSKiLxCcn .mbr-gallery-filter ul li:first-child,
.cid-tmSKiLxCcn .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tmSKiLxCcn .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tmSKiLxCcn .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tmSKiLxCcn .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tmSKiLxCcn .btn.active:after {
  animation: none;
}
.cid-tmSKiLxCcn .btn:active {
  box-shadow: none !important;
}
.cid-tmSKiLxCcn .btn:hover {
  background: transparent !important;
}
.cid-tmSKiLxCcn .btn:hover:before {
  background: transparent !important;
}
.cid-tmSKiLxCcn .btn:before {
  background-color: transparent !important;
}
.cid-tmSKiLxCcn .btn:focus {
  box-shadow: none !important;
}
.cid-tmSKiLxCcn .mbr-section-title,
.cid-tmSKiLxCcn .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmuLoSjZE2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tmuLoSjZE2 .mbr-section-subtitle {
  color: #767676;
}
.cid-tmuMORo3DF {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmuMORo3DF .mbr-text {
  text-align: left;
}
.cid-tmuMKvTbIa {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tmuMKvTbIa .mbr-section-subtitle {
  color: #767676;
}
.cid-tmuMKvTbIa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tmuMKvTbIa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmuMKvTbIa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmuMKvTbIa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tmuMKvTbIa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tmuMKvTbIa .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmuMKvTbIa .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmuMKvTbIa .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmuMKvTbIa .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmuMKvTbIa .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tmuMKvTbIa ul {
  font-size: 0;
}
.cid-tmuMKvTbIa .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmuMKvTbIa .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tmuMKvTbIa .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tmuMKvTbIa .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tmuMKvTbIa .mbr-gallery-filter ul li:first-child,
.cid-tmuMKvTbIa .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tmuMKvTbIa .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tmuMKvTbIa .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tmuMKvTbIa .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tmuMKvTbIa .btn.active:after {
  animation: none;
}
.cid-tmuMKvTbIa .btn:active {
  box-shadow: none !important;
}
.cid-tmuMKvTbIa .btn:hover {
  background: transparent !important;
}
.cid-tmuMKvTbIa .btn:hover:before {
  background: transparent !important;
}
.cid-tmuMKvTbIa .btn:before {
  background-color: transparent !important;
}
.cid-tmuMKvTbIa .btn:focus {
  box-shadow: none !important;
}
.cid-tmuMKvTbIa .mbr-section-title,
.cid-tmuMKvTbIa .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmuMPYk2CW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tmuMPYk2CW .mbr-section-subtitle {
  color: #767676;
}
.cid-tmuLmHb5IP {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmuLmHb5IP .mbr-text {
  text-align: left;
}
.cid-tmuLnn7FRr {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmuLnn7FRr .mbr-text {
  text-align: left;
}
.cid-tmuLlxsjEb {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tmuLlxsjEb .mbr-section-subtitle {
  color: #767676;
}
.cid-tmuLlxsjEb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tmuLlxsjEb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmuLlxsjEb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmuLlxsjEb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tmuLlxsjEb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tmuLlxsjEb .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmuLlxsjEb .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmuLlxsjEb .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmuLlxsjEb .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmuLlxsjEb .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tmuLlxsjEb ul {
  font-size: 0;
}
.cid-tmuLlxsjEb .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmuLlxsjEb .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tmuLlxsjEb .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tmuLlxsjEb .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tmuLlxsjEb .mbr-gallery-filter ul li:first-child,
.cid-tmuLlxsjEb .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tmuLlxsjEb .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tmuLlxsjEb .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tmuLlxsjEb .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tmuLlxsjEb .btn.active:after {
  animation: none;
}
.cid-tmuLlxsjEb .btn:active {
  box-shadow: none !important;
}
.cid-tmuLlxsjEb .btn:hover {
  background: transparent !important;
}
.cid-tmuLlxsjEb .btn:hover:before {
  background: transparent !important;
}
.cid-tmuLlxsjEb .btn:before {
  background-color: transparent !important;
}
.cid-tmuLlxsjEb .btn:focus {
  box-shadow: none !important;
}
.cid-tmuLlxsjEb .mbr-section-title,
.cid-tmuLlxsjEb .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmuKsmzRIH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tmuKsmzRIH .mbr-section-subtitle {
  color: #767676;
}
.cid-tmuKpqSs9V {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmuKpqSs9V .mbr-text {
  text-align: left;
}
.cid-tmuKqxAq99 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmuKqxAq99 .mbr-text {
  text-align: left;
}
.cid-tmuKnlW7ev {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tmuKnlW7ev .mbr-section-subtitle {
  color: #767676;
}
.cid-tmuKnlW7ev .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tmuKnlW7ev .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmuKnlW7ev .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmuKnlW7ev .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tmuKnlW7ev .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tmuKnlW7ev .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmuKnlW7ev .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmuKnlW7ev .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmuKnlW7ev .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmuKnlW7ev .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tmuKnlW7ev ul {
  font-size: 0;
}
.cid-tmuKnlW7ev .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmuKnlW7ev .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tmuKnlW7ev .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tmuKnlW7ev .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tmuKnlW7ev .mbr-gallery-filter ul li:first-child,
.cid-tmuKnlW7ev .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tmuKnlW7ev .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tmuKnlW7ev .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tmuKnlW7ev .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tmuKnlW7ev .btn.active:after {
  animation: none;
}
.cid-tmuKnlW7ev .btn:active {
  box-shadow: none !important;
}
.cid-tmuKnlW7ev .btn:hover {
  background: transparent !important;
}
.cid-tmuKnlW7ev .btn:hover:before {
  background: transparent !important;
}
.cid-tmuKnlW7ev .btn:before {
  background-color: transparent !important;
}
.cid-tmuKnlW7ev .btn:focus {
  box-shadow: none !important;
}
.cid-tmuKnlW7ev .mbr-section-title,
.cid-tmuKnlW7ev .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmkNWyoYMa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tmkNWyoYMa .mbr-section-subtitle {
  color: #767676;
}
.cid-tmuJPjTmBm {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmuJPjTmBm .mbr-text {
  text-align: left;
}
.cid-tmuJPWFGpq {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmuJPWFGpq .mbr-text {
  text-align: left;
}
.cid-tmuJMIwYRH {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tmuJMIwYRH .mbr-section-subtitle {
  color: #767676;
}
.cid-tmuJMIwYRH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tmuJMIwYRH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmuJMIwYRH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmuJMIwYRH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tmuJMIwYRH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tmuJMIwYRH .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmuJMIwYRH .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmuJMIwYRH .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmuJMIwYRH .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmuJMIwYRH .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tmuJMIwYRH ul {
  font-size: 0;
}
.cid-tmuJMIwYRH .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmuJMIwYRH .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tmuJMIwYRH .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tmuJMIwYRH .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tmuJMIwYRH .mbr-gallery-filter ul li:first-child,
.cid-tmuJMIwYRH .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tmuJMIwYRH .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tmuJMIwYRH .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tmuJMIwYRH .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tmuJMIwYRH .btn.active:after {
  animation: none;
}
.cid-tmuJMIwYRH .btn:active {
  box-shadow: none !important;
}
.cid-tmuJMIwYRH .btn:hover {
  background: transparent !important;
}
.cid-tmuJMIwYRH .btn:hover:before {
  background: transparent !important;
}
.cid-tmuJMIwYRH .btn:before {
  background-color: transparent !important;
}
.cid-tmuJMIwYRH .btn:focus {
  box-shadow: none !important;
}
.cid-tmuJMIwYRH .mbr-section-title,
.cid-tmuJMIwYRH .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmuJRNRkV1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tmuJRNRkV1 .mbr-section-subtitle {
  color: #767676;
}
.cid-tmuINrGSub {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmuINrGSub .mbr-text {
  text-align: left;
}
.cid-tmuIP42NkJ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmuIP42NkJ .mbr-text {
  text-align: left;
}
.cid-tmuIxKhTL7 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tmuIxKhTL7 .mbr-section-subtitle {
  color: #767676;
}
.cid-tmuIxKhTL7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tmuIxKhTL7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmuIxKhTL7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmuIxKhTL7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tmuIxKhTL7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tmuIxKhTL7 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmuIxKhTL7 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmuIxKhTL7 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmuIxKhTL7 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmuIxKhTL7 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tmuIxKhTL7 ul {
  font-size: 0;
}
.cid-tmuIxKhTL7 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmuIxKhTL7 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tmuIxKhTL7 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tmuIxKhTL7 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tmuIxKhTL7 .mbr-gallery-filter ul li:first-child,
.cid-tmuIxKhTL7 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tmuIxKhTL7 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tmuIxKhTL7 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tmuIxKhTL7 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tmuIxKhTL7 .btn.active:after {
  animation: none;
}
.cid-tmuIxKhTL7 .btn:active {
  box-shadow: none !important;
}
.cid-tmuIxKhTL7 .btn:hover {
  background: transparent !important;
}
.cid-tmuIxKhTL7 .btn:hover:before {
  background: transparent !important;
}
.cid-tmuIxKhTL7 .btn:before {
  background-color: transparent !important;
}
.cid-tmuIxKhTL7 .btn:focus {
  box-shadow: none !important;
}
.cid-tmuIxKhTL7 .mbr-section-title,
.cid-tmuIxKhTL7 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmuIRwFWY7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tmuIRwFWY7 .mbr-section-subtitle {
  color: #767676;
}
.cid-tmuHaCuV9p {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmuHaCuV9p .mbr-text {
  text-align: left;
}
.cid-tmuHZitp2q {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmuHZitp2q .mbr-text {
  text-align: left;
}
.cid-tmuH8ycbaK {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tmuH8ycbaK .mbr-section-subtitle {
  color: #767676;
}
.cid-tmuH8ycbaK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tmuH8ycbaK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmuH8ycbaK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmuH8ycbaK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tmuH8ycbaK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tmuH8ycbaK .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmuH8ycbaK .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmuH8ycbaK .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmuH8ycbaK .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmuH8ycbaK .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tmuH8ycbaK ul {
  font-size: 0;
}
.cid-tmuH8ycbaK .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmuH8ycbaK .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tmuH8ycbaK .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tmuH8ycbaK .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tmuH8ycbaK .mbr-gallery-filter ul li:first-child,
.cid-tmuH8ycbaK .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tmuH8ycbaK .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tmuH8ycbaK .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tmuH8ycbaK .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tmuH8ycbaK .btn.active:after {
  animation: none;
}
.cid-tmuH8ycbaK .btn:active {
  box-shadow: none !important;
}
.cid-tmuH8ycbaK .btn:hover {
  background: transparent !important;
}
.cid-tmuH8ycbaK .btn:hover:before {
  background: transparent !important;
}
.cid-tmuH8ycbaK .btn:before {
  background-color: transparent !important;
}
.cid-tmuH8ycbaK .btn:focus {
  box-shadow: none !important;
}
.cid-tmuH8ycbaK .mbr-section-title,
.cid-tmuH8ycbaK .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmuSlLlqMW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tmuSlLlqMW .mbr-section-subtitle {
  color: #767676;
}
.cid-tmniyYQwPb {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmniyYQwPb .mbr-text {
  text-align: center;
}
.cid-tmniBXE2Kb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmniBXE2Kb .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-tmniBXE2Kb .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-tmnild953o {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-tmnild953o .container-fluid {
  padding: 0 3rem;
}
.cid-tmnild953o .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tmnild953o .container-fluid {
    padding: 0 1rem;
  }
  .cid-tmnild953o .video-block {
    width: 100% !important;
  }
}
.cid-tmniDaVG8r {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tmniDaVG8r .mbr-section-subtitle {
  color: #767676;
}
.cid-tmkN4kARGc {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmkN4kARGc .mbr-text {
  text-align: center;
}
.cid-tmkNe8E4y7 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tmkNe8E4y7 .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmkNe8E4y7 .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-tmkMOMn3C1 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tmkMOMn3C1 .mbr-section-subtitle {
  color: #767676;
}
.cid-tmkMOMn3C1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tmkMOMn3C1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmkMOMn3C1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmkMOMn3C1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tmkMOMn3C1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tmkMOMn3C1 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmkMOMn3C1 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmkMOMn3C1 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmkMOMn3C1 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmkMOMn3C1 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tmkMOMn3C1 ul {
  font-size: 0;
}
.cid-tmkMOMn3C1 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmkMOMn3C1 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tmkMOMn3C1 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tmkMOMn3C1 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tmkMOMn3C1 .mbr-gallery-filter ul li:first-child,
.cid-tmkMOMn3C1 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tmkMOMn3C1 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tmkMOMn3C1 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tmkMOMn3C1 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tmkMOMn3C1 .btn.active:after {
  animation: none;
}
.cid-tmkMOMn3C1 .btn:active {
  box-shadow: none !important;
}
.cid-tmkMOMn3C1 .btn:hover {
  background: transparent !important;
}
.cid-tmkMOMn3C1 .btn:hover:before {
  background: transparent !important;
}
.cid-tmkMOMn3C1 .btn:before {
  background-color: transparent !important;
}
.cid-tmkMOMn3C1 .btn:focus {
  box-shadow: none !important;
}
.cid-tmkMOMn3C1 .mbr-section-title,
.cid-tmkMOMn3C1 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmkNQ5dkMj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tmkNQ5dkMj .mbr-section-subtitle {
  color: #767676;
}
.cid-tmdgaPM00M {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmdgaPM00M .mbr-text {
  text-align: center;
}
.cid-tmdgbFw6WB {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tmdgbFw6WB .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmdgbFw6WB .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-tmdg87vHdL {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 90px;
}
.cid-tmdg87vHdL .container-fluid {
  padding: 0 3rem;
}
.cid-tmdg87vHdL .image-block {
  margin: auto;
}
.cid-tmdg87vHdL .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tmdg87vHdL .container-fluid {
    padding: 0 1rem;
  }
  .cid-tmdg87vHdL .image-block {
    width: 100% !important;
  }
}
.cid-tmkNT7BA6Y {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tmkNT7BA6Y .mbr-section-subtitle {
  color: #767676;
}
.cid-tlhFmX4VnV {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tlhFmX4VnV .mbr-text {
  text-align: left;
}
.cid-tlhFnRbIuN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tlhFnRbIuN .mbr-text {
  text-align: left;
}
.cid-tlhFs2V1mg {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tlhFs2V1mg .mbr-section-subtitle {
  color: #767676;
}
.cid-tlhFs2V1mg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tlhFs2V1mg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tlhFs2V1mg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tlhFs2V1mg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tlhFs2V1mg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tlhFs2V1mg .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tlhFs2V1mg .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tlhFs2V1mg .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tlhFs2V1mg .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tlhFs2V1mg .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tlhFs2V1mg ul {
  font-size: 0;
}
.cid-tlhFs2V1mg .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tlhFs2V1mg .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tlhFs2V1mg .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tlhFs2V1mg .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tlhFs2V1mg .mbr-gallery-filter ul li:first-child,
.cid-tlhFs2V1mg .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tlhFs2V1mg .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tlhFs2V1mg .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tlhFs2V1mg .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tlhFs2V1mg .btn.active:after {
  animation: none;
}
.cid-tlhFs2V1mg .btn:active {
  box-shadow: none !important;
}
.cid-tlhFs2V1mg .btn:hover {
  background: transparent !important;
}
.cid-tlhFs2V1mg .btn:hover:before {
  background: transparent !important;
}
.cid-tlhFs2V1mg .btn:before {
  background-color: transparent !important;
}
.cid-tlhFs2V1mg .btn:focus {
  box-shadow: none !important;
}
.cid-tlhFs2V1mg .mbr-section-title,
.cid-tlhFs2V1mg .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tfSaEpwvIr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tfSaEpwvIr .mbr-section-subtitle {
  color: #767676;
}
.cid-tfSaEr6Hlj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tfSaEr6Hlj .mbr-section-subtitle {
  color: #767676;
}
.cid-tfSaEuG3We {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tfSaEuG3We .mbr-section-subtitle {
  color: #767676;
}
.cid-tfSaEvE41Y {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-tfSaEvE41Y .mbr-text a {
  background-size: 100% 0%;
}
.cid-tfSaEvE41Y .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-tfSaEvE41Y .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tgVNibOEEX {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eff9;
}
.cid-tgVNibOEEX .image-wrapper {
  height: 100%;
}
@media (max-width: 991px) {
  .cid-tgVNibOEEX .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tgVNibOEEX .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tgVNibOEEX .image-wrapper img {
    border-end-start-radius: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-tgVNibOEEX .text-wrapper {
    padding: 10rem 5rem 0 0rem;
  }
}
.cid-tgVNibOEEX .mbr-section-title {
  color: #404d50;
}
.cid-tgVNibOEEX .mbr-text {
  color: #6c7577;
}
.cid-tgVNibOEEX .btn {
  padding: 1rem 3.4rem;
}
.cid-tgVNibOEEX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgVNibOEEX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgVNibOEEX .mbr-text,
.cid-tgVNibOEEX .mbr-section-btn {
  color: #6c7577;
  text-align: center;
}
.cid-tgVNicpd6k {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #e8eff9;
}
.cid-tgVNicpd6k .mbr-text {
  color: #465052;
  text-align: left;
}
.cid-tgVNicpd6k .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-tgVNicH21M {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #b2ccd2;
}
.cid-tgVNicH21M .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tgVNicH21M .row-element,
.cid-tgVNicH21M .image-element {
  padding: 0;
}
.cid-tgVNicH21M .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tgVNicH21M .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tgVNicH21M .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-tgVNicH21M .text-content {
    padding: 2rem 1rem;
  }
  .cid-tgVNicH21M .mbr-title,
  .cid-tgVNicH21M .underline,
  .cid-tgVNicH21M .mbr-text,
  .cid-tgVNicH21M .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tgVNicH21M .mbr-title {
  color: #232323;
}
.cid-tgVNicH21M .mbr-text,
.cid-tgVNicH21M .mbr-section-btn {
  color: #404d50;
}
.cid-thjVVKneUl {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-thjVVKneUl .mbr-section-subtitle {
  color: #767676;
}
.cid-thjVVKneUl .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-thjVVKneUl .table-wrapper {
  margin: 0 auto;
}
.cid-thjVVKneUl table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-thjVVKneUl table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-thjVVKneUl table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-thjVVKneUl .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-thjVVKneUl .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-thjVVKneUl .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-thjVVKneUl .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-thjVVKneUl .dataTables_wrapper {
  display: block;
}
.cid-thjVVKneUl .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-thjVVKneUl .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-thjVVKneUl .head-item:after,
.cid-thjVVKneUl .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-thjVVKneUl .dataTables_filter {
    text-align: center;
  }
  .cid-thjVVKneUl .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-thjVVKneUl .dataTables_filter {
    text-align: center;
  }
  .cid-thjVVKneUl .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-thjVVKneUl table th,
  .cid-thjVVKneUl table td {
    padding: .75rem;
  }
}
.cid-thjVVKneUl .body-item {
  text-align: left;
}
.cid-tmh8w2yjXX {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #fac769;
}
.cid-tmh8w2yjXX .mbr-text {
  text-align: center;
}
.cid-tmh8rDlwye {
  background: #fac769;
  padding-top: 30px;
  padding-bottom: 105px;
}
.cid-tmh8rDlwye .container-fluid {
  padding: 0 3rem;
}
.cid-tmh8rDlwye .image-block {
  margin: auto;
}
.cid-tmh8rDlwye .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tmh8rDlwye .container-fluid {
    padding: 0 1rem;
  }
  .cid-tmh8rDlwye .image-block {
    width: 100% !important;
  }
}
.cid-tlU1upXT53 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tlU1upXT53 .mbr-text {
  text-align: left;
}
.cid-tlU1vC1OZj {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tlU1vC1OZj .mbr-text {
  text-align: left;
}
.cid-tlU1xKd7mZ {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tlU1xKd7mZ .mbr-section-subtitle {
  color: #767676;
}
.cid-tlU1xKd7mZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tlU1xKd7mZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tlU1xKd7mZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tlU1xKd7mZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tlU1xKd7mZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tlU1xKd7mZ .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tlU1xKd7mZ .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tlU1xKd7mZ .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tlU1xKd7mZ .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tlU1xKd7mZ .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tlU1xKd7mZ ul {
  font-size: 0;
}
.cid-tlU1xKd7mZ .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tlU1xKd7mZ .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tlU1xKd7mZ .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tlU1xKd7mZ .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tlU1xKd7mZ .mbr-gallery-filter ul li:first-child,
.cid-tlU1xKd7mZ .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tlU1xKd7mZ .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tlU1xKd7mZ .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tlU1xKd7mZ .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tlU1xKd7mZ .btn.active:after {
  animation: none;
}
.cid-tlU1xKd7mZ .btn:active {
  box-shadow: none !important;
}
.cid-tlU1xKd7mZ .btn:hover {
  background: transparent !important;
}
.cid-tlU1xKd7mZ .btn:hover:before {
  background: transparent !important;
}
.cid-tlU1xKd7mZ .btn:before {
  background-color: transparent !important;
}
.cid-tlU1xKd7mZ .btn:focus {
  box-shadow: none !important;
}
.cid-tlU1xKd7mZ .mbr-section-title,
.cid-tlU1xKd7mZ .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmkO5U1APr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tmkO5U1APr .mbr-section-subtitle {
  color: #767676;
}
.cid-tlOMb1apcB {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tlOMb1apcB .mbr-text {
  text-align: left;
}
.cid-tlOMcaNUbf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tlOMcaNUbf .mbr-text {
  text-align: left;
}
.cid-tlOMeOKUTL {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tlOMeOKUTL .mbr-section-subtitle {
  color: #767676;
}
.cid-tlOMeOKUTL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tlOMeOKUTL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tlOMeOKUTL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tlOMeOKUTL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tlOMeOKUTL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tlOMeOKUTL .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tlOMeOKUTL .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tlOMeOKUTL .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tlOMeOKUTL .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tlOMeOKUTL .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tlOMeOKUTL ul {
  font-size: 0;
}
.cid-tlOMeOKUTL .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tlOMeOKUTL .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tlOMeOKUTL .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tlOMeOKUTL .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tlOMeOKUTL .mbr-gallery-filter ul li:first-child,
.cid-tlOMeOKUTL .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tlOMeOKUTL .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tlOMeOKUTL .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tlOMeOKUTL .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tlOMeOKUTL .btn.active:after {
  animation: none;
}
.cid-tlOMeOKUTL .btn:active {
  box-shadow: none !important;
}
.cid-tlOMeOKUTL .btn:hover {
  background: transparent !important;
}
.cid-tlOMeOKUTL .btn:hover:before {
  background: transparent !important;
}
.cid-tlOMeOKUTL .btn:before {
  background-color: transparent !important;
}
.cid-tlOMeOKUTL .btn:focus {
  box-shadow: none !important;
}
.cid-tlOMeOKUTL .mbr-section-title,
.cid-tlOMeOKUTL .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tmkO6U3s1z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tmkO6U3s1z .mbr-section-subtitle {
  color: #767676;
}
.cid-tgVOi430xZ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tgVOi430xZ .mbr-text {
  text-align: left;
}
.cid-tgVOcYr972 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tgVOcYr972 .mbr-text {
  text-align: left;
}
.cid-tgWxm2tFy4 {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tgWxm2tFy4 .mbr-section-subtitle {
  color: #767676;
}
.cid-tgWxm2tFy4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tgWxm2tFy4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tgWxm2tFy4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tgWxm2tFy4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tgWxm2tFy4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tgWxm2tFy4 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tgWxm2tFy4 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tgWxm2tFy4 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tgWxm2tFy4 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tgWxm2tFy4 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tgWxm2tFy4 ul {
  font-size: 0;
}
.cid-tgWxm2tFy4 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tgWxm2tFy4 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tgWxm2tFy4 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tgWxm2tFy4 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tgWxm2tFy4 .mbr-gallery-filter ul li:first-child,
.cid-tgWxm2tFy4 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tgWxm2tFy4 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tgWxm2tFy4 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tgWxm2tFy4 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tgWxm2tFy4 .btn.active:after {
  animation: none;
}
.cid-tgWxm2tFy4 .btn:active {
  box-shadow: none !important;
}
.cid-tgWxm2tFy4 .btn:hover {
  background: transparent !important;
}
.cid-tgWxm2tFy4 .btn:hover:before {
  background: transparent !important;
}
.cid-tgWxm2tFy4 .btn:before {
  background-color: transparent !important;
}
.cid-tgWxm2tFy4 .btn:focus {
  box-shadow: none !important;
}
.cid-tgWxm2tFy4 .mbr-section-title,
.cid-tgWxm2tFy4 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tgVNidFnTf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tgVNidFnTf .mbr-section-subtitle {
  color: #767676;
}
.cid-tgVNid6Sy2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tgVNid6Sy2 .mbr-section-subtitle {
  color: #767676;
}
.cid-tgVNie2Zeq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tgVNie2Zeq .mbr-section-subtitle {
  color: #767676;
}
.cid-tgVNiemQVv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-tgVNiemQVv .mbr-text a {
  background-size: 100% 0%;
}
.cid-tgVNiemQVv .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-tgVNiemQVv .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ti8OryeZUr {
  padding-top: 135px;
  padding-bottom: 30px;
  background-color: #e8eff9;
}
.cid-ti8OryeZUr .mbr-section-subtitle {
  color: #232323;
}
.cid-ti8OryeZUr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ti8OryeZUr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ti8OryeZUr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ti8OryeZUr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ti8OryeZUr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #365c9a);
}
.cid-ti8OryeZUr .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-ti8OryeZUr .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ti8OryeZUr .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-ti8OryeZUr .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ti8OryeZUr .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-ti8OryeZUr ul {
  font-size: 0;
}
.cid-ti8OryeZUr .mbr-gallery-filter ul {
  text-align: center;
}
.cid-ti8OryeZUr .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-ti8OryeZUr .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-ti8OryeZUr .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-ti8OryeZUr .mbr-gallery-filter ul li:first-child,
.cid-ti8OryeZUr .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-ti8OryeZUr .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-ti8OryeZUr .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-ti8OryeZUr .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-ti8OryeZUr .btn.active:after {
  animation: none;
}
.cid-ti8OryeZUr .btn:active {
  box-shadow: none !important;
}
.cid-ti8OryeZUr .btn:hover {
  background: transparent !important;
}
.cid-ti8OryeZUr .btn:hover:before {
  background: transparent !important;
}
.cid-ti8OryeZUr .btn:before {
  background-color: transparent !important;
}
.cid-ti8OryeZUr .btn:focus {
  box-shadow: none !important;
}
.cid-ti8OryeZUr .mbr-section-title,
.cid-ti8OryeZUr .mbr-gallery-filter ul {
  text-align: center;
  color: #767676;
}
.cid-ti8MjcPaH6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e8eff9;
}
.cid-ti8MjcPaH6 .mbr-text {
  color: #465052;
  text-align: left;
}
.cid-ti8MjcPaH6 .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-ti8Mjdfsxa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #b2ccd2;
}
.cid-ti8Mjdfsxa .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ti8Mjdfsxa .row-element,
.cid-ti8Mjdfsxa .image-element {
  padding: 0;
}
.cid-ti8Mjdfsxa .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ti8Mjdfsxa .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-ti8Mjdfsxa .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-ti8Mjdfsxa .text-content {
    padding: 2rem 1rem;
  }
  .cid-ti8Mjdfsxa .mbr-title,
  .cid-ti8Mjdfsxa .underline,
  .cid-ti8Mjdfsxa .mbr-text,
  .cid-ti8Mjdfsxa .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-ti8Mjdfsxa .mbr-title {
  color: #232323;
}
.cid-ti8Mjdfsxa .mbr-text,
.cid-ti8Mjdfsxa .mbr-section-btn {
  color: #404d50;
}
.cid-ti8Mjf14sC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-ti8Mjf14sC .mbr-text a {
  background-size: 100% 0%;
}
.cid-ti8Mjf14sC .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-ti8Mjf14sC .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tjjj0b6BBi {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #e8eff9;
}
.cid-tjjj0b6BBi .mbr-text {
  text-align: center;
}
.cid-tjbRLCVF8d {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e8eff9;
}
.cid-tjbRLCVF8d .mbr-text {
  color: #465052;
  text-align: left;
}
.cid-tjbRLCVF8d .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-tjgAkcrOvt {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tjgAkcrOvt .mbr-section-subtitle {
  color: #767676;
}
.cid-tjgAkcrOvt .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tjgAkcrOvt .table-wrapper {
  margin: 0 auto;
}
.cid-tjgAkcrOvt table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tjgAkcrOvt table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-tjgAkcrOvt table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tjgAkcrOvt .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tjgAkcrOvt .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tjgAkcrOvt .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tjgAkcrOvt .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tjgAkcrOvt .dataTables_wrapper {
  display: block;
}
.cid-tjgAkcrOvt .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tjgAkcrOvt .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tjgAkcrOvt .head-item:after,
.cid-tjgAkcrOvt .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tjgAkcrOvt .dataTables_filter {
    text-align: center;
  }
  .cid-tjgAkcrOvt .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tjgAkcrOvt .dataTables_filter {
    text-align: center;
  }
  .cid-tjgAkcrOvt .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tjgAkcrOvt table th,
  .cid-tjgAkcrOvt table td {
    padding: .75rem;
  }
}
.cid-tjgAkcrOvt .body-item {
  text-align: left;
}
.cid-tjjjxOudKu {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tjjjxOudKu .mbr-text {
  text-align: center;
}
.cid-tjjjwYxYB2 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tjjjwYxYB2 .mbr-section-subtitle {
  color: #767676;
}
.cid-tjjjwYxYB2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tjjjwYxYB2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjjjwYxYB2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tjjjwYxYB2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tjjjwYxYB2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tjjjwYxYB2 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tjjjwYxYB2 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tjjjwYxYB2 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tjjjwYxYB2 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tjjjwYxYB2 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tjjjwYxYB2 ul {
  font-size: 0;
}
.cid-tjjjwYxYB2 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tjjjwYxYB2 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tjjjwYxYB2 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tjjjwYxYB2 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tjjjwYxYB2 .mbr-gallery-filter ul li:first-child,
.cid-tjjjwYxYB2 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tjjjwYxYB2 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tjjjwYxYB2 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tjjjwYxYB2 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tjjjwYxYB2 .btn.active:after {
  animation: none;
}
.cid-tjjjwYxYB2 .btn:active {
  box-shadow: none !important;
}
.cid-tjjjwYxYB2 .btn:hover {
  background: transparent !important;
}
.cid-tjjjwYxYB2 .btn:hover:before {
  background: transparent !important;
}
.cid-tjjjwYxYB2 .btn:before {
  background-color: transparent !important;
}
.cid-tjjjwYxYB2 .btn:focus {
  box-shadow: none !important;
}
.cid-tjjjwYxYB2 .mbr-section-title,
.cid-tjjjwYxYB2 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tjnSy74uda {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tjnSy74uda .mbr-text {
  text-align: center;
}
.cid-tjoHiJgLYj {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tjoHiJgLYj .mbr-section-subtitle {
  color: #767676;
}
.cid-tjoHiJgLYj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tjoHiJgLYj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjoHiJgLYj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tjoHiJgLYj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tjoHiJgLYj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tjoHiJgLYj .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tjoHiJgLYj .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tjoHiJgLYj .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tjoHiJgLYj .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tjoHiJgLYj .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tjoHiJgLYj ul {
  font-size: 0;
}
.cid-tjoHiJgLYj .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tjoHiJgLYj .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tjoHiJgLYj .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tjoHiJgLYj .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tjoHiJgLYj .mbr-gallery-filter ul li:first-child,
.cid-tjoHiJgLYj .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tjoHiJgLYj .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tjoHiJgLYj .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tjoHiJgLYj .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tjoHiJgLYj .btn.active:after {
  animation: none;
}
.cid-tjoHiJgLYj .btn:active {
  box-shadow: none !important;
}
.cid-tjoHiJgLYj .btn:hover {
  background: transparent !important;
}
.cid-tjoHiJgLYj .btn:hover:before {
  background: transparent !important;
}
.cid-tjoHiJgLYj .btn:before {
  background-color: transparent !important;
}
.cid-tjoHiJgLYj .btn:focus {
  box-shadow: none !important;
}
.cid-tjoHiJgLYj .mbr-section-title,
.cid-tjoHiJgLYj .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tjbRLDLJb0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tjbRLDLJb0 .mbr-section-subtitle {
  color: #767676;
}
.cid-tjbRLE7SfH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tjbRLE7SfH .mbr-section-subtitle {
  color: #767676;
}
.cid-tjbRLEQfTR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-tjbRLEQfTR .mbr-text a {
  background-size: 100% 0%;
}
.cid-tjbRLEQfTR .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-tjbRLEQfTR .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkIW4J5Qbe {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tkIW4J5Qbe .mbr-text {
  text-align: left;
}
.cid-tkIW4JFCXH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tkIW4JFCXH .mbr-text {
  color: #365c9a;
}
.cid-tkIW4JXCWP {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-tkIW4JXCWP .container-fluid {
  padding: 0 3rem;
}
.cid-tkIW4JXCWP .image-block {
  margin: auto;
}
.cid-tkIW4JXCWP .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tkIW4JXCWP .container-fluid {
    padding: 0 1rem;
  }
  .cid-tkIW4JXCWP .image-block {
    width: 100% !important;
  }
}
.cid-tkIW4Kl5ET {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tkIW4Kl5ET .container-fluid {
  padding: 0 3rem;
}
.cid-tkIW4Kl5ET .mbr-section-subtitle {
  color: #465052;
}
.cid-tkIW4Kl5ET .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tkIW4Kl5ET .table-wrapper {
  margin: 0 auto;
}
.cid-tkIW4Kl5ET table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tkIW4Kl5ET table thead tr {
  border: none !important;
}
.cid-tkIW4Kl5ET table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-tkIW4Kl5ET table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-tkIW4Kl5ET table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-tkIW4Kl5ET table.table {
  background: #f9f9f9;
}
.cid-tkIW4Kl5ET tr:hover {
  background-color: #efefef !important;
}
.cid-tkIW4Kl5ET .head-item:after,
.cid-tkIW4Kl5ET .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-tkIW4Kl5ET table th,
  .cid-tkIW4Kl5ET table td {
    padding: .75rem;
  }
}
.cid-tkIW4Kl5ET .body-item {
  text-align: left;
}
.cid-tkIW4Kl5ET .head-item {
  color: #000000;
  text-align: center;
}
.cid-tkIW4Kl5ET .mbr-section-title,
.cid-tkIW4Kl5ET .underline {
  color: #365c9a;
}
.cid-tkIW4Kl5ET .mbr-text {
  color: #92b5d5;
}
.cid-tkIW4Ldo3J {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-tkIW4Ldo3J .container-fluid {
  padding: 0 3rem;
}
.cid-tkIW4Ldo3J .mbr-section-subtitle {
  color: #465052;
}
.cid-tkIW4Ldo3J .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tkIW4Ldo3J .table-wrapper {
  margin: 0 auto;
}
.cid-tkIW4Ldo3J table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tkIW4Ldo3J table thead tr {
  border: none !important;
}
.cid-tkIW4Ldo3J table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-tkIW4Ldo3J table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-tkIW4Ldo3J table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-tkIW4Ldo3J table.table {
  background: #f9f9f9;
}
.cid-tkIW4Ldo3J tr:hover {
  background-color: #efefef !important;
}
.cid-tkIW4Ldo3J .head-item:after,
.cid-tkIW4Ldo3J .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-tkIW4Ldo3J table th,
  .cid-tkIW4Ldo3J table td {
    padding: .75rem;
  }
}
.cid-tkIW4Ldo3J .body-item {
  text-align: left;
}
.cid-tkIW4Ldo3J .head-item {
  color: #000000;
  text-align: center;
}
.cid-tkIW4Ldo3J .mbr-section-title,
.cid-tkIW4Ldo3J .underline {
  color: #365c9a;
}
.cid-tkIW4Ldo3J .mbr-text {
  color: #92b5d5;
}
.cid-tkIW4MwqRs {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tkIW4MwqRs .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tkIW4MwqRs .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tkIW4NxkHP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-tkIW4NxkHP .mbr-text a {
  background-size: 100% 0%;
}
.cid-tkIW4NxkHP .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-tkIW4NxkHP .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkMAHRXJUj {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tkMAHRXJUj .mbr-text {
  text-align: left;
}
.cid-tkMAHSlCei {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tkMAHSlCei .mbr-text {
  color: #365c9a;
}
.cid-tkMAHSxBdD {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-tkMAHSxBdD .container-fluid {
  padding: 0 3rem;
}
.cid-tkMAHSxBdD .image-block {
  margin: auto;
}
.cid-tkMAHSxBdD .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tkMAHSxBdD .container-fluid {
    padding: 0 1rem;
  }
  .cid-tkMAHSxBdD .image-block {
    width: 100% !important;
  }
}
.cid-tkMAHSOKt6 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tkMAHSOKt6 .container-fluid {
  padding: 0 3rem;
}
.cid-tkMAHSOKt6 .mbr-section-subtitle {
  color: #465052;
}
.cid-tkMAHSOKt6 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tkMAHSOKt6 .table-wrapper {
  margin: 0 auto;
}
.cid-tkMAHSOKt6 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tkMAHSOKt6 table thead tr {
  border: none !important;
}
.cid-tkMAHSOKt6 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-tkMAHSOKt6 table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-tkMAHSOKt6 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-tkMAHSOKt6 table.table {
  background: #f9f9f9;
}
.cid-tkMAHSOKt6 tr:hover {
  background-color: #efefef !important;
}
.cid-tkMAHSOKt6 .head-item:after,
.cid-tkMAHSOKt6 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-tkMAHSOKt6 table th,
  .cid-tkMAHSOKt6 table td {
    padding: .75rem;
  }
}
.cid-tkMAHSOKt6 .body-item {
  text-align: left;
}
.cid-tkMAHSOKt6 .head-item {
  color: #000000;
  text-align: center;
}
.cid-tkMAHSOKt6 .mbr-section-title,
.cid-tkMAHSOKt6 .underline {
  color: #365c9a;
}
.cid-tkMAHSOKt6 .mbr-text {
  color: #92b5d5;
}
.cid-tkMAHTHSRY {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-tkMAHTHSRY .container-fluid {
  padding: 0 3rem;
}
.cid-tkMAHTHSRY .mbr-section-subtitle {
  color: #465052;
}
.cid-tkMAHTHSRY .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tkMAHTHSRY .table-wrapper {
  margin: 0 auto;
}
.cid-tkMAHTHSRY table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tkMAHTHSRY table thead tr {
  border: none !important;
}
.cid-tkMAHTHSRY table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-tkMAHTHSRY table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-tkMAHTHSRY table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-tkMAHTHSRY table.table {
  background: #f9f9f9;
}
.cid-tkMAHTHSRY tr:hover {
  background-color: #efefef !important;
}
.cid-tkMAHTHSRY .head-item:after,
.cid-tkMAHTHSRY .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-tkMAHTHSRY table th,
  .cid-tkMAHTHSRY table td {
    padding: .75rem;
  }
}
.cid-tkMAHTHSRY .body-item {
  text-align: left;
}
.cid-tkMAHTHSRY .head-item {
  color: #000000;
  text-align: center;
}
.cid-tkMAHTHSRY .mbr-section-title,
.cid-tkMAHTHSRY .underline {
  color: #365c9a;
}
.cid-tkMAHTHSRY .mbr-text {
  color: #92b5d5;
}
.cid-tkMAHUNAVo {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tkMAHUNAVo .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tkMAHUNAVo .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tkMAHVGRDe {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-tkMAHVGRDe .mbr-text a {
  background-size: 100% 0%;
}
.cid-tkMAHVGRDe .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-tkMAHVGRDe .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tnpyIfZSoc {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tnpyIfZSoc .mbr-text {
  text-align: left;
}
.cid-tnpyIgm7rU {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #e6ecf2;
}
.cid-tnpyIgm7rU .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tnpyIgm7rU .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tnpyIgm7rU .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tnpyIgm7rU .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tnpyIgm7rU .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tnpyIgm7rU .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tnpyIgm7rU .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-tnpyIgm7rU .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-tnpyIgm7rU .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tnpyIgm7rU .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-tnpyIgm7rU .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tnpyIgm7rU .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-tnpyIgm7rU .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tnpyIgm7rU .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-tnpyIgm7rU .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-tnpyIgm7rU .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-tnpyIgm7rU .card-wrapper .card-img .meta-category {
  background-color: #4f87fb;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-tnpyIgm7rU .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-tnpyIgm7rU .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tnpyIgm7rU .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tnpyIgm7rU .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-tnpyIgm7rU .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tnpyIgm7rU .btn[class*='-outline']:active,
.cid-tnpyIgm7rU .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tnpyIgm7rU .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-tnpyIgm7rU .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-tnpyIgm7rU .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-tnpyIgm7rU .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-tnpyIgm7rU .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-tnpyIgm7rU .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-tnpyIgm7rU .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-tnpyIgm7rU .card {
    margin-bottom: 15px;
  }
}
.cid-tnpyIgm7rU .contents .mbr-section-title {
  color: #365c9a;
}
.cid-tnpyIgm7rU .card-wrapper .card-box .card-title {
  color: #232323;
}
.cid-tnpyIhyPRg {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tnpyIhyPRg .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tnpyIhyPRg .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tnpyIit2RY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-tnpyIit2RY .mbr-text a {
  background-size: 100% 0%;
}
.cid-tnpyIit2RY .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-tnpyIit2RY .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tnpCwGFL4F {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tnpCwGFL4F .mbr-text {
  text-align: left;
}
.cid-tnpCwH4g9v {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #e6ecf2;
}
.cid-tnpCwH4g9v .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tnpCwH4g9v .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tnpCwH4g9v .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tnpCwH4g9v .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tnpCwH4g9v .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tnpCwH4g9v .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tnpCwH4g9v .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-tnpCwH4g9v .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-tnpCwH4g9v .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tnpCwH4g9v .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-tnpCwH4g9v .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tnpCwH4g9v .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-tnpCwH4g9v .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tnpCwH4g9v .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-tnpCwH4g9v .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-tnpCwH4g9v .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-tnpCwH4g9v .card-wrapper .card-img .meta-category {
  background-color: #4f87fb;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-tnpCwH4g9v .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-tnpCwH4g9v .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tnpCwH4g9v .btn[class*='-outline'] span {
  -webkit-box-ordinal-group: 3;
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  -webkit-transition: padding 0.3s !important;
  transition: padding 0.3s !important;
}
.cid-tnpCwH4g9v .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-tnpCwH4g9v .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tnpCwH4g9v .btn[class*='-outline']:active,
.cid-tnpCwH4g9v .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tnpCwH4g9v .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-tnpCwH4g9v .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-tnpCwH4g9v .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-tnpCwH4g9v .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-tnpCwH4g9v .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-tnpCwH4g9v .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-tnpCwH4g9v .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-tnpCwH4g9v .card {
    margin-bottom: 15px;
  }
}
.cid-tnpCwH4g9v .contents .mbr-section-title {
  color: #365c9a;
}
.cid-tnpCwH4g9v .card-wrapper .card-box .card-title {
  color: #232323;
}
.cid-tnpCwHTiz7 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tnpCwHTiz7 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tnpCwHTiz7 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tnpCwIOVY9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-tnpCwIOVY9 .mbr-text a {
  background-size: 100% 0%;
}
.cid-tnpCwIOVY9 .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-tnpCwIOVY9 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tppJ1fWIay {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tppJ1fWIay .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tppJ1fWIay .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tppJ1gyLe7 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tppJ1gyLe7 .mbr-text {
  text-align: center;
}
.cid-tppJ1gI9k0 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tppJ1gI9k0 .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-tppJ1gWbXX {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-tppJ1gWbXX .container-fluid {
  padding: 0 3rem;
}
.cid-tppJ1gWbXX .image-block {
  margin: auto;
}
.cid-tppJ1gWbXX .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tppJ1gWbXX .container-fluid {
    padding: 0 1rem;
  }
  .cid-tppJ1gWbXX .image-block {
    width: 100% !important;
  }
}
.cid-tppJ1hYyj3 {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tppJ1hYyj3 .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tppJ1hYyj3 .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-tqrksYSgL0 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tqrksYSgL0 .mbr-section-title {
  text-align: left;
}
.cid-tqrksYSgL0 .mbr-text,
.cid-tqrksYSgL0 .mbr-section-btn {
  text-align: center;
}
.cid-tqrksYSgL0 .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-tqbzaaShR7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tqbzaaShR7 .mbr-section-subtitle {
  color: #767676;
}
.cid-tq3z2U7bMC {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tq3z2U7bMC .mbr-section-subtitle {
  color: #767676;
}
.cid-tq3z2U7bMC .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tq3z2U7bMC .table-wrapper {
  margin: 0 auto;
}
.cid-tq3z2U7bMC table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tq3z2U7bMC table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-tq3z2U7bMC table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tq3z2U7bMC .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tq3z2U7bMC .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tq3z2U7bMC .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tq3z2U7bMC .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tq3z2U7bMC .dataTables_wrapper {
  display: block;
}
.cid-tq3z2U7bMC .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tq3z2U7bMC .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tq3z2U7bMC .head-item:after,
.cid-tq3z2U7bMC .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tq3z2U7bMC .dataTables_filter {
    text-align: center;
  }
  .cid-tq3z2U7bMC .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tq3z2U7bMC .dataTables_filter {
    text-align: center;
  }
  .cid-tq3z2U7bMC .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tq3z2U7bMC table th,
  .cid-tq3z2U7bMC table td {
    padding: .75rem;
  }
}
.cid-tq3z2U7bMC .body-item {
  text-align: left;
}
.cid-tqbz8F0kPR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tqbz8F0kPR .mbr-section-subtitle {
  color: #767676;
}
.cid-tqbxGpN9to {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tqbxGpN9to .mbr-text {
  text-align: left;
}
.cid-tqbxFTATde {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tqbxFTATde .mbr-text {
  text-align: left;
}
.cid-tqbxF7MLUx {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tqbxF7MLUx .mbr-section-subtitle {
  color: #767676;
}
.cid-tqbxF7MLUx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tqbxF7MLUx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tqbxF7MLUx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tqbxF7MLUx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tqbxF7MLUx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tqbxF7MLUx .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tqbxF7MLUx .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tqbxF7MLUx .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tqbxF7MLUx .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tqbxF7MLUx .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tqbxF7MLUx ul {
  font-size: 0;
}
.cid-tqbxF7MLUx .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tqbxF7MLUx .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tqbxF7MLUx .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tqbxF7MLUx .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tqbxF7MLUx .mbr-gallery-filter ul li:first-child,
.cid-tqbxF7MLUx .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tqbxF7MLUx .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tqbxF7MLUx .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tqbxF7MLUx .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tqbxF7MLUx .btn.active:after {
  animation: none;
}
.cid-tqbxF7MLUx .btn:active {
  box-shadow: none !important;
}
.cid-tqbxF7MLUx .btn:hover {
  background: transparent !important;
}
.cid-tqbxF7MLUx .btn:hover:before {
  background: transparent !important;
}
.cid-tqbxF7MLUx .btn:before {
  background-color: transparent !important;
}
.cid-tqbxF7MLUx .btn:focus {
  box-shadow: none !important;
}
.cid-tqbxF7MLUx .mbr-section-title,
.cid-tqbxF7MLUx .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tqbzaM2J3d {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tqbzaM2J3d .mbr-section-subtitle {
  color: #767676;
}
.cid-tppKI8dYtz {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tppKI8dYtz .mbr-overlay {
  background: #efefef;
}
.cid-tppKI8dYtz .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tppKI8dYtz .client-name {
  color: #8d97ad;
}
.cid-tppKI8dYtz .wrap-img {
  padding-bottom: 1rem;
}
.cid-tppKI8dYtz .wrap-img img {
  max-width: 100%;
}
.cid-tppKI8dYtz .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-tppKI8dYtz .mbr-section-title {
  color: #365c9a;
}
.cid-tppKI8dYtz .card-box > p {
  color: #767676;
}
.cid-tppSwUAU5k {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tppSwUAU5k .mbr-overlay {
  background: #efefef;
}
.cid-tppSwUAU5k .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tppSwUAU5k .client-name {
  color: #8d97ad;
}
.cid-tppSwUAU5k .wrap-img {
  padding-bottom: 1rem;
}
.cid-tppSwUAU5k .wrap-img img {
  max-width: 100%;
}
.cid-tppSwUAU5k .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-tppSwUAU5k .mbr-section-title {
  color: #365c9a;
}
.cid-tppSwUAU5k .card-box > p {
  color: #767676;
}
.cid-tpqddHJg4R {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-tpqddHJg4R .mbr-text a {
  background-size: 100% 0%;
}
.cid-tpqddHJg4R .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-tpqddHJg4R .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t42pAoAfNr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t42pAoAfNr .mbr-text a {
  background-size: 100% 0%;
}
.cid-t42pAoAfNr .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t42pAoAfNr .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tsV8D2syCn {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tsV8D2syCn .row-element,
.cid-tsV8D2syCn .image-element {
  padding: 0;
}
.cid-tsV8D2syCn .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsV8D2syCn .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tsV8D2syCn .text-content {
  padding: 3rem;
}
.cid-tsV8D2syCn .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tsV8D2syCn .text-content {
    padding: 2rem 1rem;
  }
  .cid-tsV8D2syCn .mbr-title,
  .cid-tsV8D2syCn .underline,
  .cid-tsV8D2syCn .mbr-text,
  .cid-tsV8D2syCn .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tsV8D2syCn .mbr-title {
  text-align: left;
}
.cid-tsV8D2syCn .mbr-text,
.cid-tsV8D2syCn .mbr-section-btn {
  text-align: left;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ty17cwTijz {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #e8eff9;
}
.cid-ty17cwTijz .image-wrapper {
  height: 100%;
}
@media (max-width: 991px) {
  .cid-ty17cwTijz .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ty17cwTijz .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ty17cwTijz .image-wrapper img {
    border-end-start-radius: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-ty17cwTijz .text-wrapper {
    padding: 10rem 5rem 0 0rem;
  }
}
.cid-ty17cwTijz .mbr-section-title {
  color: #404d50;
}
.cid-ty17cwTijz .mbr-text {
  color: #6c7577;
}
.cid-ty17cwTijz .btn {
  padding: 1rem 3.4rem;
}
.cid-ty17cwTijz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ty17cwTijz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ty17cwTijz .mbr-text,
.cid-ty17cwTijz .mbr-section-btn {
  color: #6c7577;
  text-align: center;
}
.cid-ty4csGdUyx {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #e8eff9;
}
.cid-ty4csGdUyx .mbr-text {
  text-align: left;
}
.cid-tBjFx1Cew6 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tBjFx1Cew6 .mbr-text {
  text-align: center;
  color: #365c9a;
}
.cid-tBjE8xsGun {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBjE8xsGun .mbr-overlay {
  background: #efefef;
}
.cid-tBjE8xsGun .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tBjE8xsGun .client-name {
  color: #8d97ad;
}
.cid-tBjE8xsGun .wrap-img {
  padding-bottom: 1rem;
}
.cid-tBjE8xsGun .wrap-img img {
  max-width: 100%;
}
.cid-tBjE8xsGun .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-tBjE8xsGun .mbr-section-title {
  color: #365c9a;
}
.cid-tBjE8xsGun .card-box > p {
  color: #767676;
}
.cid-tBjFbBgzDR {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tBjFbBgzDR .mbr-text {
  text-align: left;
}
.cid-tBjGa6jdXG {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tBjGa6jdXG .mbr-section-subtitle {
  color: #767676;
}
.cid-tB7ReiUMyn {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tB7ReiUMyn .mbr-section-subtitle {
  color: #767676;
}
.cid-tB7ReiUMyn .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tB7ReiUMyn .table-wrapper {
  margin: 0 auto;
}
.cid-tB7ReiUMyn table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tB7ReiUMyn table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-tB7ReiUMyn table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tB7ReiUMyn .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tB7ReiUMyn .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tB7ReiUMyn .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tB7ReiUMyn .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tB7ReiUMyn .dataTables_wrapper {
  display: block;
}
.cid-tB7ReiUMyn .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tB7ReiUMyn .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tB7ReiUMyn .head-item:after,
.cid-tB7ReiUMyn .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tB7ReiUMyn .dataTables_filter {
    text-align: center;
  }
  .cid-tB7ReiUMyn .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tB7ReiUMyn .dataTables_filter {
    text-align: center;
  }
  .cid-tB7ReiUMyn .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tB7ReiUMyn table th,
  .cid-tB7ReiUMyn table td {
    padding: .75rem;
  }
}
.cid-tB7ReiUMyn .body-item {
  text-align: left;
}
.cid-tE3hfSkgOR {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tE3hfSkgOR .mbr-section-subtitle {
  color: #767676;
}
.cid-tE3koSKkHB {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tE3koSKkHB .card {
  display: block;
  position: relative;
}
.cid-tE3koSKkHB .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tE3koSKkHB .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tE3koSKkHB .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tE3koSKkHB .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tE3koSKkHB .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tE3koSKkHB .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tE3koSKkHB .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tE3koSKkHB .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tE3koSKkHB .mbr-card-text,
.cid-tE3koSKkHB .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tDSmXLym5P {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tDSmXLym5P .card {
  display: block;
  position: relative;
}
.cid-tDSmXLym5P .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tDSmXLym5P .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tDSmXLym5P .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tDSmXLym5P .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tDSmXLym5P .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tDSmXLym5P .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tDSmXLym5P .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tDSmXLym5P .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tDSmXLym5P .mbr-card-text,
.cid-tDSmXLym5P .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tE3k2q770v {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tE3k2q770v .mbr-section-subtitle {
  color: #767676;
}
.cid-tE3hihAo1x {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE3hihAo1x .mbr-text {
  text-align: left;
}
.cid-tE3hosJcOm {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE3hosJcOm .mbr-text {
  text-align: left;
}
.cid-tE3h4EyWZL {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tE3h4EyWZL .mbr-section-subtitle {
  color: #767676;
}
.cid-tE3h4EyWZL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tE3h4EyWZL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tE3h4EyWZL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tE3h4EyWZL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tE3h4EyWZL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tE3h4EyWZL .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tE3h4EyWZL .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tE3h4EyWZL .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tE3h4EyWZL .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tE3h4EyWZL .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tE3h4EyWZL ul {
  font-size: 0;
}
.cid-tE3h4EyWZL .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tE3h4EyWZL .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tE3h4EyWZL .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tE3h4EyWZL .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tE3h4EyWZL .mbr-gallery-filter ul li:first-child,
.cid-tE3h4EyWZL .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tE3h4EyWZL .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tE3h4EyWZL .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tE3h4EyWZL .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tE3h4EyWZL .btn.active:after {
  animation: none;
}
.cid-tE3h4EyWZL .btn:active {
  box-shadow: none !important;
}
.cid-tE3h4EyWZL .btn:hover {
  background: transparent !important;
}
.cid-tE3h4EyWZL .btn:hover:before {
  background: transparent !important;
}
.cid-tE3h4EyWZL .btn:before {
  background-color: transparent !important;
}
.cid-tE3h4EyWZL .btn:focus {
  box-shadow: none !important;
}
.cid-tE3h4EyWZL .mbr-section-title,
.cid-tE3h4EyWZL .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tDSu2NkpHd {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tDSu2NkpHd .mbr-section-subtitle {
  color: #767676;
}
.cid-tDXz7JcmOu {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tDXz7JcmOu .mbr-text {
  text-align: left;
}
.cid-tDXyrMEDAJ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tDXyrMEDAJ .mbr-text {
  text-align: left;
}
.cid-tDXymrLTjl {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tDXymrLTjl .mbr-section-subtitle {
  color: #767676;
}
.cid-tDXymrLTjl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tDXymrLTjl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDXymrLTjl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDXymrLTjl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tDXymrLTjl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tDXymrLTjl .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tDXymrLTjl .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tDXymrLTjl .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tDXymrLTjl .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tDXymrLTjl .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tDXymrLTjl ul {
  font-size: 0;
}
.cid-tDXymrLTjl .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tDXymrLTjl .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tDXymrLTjl .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tDXymrLTjl .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tDXymrLTjl .mbr-gallery-filter ul li:first-child,
.cid-tDXymrLTjl .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tDXymrLTjl .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tDXymrLTjl .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tDXymrLTjl .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tDXymrLTjl .btn.active:after {
  animation: none;
}
.cid-tDXymrLTjl .btn:active {
  box-shadow: none !important;
}
.cid-tDXymrLTjl .btn:hover {
  background: transparent !important;
}
.cid-tDXymrLTjl .btn:hover:before {
  background: transparent !important;
}
.cid-tDXymrLTjl .btn:before {
  background-color: transparent !important;
}
.cid-tDXymrLTjl .btn:focus {
  box-shadow: none !important;
}
.cid-tDXymrLTjl .mbr-section-title,
.cid-tDXymrLTjl .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tDXypjzE5N {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tDXypjzE5N .mbr-section-subtitle {
  color: #767676;
}
.cid-tDMgckYV3M {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tDMgckYV3M .mbr-text {
  text-align: left;
}
.cid-tDMf4gMPeX {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tDMf4gMPeX .mbr-text {
  text-align: left;
}
.cid-tDMeXP991k {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tDMeXP991k .mbr-section-subtitle {
  color: #767676;
}
.cid-tDMeXP991k .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tDMeXP991k .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDMeXP991k .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDMeXP991k .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tDMeXP991k .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tDMeXP991k .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tDMeXP991k .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tDMeXP991k .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tDMeXP991k .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tDMeXP991k .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tDMeXP991k ul {
  font-size: 0;
}
.cid-tDMeXP991k .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tDMeXP991k .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tDMeXP991k .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tDMeXP991k .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tDMeXP991k .mbr-gallery-filter ul li:first-child,
.cid-tDMeXP991k .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tDMeXP991k .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tDMeXP991k .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tDMeXP991k .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tDMeXP991k .btn.active:after {
  animation: none;
}
.cid-tDMeXP991k .btn:active {
  box-shadow: none !important;
}
.cid-tDMeXP991k .btn:hover {
  background: transparent !important;
}
.cid-tDMeXP991k .btn:hover:before {
  background: transparent !important;
}
.cid-tDMeXP991k .btn:before {
  background-color: transparent !important;
}
.cid-tDMeXP991k .btn:focus {
  box-shadow: none !important;
}
.cid-tDMeXP991k .mbr-section-title,
.cid-tDMeXP991k .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tDMeZ2iFKv {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tDMeZ2iFKv .mbr-section-subtitle {
  color: #767676;
}
.cid-tB6tfiyVsg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tB6tfiyVsg .mbr-text {
  text-align: left;
}
.cid-tB6tvs0LgZ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tB6tvs0LgZ .mbr-text {
  text-align: left;
}
.cid-tB6tdryPcf {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tB6tdryPcf .mbr-section-subtitle {
  color: #767676;
}
.cid-tB6tdryPcf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tB6tdryPcf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tB6tdryPcf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tB6tdryPcf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tB6tdryPcf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tB6tdryPcf .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tB6tdryPcf .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tB6tdryPcf .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tB6tdryPcf .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tB6tdryPcf .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tB6tdryPcf ul {
  font-size: 0;
}
.cid-tB6tdryPcf .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tB6tdryPcf .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tB6tdryPcf .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tB6tdryPcf .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tB6tdryPcf .mbr-gallery-filter ul li:first-child,
.cid-tB6tdryPcf .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tB6tdryPcf .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tB6tdryPcf .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tB6tdryPcf .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tB6tdryPcf .btn.active:after {
  animation: none;
}
.cid-tB6tdryPcf .btn:active {
  box-shadow: none !important;
}
.cid-tB6tdryPcf .btn:hover {
  background: transparent !important;
}
.cid-tB6tdryPcf .btn:hover:before {
  background: transparent !important;
}
.cid-tB6tdryPcf .btn:before {
  background-color: transparent !important;
}
.cid-tB6tdryPcf .btn:focus {
  box-shadow: none !important;
}
.cid-tB6tdryPcf .mbr-section-title,
.cid-tB6tdryPcf .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tB6tbw8GnK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tB6tbw8GnK .mbr-section-subtitle {
  color: #767676;
}
.cid-tAxYXpypkQ {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tAxYXpypkQ .mbr-text {
  text-align: left;
}
.cid-tAxYJIXIgG {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tAxYJIXIgG .mbr-text {
  text-align: left;
}
.cid-tAxYDxQdyU {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tAxYDxQdyU .mbr-section-subtitle {
  color: #767676;
}
.cid-tAxYDxQdyU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tAxYDxQdyU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tAxYDxQdyU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tAxYDxQdyU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tAxYDxQdyU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tAxYDxQdyU .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tAxYDxQdyU .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tAxYDxQdyU .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tAxYDxQdyU .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tAxYDxQdyU .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tAxYDxQdyU ul {
  font-size: 0;
}
.cid-tAxYDxQdyU .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tAxYDxQdyU .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tAxYDxQdyU .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tAxYDxQdyU .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tAxYDxQdyU .mbr-gallery-filter ul li:first-child,
.cid-tAxYDxQdyU .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tAxYDxQdyU .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tAxYDxQdyU .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tAxYDxQdyU .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tAxYDxQdyU .btn.active:after {
  animation: none;
}
.cid-tAxYDxQdyU .btn:active {
  box-shadow: none !important;
}
.cid-tAxYDxQdyU .btn:hover {
  background: transparent !important;
}
.cid-tAxYDxQdyU .btn:hover:before {
  background: transparent !important;
}
.cid-tAxYDxQdyU .btn:before {
  background-color: transparent !important;
}
.cid-tAxYDxQdyU .btn:focus {
  box-shadow: none !important;
}
.cid-tAxYDxQdyU .mbr-section-title,
.cid-tAxYDxQdyU .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tAxYFfEVPv {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tAxYFfEVPv .mbr-section-subtitle {
  color: #767676;
}
.cid-tA5FAN2F1Z {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tA5FAN2F1Z .mbr-text {
  text-align: left;
}
.cid-tA5FkCL6f5 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tA5FkCL6f5 .mbr-text {
  text-align: left;
}
.cid-tA5Fdtd7ug {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tA5Fdtd7ug .mbr-section-subtitle {
  color: #767676;
}
.cid-tA5Fdtd7ug .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tA5Fdtd7ug .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tA5Fdtd7ug .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tA5Fdtd7ug .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tA5Fdtd7ug .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tA5Fdtd7ug .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tA5Fdtd7ug .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tA5Fdtd7ug .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tA5Fdtd7ug .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tA5Fdtd7ug .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tA5Fdtd7ug ul {
  font-size: 0;
}
.cid-tA5Fdtd7ug .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tA5Fdtd7ug .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tA5Fdtd7ug .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tA5Fdtd7ug .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tA5Fdtd7ug .mbr-gallery-filter ul li:first-child,
.cid-tA5Fdtd7ug .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tA5Fdtd7ug .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tA5Fdtd7ug .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tA5Fdtd7ug .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tA5Fdtd7ug .btn.active:after {
  animation: none;
}
.cid-tA5Fdtd7ug .btn:active {
  box-shadow: none !important;
}
.cid-tA5Fdtd7ug .btn:hover {
  background: transparent !important;
}
.cid-tA5Fdtd7ug .btn:hover:before {
  background: transparent !important;
}
.cid-tA5Fdtd7ug .btn:before {
  background-color: transparent !important;
}
.cid-tA5Fdtd7ug .btn:focus {
  box-shadow: none !important;
}
.cid-tA5Fdtd7ug .mbr-section-title,
.cid-tA5Fdtd7ug .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tyFd4ywi2Z {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tyFd4ywi2Z .mbr-section-subtitle {
  color: #767676;
}
.cid-ty17cDEWPb {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ty17cDEWPb .mbr-text {
  text-align: left;
}
.cid-ty17cE5zqf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ty17cE5zqf .mbr-text {
  color: #232323;
}
.cid-ty17cEu4n8 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-ty17cEu4n8 .mbr-section-subtitle {
  color: #767676;
}
.cid-ty17cEu4n8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ty17cEu4n8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ty17cEu4n8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ty17cEu4n8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ty17cEu4n8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-ty17cEu4n8 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-ty17cEu4n8 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ty17cEu4n8 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-ty17cEu4n8 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ty17cEu4n8 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-ty17cEu4n8 ul {
  font-size: 0;
}
.cid-ty17cEu4n8 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-ty17cEu4n8 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-ty17cEu4n8 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-ty17cEu4n8 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-ty17cEu4n8 .mbr-gallery-filter ul li:first-child,
.cid-ty17cEu4n8 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-ty17cEu4n8 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-ty17cEu4n8 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-ty17cEu4n8 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-ty17cEu4n8 .btn.active:after {
  animation: none;
}
.cid-ty17cEu4n8 .btn:active {
  box-shadow: none !important;
}
.cid-ty17cEu4n8 .btn:hover {
  background: transparent !important;
}
.cid-ty17cEu4n8 .btn:hover:before {
  background: transparent !important;
}
.cid-ty17cEu4n8 .btn:before {
  background-color: transparent !important;
}
.cid-ty17cEu4n8 .btn:focus {
  box-shadow: none !important;
}
.cid-ty17cEu4n8 .mbr-section-title,
.cid-ty17cEu4n8 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-ty17cK8Z8r {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-ty17cK8Z8r .mbr-text a {
  background-size: 100% 0%;
}
.cid-ty17cK8Z8r .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-ty17cK8Z8r .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLBe5TrSMM {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe5TrSMM .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe5UHzeH {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe5UHzeH .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tLBe5UHzeH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe5UHzeH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe5UHzeH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe5UHzeH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe5UHzeH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe5UHzeH .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe5UHzeH .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe5UHzeH .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe5UHzeH .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe5UHzeH .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe5UHzeH ul {
  font-size: 0;
}
.cid-tLBe5UHzeH .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe5UHzeH .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe5UHzeH .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe5UHzeH .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe5UHzeH .mbr-gallery-filter ul li:first-child,
.cid-tLBe5UHzeH .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe5UHzeH .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe5UHzeH .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe5UHzeH .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe5UHzeH .btn.active:after {
  animation: none;
}
.cid-tLBe5UHzeH .btn:active {
  box-shadow: none !important;
}
.cid-tLBe5UHzeH .btn:hover {
  background: transparent !important;
}
.cid-tLBe5UHzeH .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe5UHzeH .btn:before {
  background-color: transparent !important;
}
.cid-tLBe5UHzeH .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe5UHzeH .mbr-section-title,
.cid-tLBe5UHzeH .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tLBe5UHzeH .mbr-section-title,
.cid-tLBe5UHzeH .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tLBe5VGx1r {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe5VGx1r .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe5WHPXA {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe5WHPXA .mbr-text {
  text-align: left;
  color: #365c9a;
}
.cid-tLBe5Xwksl {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe5Xwksl .mbr-text {
  text-align: left;
}
.cid-tLBe5YyLTz {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe5YyLTz .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe5YyLTz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe5YyLTz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe5YyLTz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe5YyLTz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe5YyLTz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe5YyLTz .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe5YyLTz .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe5YyLTz .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe5YyLTz .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe5YyLTz .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe5YyLTz ul {
  font-size: 0;
}
.cid-tLBe5YyLTz .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe5YyLTz .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe5YyLTz .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe5YyLTz .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe5YyLTz .mbr-gallery-filter ul li:first-child,
.cid-tLBe5YyLTz .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe5YyLTz .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe5YyLTz .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe5YyLTz .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe5YyLTz .btn.active:after {
  animation: none;
}
.cid-tLBe5YyLTz .btn:active {
  box-shadow: none !important;
}
.cid-tLBe5YyLTz .btn:hover {
  background: transparent !important;
}
.cid-tLBe5YyLTz .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe5YyLTz .btn:before {
  background-color: transparent !important;
}
.cid-tLBe5YyLTz .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe5YyLTz .mbr-section-title,
.cid-tLBe5YyLTz .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe5ZvxRa {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe5ZvxRa .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe60tKYg {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLBe60tKYg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLBe60tKYg .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-tLBe60tKYg .row {
    padding: 0 24px;
  }
}
.cid-tLBe60tKYg .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tLBe60tKYg .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tLBe60tKYg .mbr-section-title {
  color: #2c0066;
}
.cid-tLBe60tKYg .mbr-section-title,
.cid-tLBe60tKYg .mbr-section-btn {
  text-align: left;
  color: #00407d;
}
.cid-tLBe61mqDl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe61mqDl .mbr-text {
  text-align: left;
}
.cid-tLBe62FLkh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe62FLkh .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe62FLkh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe62FLkh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe62FLkh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe62FLkh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe62FLkh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe62FLkh .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe62FLkh .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe62FLkh .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe62FLkh .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe62FLkh .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe62FLkh ul {
  font-size: 0;
}
.cid-tLBe62FLkh .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe62FLkh .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe62FLkh .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe62FLkh .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe62FLkh .mbr-gallery-filter ul li:first-child,
.cid-tLBe62FLkh .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe62FLkh .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe62FLkh .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe62FLkh .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe62FLkh .btn.active:after {
  animation: none;
}
.cid-tLBe62FLkh .btn:active {
  box-shadow: none !important;
}
.cid-tLBe62FLkh .btn:hover {
  background: transparent !important;
}
.cid-tLBe62FLkh .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe62FLkh .btn:before {
  background-color: transparent !important;
}
.cid-tLBe62FLkh .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe62FLkh .mbr-section-title,
.cid-tLBe62FLkh .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe63UJYM {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tLBe63UJYM .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe63UJYM .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tLBe63UJYM .table-wrapper {
  margin: 0 auto;
}
.cid-tLBe63UJYM table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tLBe63UJYM table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-tLBe63UJYM table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tLBe63UJYM .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tLBe63UJYM .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tLBe63UJYM .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tLBe63UJYM .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tLBe63UJYM .dataTables_wrapper {
  display: block;
}
.cid-tLBe63UJYM .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tLBe63UJYM .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tLBe63UJYM .head-item:after,
.cid-tLBe63UJYM .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tLBe63UJYM .dataTables_filter {
    text-align: center;
  }
  .cid-tLBe63UJYM .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tLBe63UJYM .dataTables_filter {
    text-align: center;
  }
  .cid-tLBe63UJYM .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tLBe63UJYM table th,
  .cid-tLBe63UJYM table td {
    padding: .75rem;
  }
}
.cid-tLBe63UJYM .body-item {
  text-align: left;
}
.cid-tLBe65d3ha {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBe65d3ha .card {
  display: block;
  position: relative;
}
.cid-tLBe65d3ha .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tLBe65d3ha .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tLBe65d3ha .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tLBe65d3ha .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tLBe65d3ha .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tLBe65d3ha .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tLBe65d3ha .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tLBe65d3ha .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tLBe65d3ha .mbr-card-text,
.cid-tLBe65d3ha .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tLBe66vP06 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe66vP06 .card {
  display: block;
  position: relative;
}
.cid-tLBe66vP06 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tLBe66vP06 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tLBe66vP06 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tLBe66vP06 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tLBe66vP06 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tLBe66vP06 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tLBe66vP06 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tLBe66vP06 .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tLBe66vP06 .mbr-card-text,
.cid-tLBe66vP06 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tLBe67CBSD {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBe67CBSD .card {
  display: block;
  position: relative;
}
.cid-tLBe67CBSD .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tLBe67CBSD .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tLBe67CBSD .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tLBe67CBSD .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tLBe67CBSD .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tLBe67CBSD .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tLBe67CBSD .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tLBe67CBSD .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tLBe67CBSD .mbr-card-text,
.cid-tLBe67CBSD .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tLBe68DIzh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe68DIzh .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe69xX7E {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLBe69xX7E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLBe69xX7E .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-tLBe69xX7E .row {
    padding: 0 24px;
  }
}
.cid-tLBe69xX7E .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tLBe69xX7E .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tLBe69xX7E .mbr-section-title {
  color: #2c0066;
}
.cid-tLBe69xX7E .mbr-section-title,
.cid-tLBe69xX7E .mbr-section-btn {
  text-align: left;
  color: #00407d;
}
.cid-tLBe6axErh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLBe6axErh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLBe6axErh .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-tLBe6axErh .row {
    padding: 0 24px;
  }
}
.cid-tLBe6axErh .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tLBe6axErh .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tLBe6axErh .mbr-section-title {
  color: #2c0066;
}
.cid-tLBe6axErh .mbr-section-title,
.cid-tLBe6axErh .mbr-section-btn {
  text-align: left;
  color: #00407d;
}
.cid-tLBe6c2O67 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe6c2O67 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6c2O67 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe6c2O67 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe6c2O67 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe6c2O67 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe6c2O67 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe6c2O67 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6c2O67 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6c2O67 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6c2O67 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6c2O67 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe6c2O67 ul {
  font-size: 0;
}
.cid-tLBe6c2O67 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6c2O67 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe6c2O67 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe6c2O67 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe6c2O67 .mbr-gallery-filter ul li:first-child,
.cid-tLBe6c2O67 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe6c2O67 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe6c2O67 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe6c2O67 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe6c2O67 .btn.active:after {
  animation: none;
}
.cid-tLBe6c2O67 .btn:active {
  box-shadow: none !important;
}
.cid-tLBe6c2O67 .btn:hover {
  background: transparent !important;
}
.cid-tLBe6c2O67 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe6c2O67 .btn:before {
  background-color: transparent !important;
}
.cid-tLBe6c2O67 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe6c2O67 .mbr-section-title,
.cid-tLBe6c2O67 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6d4wio {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe6d4wio .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6dZMVo {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLBe6dZMVo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLBe6dZMVo .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-tLBe6dZMVo .row {
    padding: 0 24px;
  }
}
.cid-tLBe6dZMVo .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tLBe6dZMVo .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tLBe6dZMVo .mbr-section-title {
  color: #2c0066;
}
.cid-tLBe6dZMVo .mbr-section-title,
.cid-tLBe6dZMVo .mbr-section-btn {
  text-align: left;
  color: #00407d;
}
.cid-tLBe6f2gq6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLBe6f2gq6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLBe6f2gq6 .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-tLBe6f2gq6 .row {
    padding: 0 24px;
  }
}
.cid-tLBe6f2gq6 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tLBe6f2gq6 .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tLBe6f2gq6 .mbr-section-title {
  color: #2c0066;
}
.cid-tLBe6f2gq6 .mbr-section-title,
.cid-tLBe6f2gq6 .mbr-section-btn {
  text-align: left;
  color: #00407d;
}
.cid-tLBe6g9Uji {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe6g9Uji .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6g9Uji .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe6g9Uji .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe6g9Uji .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe6g9Uji .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe6g9Uji .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe6g9Uji .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6g9Uji .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6g9Uji .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6g9Uji .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6g9Uji .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe6g9Uji ul {
  font-size: 0;
}
.cid-tLBe6g9Uji .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6g9Uji .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe6g9Uji .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe6g9Uji .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe6g9Uji .mbr-gallery-filter ul li:first-child,
.cid-tLBe6g9Uji .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe6g9Uji .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe6g9Uji .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe6g9Uji .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe6g9Uji .btn.active:after {
  animation: none;
}
.cid-tLBe6g9Uji .btn:active {
  box-shadow: none !important;
}
.cid-tLBe6g9Uji .btn:hover {
  background: transparent !important;
}
.cid-tLBe6g9Uji .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe6g9Uji .btn:before {
  background-color: transparent !important;
}
.cid-tLBe6g9Uji .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe6g9Uji .mbr-section-title,
.cid-tLBe6g9Uji .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6h8udB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe6h8udB .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6i7acF {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLBe6i7acF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLBe6i7acF .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-tLBe6i7acF .row {
    padding: 0 24px;
  }
}
.cid-tLBe6i7acF .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tLBe6i7acF .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tLBe6i7acF .mbr-section-title {
  color: #2c0066;
}
.cid-tLBe6i7acF .mbr-section-title,
.cid-tLBe6i7acF .mbr-section-btn {
  text-align: center;
  color: #00407d;
}
.cid-tLBe6i7acF .mbr-section-title,
.cid-tLBe6i7acF .mbr-section-btn DIV {
  text-align: left;
}
.cid-tLBe6j5STm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLBe6j5STm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLBe6j5STm .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-tLBe6j5STm .row {
    padding: 0 24px;
  }
}
.cid-tLBe6j5STm .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tLBe6j5STm .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tLBe6j5STm .mbr-section-title {
  color: #2c0066;
}
.cid-tLBe6j5STm .mbr-section-title,
.cid-tLBe6j5STm .mbr-section-btn {
  text-align: center;
  color: #00407d;
}
.cid-tLBe6j5STm .mbr-section-title,
.cid-tLBe6j5STm .mbr-section-btn DIV {
  text-align: left;
}
.cid-tLBe6kuBTK {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe6kuBTK .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6kuBTK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe6kuBTK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe6kuBTK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe6kuBTK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe6kuBTK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe6kuBTK .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6kuBTK .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6kuBTK .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6kuBTK .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6kuBTK .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe6kuBTK ul {
  font-size: 0;
}
.cid-tLBe6kuBTK .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6kuBTK .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe6kuBTK .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe6kuBTK .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe6kuBTK .mbr-gallery-filter ul li:first-child,
.cid-tLBe6kuBTK .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe6kuBTK .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe6kuBTK .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe6kuBTK .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe6kuBTK .btn.active:after {
  animation: none;
}
.cid-tLBe6kuBTK .btn:active {
  box-shadow: none !important;
}
.cid-tLBe6kuBTK .btn:hover {
  background: transparent !important;
}
.cid-tLBe6kuBTK .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe6kuBTK .btn:before {
  background-color: transparent !important;
}
.cid-tLBe6kuBTK .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe6kuBTK .mbr-section-title,
.cid-tLBe6kuBTK .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6lCkX4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe6lCkX4 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6myieZ {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6myieZ .mbr-text {
  text-align: left;
}
.cid-tLBe6nwX1B {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6nwX1B .mbr-text {
  text-align: left;
}
.cid-tLBe6oPuss {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe6oPuss .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6oPuss .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe6oPuss .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe6oPuss .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe6oPuss .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe6oPuss .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe6oPuss .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6oPuss .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6oPuss .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6oPuss .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6oPuss .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe6oPuss ul {
  font-size: 0;
}
.cid-tLBe6oPuss .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6oPuss .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe6oPuss .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe6oPuss .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe6oPuss .mbr-gallery-filter ul li:first-child,
.cid-tLBe6oPuss .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe6oPuss .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe6oPuss .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe6oPuss .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe6oPuss .btn.active:after {
  animation: none;
}
.cid-tLBe6oPuss .btn:active {
  box-shadow: none !important;
}
.cid-tLBe6oPuss .btn:hover {
  background: transparent !important;
}
.cid-tLBe6oPuss .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe6oPuss .btn:before {
  background-color: transparent !important;
}
.cid-tLBe6oPuss .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe6oPuss .mbr-section-title,
.cid-tLBe6oPuss .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6pOxKl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe6pOxKl .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6qNUNo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6qNUNo .mbr-text {
  text-align: left;
}
.cid-tLBe6rIbTI {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6rIbTI .mbr-text {
  text-align: left;
}
.cid-tLBe6taJI1 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe6taJI1 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6taJI1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe6taJI1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe6taJI1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe6taJI1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe6taJI1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe6taJI1 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6taJI1 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6taJI1 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6taJI1 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6taJI1 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe6taJI1 ul {
  font-size: 0;
}
.cid-tLBe6taJI1 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6taJI1 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe6taJI1 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe6taJI1 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe6taJI1 .mbr-gallery-filter ul li:first-child,
.cid-tLBe6taJI1 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe6taJI1 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe6taJI1 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe6taJI1 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe6taJI1 .btn.active:after {
  animation: none;
}
.cid-tLBe6taJI1 .btn:active {
  box-shadow: none !important;
}
.cid-tLBe6taJI1 .btn:hover {
  background: transparent !important;
}
.cid-tLBe6taJI1 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe6taJI1 .btn:before {
  background-color: transparent !important;
}
.cid-tLBe6taJI1 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe6taJI1 .mbr-section-title,
.cid-tLBe6taJI1 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6ughSj {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe6ughSj .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6vcoqQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6vcoqQ .mbr-text {
  text-align: left;
}
.cid-tLBe6wci6S {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6wci6S .mbr-text {
  text-align: left;
}
.cid-tLBe6xiljW {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe6xiljW .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6xiljW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe6xiljW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe6xiljW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe6xiljW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe6xiljW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe6xiljW .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6xiljW .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6xiljW .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6xiljW .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6xiljW .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe6xiljW ul {
  font-size: 0;
}
.cid-tLBe6xiljW .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6xiljW .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe6xiljW .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe6xiljW .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe6xiljW .mbr-gallery-filter ul li:first-child,
.cid-tLBe6xiljW .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe6xiljW .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe6xiljW .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe6xiljW .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe6xiljW .btn.active:after {
  animation: none;
}
.cid-tLBe6xiljW .btn:active {
  box-shadow: none !important;
}
.cid-tLBe6xiljW .btn:hover {
  background: transparent !important;
}
.cid-tLBe6xiljW .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe6xiljW .btn:before {
  background-color: transparent !important;
}
.cid-tLBe6xiljW .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe6xiljW .mbr-section-title,
.cid-tLBe6xiljW .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6ymhbq {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe6ymhbq .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6zjk2T {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6zjk2T .mbr-text {
  text-align: left;
}
.cid-tLBe6AjlE9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6AjlE9 .mbr-text {
  text-align: left;
}
.cid-tLBe6BhA4Y {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-tLBe6BhA4Y .container-fluid {
  padding: 0 3rem;
}
.cid-tLBe6BhA4Y .image-block {
  position: relative;
  margin: auto;
}
.cid-tLBe6BhA4Y .image-block img {
  width: 100%;
}
.cid-tLBe6BhA4Y .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-tLBe6BhA4Y .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tLBe6BhA4Y .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-tLBe6BhA4Y .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tLBe6CjnBk {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe6CjnBk .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6DoSjL {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6DoSjL .mbr-text {
  text-align: left;
}
.cid-tLBe6EoMew {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6EoMew .mbr-text {
  text-align: left;
}
.cid-tLBe6FB03b {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe6FB03b .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6FB03b .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe6FB03b .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe6FB03b .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe6FB03b .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe6FB03b .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe6FB03b .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6FB03b .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6FB03b .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6FB03b .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6FB03b .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe6FB03b ul {
  font-size: 0;
}
.cid-tLBe6FB03b .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6FB03b .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe6FB03b .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe6FB03b .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe6FB03b .mbr-gallery-filter ul li:first-child,
.cid-tLBe6FB03b .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe6FB03b .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe6FB03b .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe6FB03b .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe6FB03b .btn.active:after {
  animation: none;
}
.cid-tLBe6FB03b .btn:active {
  box-shadow: none !important;
}
.cid-tLBe6FB03b .btn:hover {
  background: transparent !important;
}
.cid-tLBe6FB03b .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe6FB03b .btn:before {
  background-color: transparent !important;
}
.cid-tLBe6FB03b .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe6FB03b .mbr-section-title,
.cid-tLBe6FB03b .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6GFSE0 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe6GFSE0 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6HGAjg {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6HGAjg .mbr-text {
  text-align: left;
}
.cid-tLBe6ID569 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6ID569 .mbr-text {
  text-align: left;
}
.cid-tLBe6K8tuh {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe6K8tuh .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6K8tuh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe6K8tuh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe6K8tuh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe6K8tuh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe6K8tuh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe6K8tuh .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6K8tuh .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6K8tuh .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6K8tuh .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6K8tuh .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe6K8tuh ul {
  font-size: 0;
}
.cid-tLBe6K8tuh .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6K8tuh .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe6K8tuh .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe6K8tuh .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe6K8tuh .mbr-gallery-filter ul li:first-child,
.cid-tLBe6K8tuh .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe6K8tuh .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe6K8tuh .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe6K8tuh .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe6K8tuh .btn.active:after {
  animation: none;
}
.cid-tLBe6K8tuh .btn:active {
  box-shadow: none !important;
}
.cid-tLBe6K8tuh .btn:hover {
  background: transparent !important;
}
.cid-tLBe6K8tuh .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe6K8tuh .btn:before {
  background-color: transparent !important;
}
.cid-tLBe6K8tuh .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe6K8tuh .mbr-section-title,
.cid-tLBe6K8tuh .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6LfZab {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe6LfZab .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6Md8VJ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe6Md8VJ .mbr-text {
  text-align: left;
}
.cid-tLBe6NfPf2 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6NfPf2 .mbr-text {
  text-align: left;
}
.cid-tLBe6Oqai2 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe6Oqai2 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6Oqai2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe6Oqai2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe6Oqai2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe6Oqai2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe6Oqai2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe6Oqai2 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6Oqai2 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6Oqai2 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6Oqai2 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6Oqai2 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe6Oqai2 ul {
  font-size: 0;
}
.cid-tLBe6Oqai2 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6Oqai2 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe6Oqai2 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe6Oqai2 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe6Oqai2 .mbr-gallery-filter ul li:first-child,
.cid-tLBe6Oqai2 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe6Oqai2 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe6Oqai2 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe6Oqai2 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe6Oqai2 .btn.active:after {
  animation: none;
}
.cid-tLBe6Oqai2 .btn:active {
  box-shadow: none !important;
}
.cid-tLBe6Oqai2 .btn:hover {
  background: transparent !important;
}
.cid-tLBe6Oqai2 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe6Oqai2 .btn:before {
  background-color: transparent !important;
}
.cid-tLBe6Oqai2 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe6Oqai2 .mbr-section-title,
.cid-tLBe6Oqai2 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6PwGpY {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe6PwGpY .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6QvgsJ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe6QvgsJ .mbr-text {
  text-align: left;
}
.cid-tLBe6RwDCx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe6RwDCx .mbr-text {
  text-align: left;
}
.cid-tLBe6SJbLO {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe6SJbLO .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6SJbLO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe6SJbLO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe6SJbLO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe6SJbLO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe6SJbLO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe6SJbLO .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6SJbLO .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6SJbLO .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6SJbLO .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6SJbLO .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe6SJbLO ul {
  font-size: 0;
}
.cid-tLBe6SJbLO .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6SJbLO .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe6SJbLO .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe6SJbLO .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe6SJbLO .mbr-gallery-filter ul li:first-child,
.cid-tLBe6SJbLO .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe6SJbLO .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe6SJbLO .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe6SJbLO .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe6SJbLO .btn.active:after {
  animation: none;
}
.cid-tLBe6SJbLO .btn:active {
  box-shadow: none !important;
}
.cid-tLBe6SJbLO .btn:hover {
  background: transparent !important;
}
.cid-tLBe6SJbLO .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe6SJbLO .btn:before {
  background-color: transparent !important;
}
.cid-tLBe6SJbLO .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe6SJbLO .mbr-section-title,
.cid-tLBe6SJbLO .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6TMCBg {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe6TMCBg .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6UPy3i {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6UPy3i .mbr-text {
  text-align: left;
}
.cid-tLBe6VOCDl {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6VOCDl .mbr-text {
  text-align: left;
}
.cid-tLBe6XiUjc {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe6XiUjc .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6XiUjc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe6XiUjc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe6XiUjc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe6XiUjc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe6XiUjc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe6XiUjc .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6XiUjc .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6XiUjc .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe6XiUjc .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe6XiUjc .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe6XiUjc ul {
  font-size: 0;
}
.cid-tLBe6XiUjc .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6XiUjc .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe6XiUjc .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe6XiUjc .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe6XiUjc .mbr-gallery-filter ul li:first-child,
.cid-tLBe6XiUjc .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe6XiUjc .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe6XiUjc .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe6XiUjc .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe6XiUjc .btn.active:after {
  animation: none;
}
.cid-tLBe6XiUjc .btn:active {
  box-shadow: none !important;
}
.cid-tLBe6XiUjc .btn:hover {
  background: transparent !important;
}
.cid-tLBe6XiUjc .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe6XiUjc .btn:before {
  background-color: transparent !important;
}
.cid-tLBe6XiUjc .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe6XiUjc .mbr-section-title,
.cid-tLBe6XiUjc .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe6YqFfc {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe6YqFfc .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe6ZpMYy {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe6ZpMYy .mbr-text {
  text-align: left;
}
.cid-tLBe70sCLL {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe70sCLL .mbr-text {
  text-align: left;
}
.cid-tLBe71SJ1C {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe71SJ1C .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe71SJ1C .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe71SJ1C .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe71SJ1C .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe71SJ1C .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe71SJ1C .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe71SJ1C .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe71SJ1C .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe71SJ1C .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe71SJ1C .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe71SJ1C .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe71SJ1C ul {
  font-size: 0;
}
.cid-tLBe71SJ1C .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe71SJ1C .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe71SJ1C .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe71SJ1C .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe71SJ1C .mbr-gallery-filter ul li:first-child,
.cid-tLBe71SJ1C .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe71SJ1C .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe71SJ1C .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe71SJ1C .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe71SJ1C .btn.active:after {
  animation: none;
}
.cid-tLBe71SJ1C .btn:active {
  box-shadow: none !important;
}
.cid-tLBe71SJ1C .btn:hover {
  background: transparent !important;
}
.cid-tLBe71SJ1C .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe71SJ1C .btn:before {
  background-color: transparent !important;
}
.cid-tLBe71SJ1C .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe71SJ1C .mbr-section-title,
.cid-tLBe71SJ1C .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe72XH2N {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe72XH2N .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe743XIP {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe743XIP .mbr-text {
  text-align: left;
}
.cid-tLBe753qxS {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe753qxS .mbr-text {
  text-align: left;
}
.cid-tLBe76h4WY {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe76h4WY .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe76h4WY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe76h4WY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe76h4WY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe76h4WY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe76h4WY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe76h4WY .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe76h4WY .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe76h4WY .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe76h4WY .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe76h4WY .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe76h4WY ul {
  font-size: 0;
}
.cid-tLBe76h4WY .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe76h4WY .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe76h4WY .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe76h4WY .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe76h4WY .mbr-gallery-filter ul li:first-child,
.cid-tLBe76h4WY .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe76h4WY .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe76h4WY .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe76h4WY .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe76h4WY .btn.active:after {
  animation: none;
}
.cid-tLBe76h4WY .btn:active {
  box-shadow: none !important;
}
.cid-tLBe76h4WY .btn:hover {
  background: transparent !important;
}
.cid-tLBe76h4WY .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe76h4WY .btn:before {
  background-color: transparent !important;
}
.cid-tLBe76h4WY .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe76h4WY .mbr-section-title,
.cid-tLBe76h4WY .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe77mA26 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe77mA26 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe78s1Ee {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe78s1Ee .mbr-text {
  text-align: left;
}
.cid-tLBe79stiW {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe79stiW .mbr-text {
  text-align: left;
}
.cid-tLBe7aFtv8 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe7aFtv8 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7aFtv8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe7aFtv8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe7aFtv8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe7aFtv8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe7aFtv8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe7aFtv8 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7aFtv8 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7aFtv8 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7aFtv8 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7aFtv8 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe7aFtv8 ul {
  font-size: 0;
}
.cid-tLBe7aFtv8 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7aFtv8 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe7aFtv8 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe7aFtv8 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe7aFtv8 .mbr-gallery-filter ul li:first-child,
.cid-tLBe7aFtv8 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe7aFtv8 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe7aFtv8 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe7aFtv8 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe7aFtv8 .btn.active:after {
  animation: none;
}
.cid-tLBe7aFtv8 .btn:active {
  box-shadow: none !important;
}
.cid-tLBe7aFtv8 .btn:hover {
  background: transparent !important;
}
.cid-tLBe7aFtv8 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe7aFtv8 .btn:before {
  background-color: transparent !important;
}
.cid-tLBe7aFtv8 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe7aFtv8 .mbr-section-title,
.cid-tLBe7aFtv8 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7bPnHU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe7bPnHU .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7cQbAb {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe7cQbAb .mbr-text {
  text-align: left;
}
.cid-tLBe7dXcU4 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe7dXcU4 .mbr-text {
  text-align: left;
}
.cid-tLBe7fiixx {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe7fiixx .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7fiixx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe7fiixx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe7fiixx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe7fiixx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe7fiixx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe7fiixx .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7fiixx .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7fiixx .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7fiixx .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7fiixx .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe7fiixx ul {
  font-size: 0;
}
.cid-tLBe7fiixx .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7fiixx .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe7fiixx .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe7fiixx .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe7fiixx .mbr-gallery-filter ul li:first-child,
.cid-tLBe7fiixx .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe7fiixx .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe7fiixx .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe7fiixx .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe7fiixx .btn.active:after {
  animation: none;
}
.cid-tLBe7fiixx .btn:active {
  box-shadow: none !important;
}
.cid-tLBe7fiixx .btn:hover {
  background: transparent !important;
}
.cid-tLBe7fiixx .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe7fiixx .btn:before {
  background-color: transparent !important;
}
.cid-tLBe7fiixx .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe7fiixx .mbr-section-title,
.cid-tLBe7fiixx .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7gtsjE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe7gtsjE .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7hBqqu {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe7hBqqu .mbr-text {
  text-align: left;
}
.cid-tLBe7iGxbC {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe7iGxbC .mbr-text {
  text-align: left;
}
.cid-tLBe7k6jp8 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe7k6jp8 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7k6jp8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe7k6jp8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe7k6jp8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe7k6jp8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe7k6jp8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe7k6jp8 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7k6jp8 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7k6jp8 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7k6jp8 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7k6jp8 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe7k6jp8 ul {
  font-size: 0;
}
.cid-tLBe7k6jp8 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7k6jp8 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe7k6jp8 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe7k6jp8 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe7k6jp8 .mbr-gallery-filter ul li:first-child,
.cid-tLBe7k6jp8 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe7k6jp8 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe7k6jp8 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe7k6jp8 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe7k6jp8 .btn.active:after {
  animation: none;
}
.cid-tLBe7k6jp8 .btn:active {
  box-shadow: none !important;
}
.cid-tLBe7k6jp8 .btn:hover {
  background: transparent !important;
}
.cid-tLBe7k6jp8 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe7k6jp8 .btn:before {
  background-color: transparent !important;
}
.cid-tLBe7k6jp8 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe7k6jp8 .mbr-section-title,
.cid-tLBe7k6jp8 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7leBPH {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe7leBPH .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7mmXDG {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe7mmXDG .mbr-text {
  text-align: left;
}
.cid-tLBe7noPKT {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe7noPKT .mbr-text {
  text-align: left;
}
.cid-tLBe7oLEaD {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe7oLEaD .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7oLEaD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe7oLEaD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe7oLEaD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe7oLEaD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe7oLEaD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe7oLEaD .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7oLEaD .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7oLEaD .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7oLEaD .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7oLEaD .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe7oLEaD ul {
  font-size: 0;
}
.cid-tLBe7oLEaD .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7oLEaD .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe7oLEaD .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe7oLEaD .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe7oLEaD .mbr-gallery-filter ul li:first-child,
.cid-tLBe7oLEaD .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe7oLEaD .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe7oLEaD .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe7oLEaD .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe7oLEaD .btn.active:after {
  animation: none;
}
.cid-tLBe7oLEaD .btn:active {
  box-shadow: none !important;
}
.cid-tLBe7oLEaD .btn:hover {
  background: transparent !important;
}
.cid-tLBe7oLEaD .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe7oLEaD .btn:before {
  background-color: transparent !important;
}
.cid-tLBe7oLEaD .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe7oLEaD .mbr-section-title,
.cid-tLBe7oLEaD .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7pY2DD {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe7pY2DD .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7r1Niy {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe7r1Niy .mbr-text {
  text-align: left;
}
.cid-tLBe7s8VmT {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe7s8VmT .mbr-text {
  text-align: left;
}
.cid-tLBe7tyMGB {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe7tyMGB .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7tyMGB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe7tyMGB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe7tyMGB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe7tyMGB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe7tyMGB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe7tyMGB .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7tyMGB .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7tyMGB .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7tyMGB .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7tyMGB .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe7tyMGB ul {
  font-size: 0;
}
.cid-tLBe7tyMGB .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7tyMGB .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe7tyMGB .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe7tyMGB .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe7tyMGB .mbr-gallery-filter ul li:first-child,
.cid-tLBe7tyMGB .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe7tyMGB .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe7tyMGB .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe7tyMGB .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe7tyMGB .btn.active:after {
  animation: none;
}
.cid-tLBe7tyMGB .btn:active {
  box-shadow: none !important;
}
.cid-tLBe7tyMGB .btn:hover {
  background: transparent !important;
}
.cid-tLBe7tyMGB .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe7tyMGB .btn:before {
  background-color: transparent !important;
}
.cid-tLBe7tyMGB .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe7tyMGB .mbr-section-title,
.cid-tLBe7tyMGB .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7uUz06 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tLBe7uUz06 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7uUz06 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tLBe7uUz06 .table-wrapper {
  margin: 0 auto;
}
.cid-tLBe7uUz06 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tLBe7uUz06 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-tLBe7uUz06 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tLBe7uUz06 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tLBe7uUz06 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tLBe7uUz06 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tLBe7uUz06 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tLBe7uUz06 .dataTables_wrapper {
  display: block;
}
.cid-tLBe7uUz06 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tLBe7uUz06 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tLBe7uUz06 .head-item:after,
.cid-tLBe7uUz06 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tLBe7uUz06 .dataTables_filter {
    text-align: center;
  }
  .cid-tLBe7uUz06 .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tLBe7uUz06 .dataTables_filter {
    text-align: center;
  }
  .cid-tLBe7uUz06 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tLBe7uUz06 table th,
  .cid-tLBe7uUz06 table td {
    padding: .75rem;
  }
}
.cid-tLBe7uUz06 .body-item {
  text-align: left;
}
.cid-tLBe7waaqR {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe7waaqR .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7xfpBS {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe7xfpBS .mbr-text {
  text-align: left;
}
.cid-tLBe7yn2Pp {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe7yn2Pp .mbr-text {
  text-align: left;
}
.cid-tLBe7A3v1h {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe7A3v1h .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7A3v1h .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe7A3v1h .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe7A3v1h .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe7A3v1h .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe7A3v1h .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe7A3v1h .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7A3v1h .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7A3v1h .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7A3v1h .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7A3v1h .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe7A3v1h ul {
  font-size: 0;
}
.cid-tLBe7A3v1h .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7A3v1h .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe7A3v1h .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe7A3v1h .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe7A3v1h .mbr-gallery-filter ul li:first-child,
.cid-tLBe7A3v1h .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe7A3v1h .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe7A3v1h .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe7A3v1h .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe7A3v1h .btn.active:after {
  animation: none;
}
.cid-tLBe7A3v1h .btn:active {
  box-shadow: none !important;
}
.cid-tLBe7A3v1h .btn:hover {
  background: transparent !important;
}
.cid-tLBe7A3v1h .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe7A3v1h .btn:before {
  background-color: transparent !important;
}
.cid-tLBe7A3v1h .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe7A3v1h .mbr-section-title,
.cid-tLBe7A3v1h .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7BedbV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe7BedbV .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7ClVCf {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe7ClVCf .mbr-text {
  text-align: left;
}
.cid-tLBe7Du43z {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe7Du43z .mbr-text {
  text-align: left;
}
.cid-tLBe7EPtDR {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe7EPtDR .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7EPtDR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe7EPtDR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe7EPtDR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe7EPtDR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe7EPtDR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe7EPtDR .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7EPtDR .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7EPtDR .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7EPtDR .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7EPtDR .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe7EPtDR ul {
  font-size: 0;
}
.cid-tLBe7EPtDR .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7EPtDR .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe7EPtDR .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe7EPtDR .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe7EPtDR .mbr-gallery-filter ul li:first-child,
.cid-tLBe7EPtDR .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe7EPtDR .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe7EPtDR .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe7EPtDR .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe7EPtDR .btn.active:after {
  animation: none;
}
.cid-tLBe7EPtDR .btn:active {
  box-shadow: none !important;
}
.cid-tLBe7EPtDR .btn:hover {
  background: transparent !important;
}
.cid-tLBe7EPtDR .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe7EPtDR .btn:before {
  background-color: transparent !important;
}
.cid-tLBe7EPtDR .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe7EPtDR .mbr-section-title,
.cid-tLBe7EPtDR .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7GiVN4 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tLBe7GiVN4 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7GiVN4 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tLBe7GiVN4 .table-wrapper {
  margin: 0 auto;
}
.cid-tLBe7GiVN4 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tLBe7GiVN4 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-tLBe7GiVN4 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tLBe7GiVN4 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tLBe7GiVN4 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tLBe7GiVN4 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tLBe7GiVN4 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tLBe7GiVN4 .dataTables_wrapper {
  display: block;
}
.cid-tLBe7GiVN4 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tLBe7GiVN4 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tLBe7GiVN4 .head-item:after,
.cid-tLBe7GiVN4 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tLBe7GiVN4 .dataTables_filter {
    text-align: center;
  }
  .cid-tLBe7GiVN4 .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tLBe7GiVN4 .dataTables_filter {
    text-align: center;
  }
  .cid-tLBe7GiVN4 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tLBe7GiVN4 table th,
  .cid-tLBe7GiVN4 table td {
    padding: .75rem;
  }
}
.cid-tLBe7GiVN4 .body-item {
  text-align: left;
}
.cid-tLBe7HAreE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe7HAreE .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7IGhaK {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe7IGhaK .mbr-text {
  text-align: left;
}
.cid-tLBe7JPrna {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe7JPrna .mbr-text {
  text-align: left;
}
.cid-tLBe7Lipzp {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe7Lipzp .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7Lipzp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe7Lipzp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe7Lipzp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe7Lipzp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe7Lipzp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe7Lipzp .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7Lipzp .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7Lipzp .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7Lipzp .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7Lipzp .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe7Lipzp ul {
  font-size: 0;
}
.cid-tLBe7Lipzp .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7Lipzp .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe7Lipzp .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe7Lipzp .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe7Lipzp .mbr-gallery-filter ul li:first-child,
.cid-tLBe7Lipzp .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe7Lipzp .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe7Lipzp .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe7Lipzp .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe7Lipzp .btn.active:after {
  animation: none;
}
.cid-tLBe7Lipzp .btn:active {
  box-shadow: none !important;
}
.cid-tLBe7Lipzp .btn:hover {
  background: transparent !important;
}
.cid-tLBe7Lipzp .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe7Lipzp .btn:before {
  background-color: transparent !important;
}
.cid-tLBe7Lipzp .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe7Lipzp .mbr-section-title,
.cid-tLBe7Lipzp .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7Mw9wc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe7Mw9wc .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7NKtQX {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe7NKtQX .mbr-text {
  text-align: left;
}
.cid-tLBe7ORV8X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe7ORV8X .mbr-text {
  text-align: left;
}
.cid-tLBe7QjHi3 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe7QjHi3 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7QjHi3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe7QjHi3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe7QjHi3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe7QjHi3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe7QjHi3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe7QjHi3 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7QjHi3 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7QjHi3 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7QjHi3 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7QjHi3 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe7QjHi3 ul {
  font-size: 0;
}
.cid-tLBe7QjHi3 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7QjHi3 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe7QjHi3 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe7QjHi3 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe7QjHi3 .mbr-gallery-filter ul li:first-child,
.cid-tLBe7QjHi3 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe7QjHi3 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe7QjHi3 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe7QjHi3 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe7QjHi3 .btn.active:after {
  animation: none;
}
.cid-tLBe7QjHi3 .btn:active {
  box-shadow: none !important;
}
.cid-tLBe7QjHi3 .btn:hover {
  background: transparent !important;
}
.cid-tLBe7QjHi3 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe7QjHi3 .btn:before {
  background-color: transparent !important;
}
.cid-tLBe7QjHi3 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe7QjHi3 .mbr-section-title,
.cid-tLBe7QjHi3 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7RzFZs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe7RzFZs .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7SGEvI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe7SGEvI .mbr-text {
  text-align: left;
}
.cid-tLBe7TQ53K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe7TQ53K .mbr-text {
  text-align: left;
}
.cid-tLBe7V7GnE {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe7V7GnE .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7V7GnE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe7V7GnE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe7V7GnE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe7V7GnE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe7V7GnE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe7V7GnE .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7V7GnE .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7V7GnE .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe7V7GnE .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe7V7GnE .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe7V7GnE ul {
  font-size: 0;
}
.cid-tLBe7V7GnE .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7V7GnE .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe7V7GnE .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe7V7GnE .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe7V7GnE .mbr-gallery-filter ul li:first-child,
.cid-tLBe7V7GnE .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe7V7GnE .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe7V7GnE .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe7V7GnE .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe7V7GnE .btn.active:after {
  animation: none;
}
.cid-tLBe7V7GnE .btn:active {
  box-shadow: none !important;
}
.cid-tLBe7V7GnE .btn:hover {
  background: transparent !important;
}
.cid-tLBe7V7GnE .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe7V7GnE .btn:before {
  background-color: transparent !important;
}
.cid-tLBe7V7GnE .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe7V7GnE .mbr-section-title,
.cid-tLBe7V7GnE .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe7Wng7E {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe7Wng7E .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe7Xve2Q {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe7Xve2Q .mbr-text {
  text-align: left;
}
.cid-tLBe7YGEgO {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe7YGEgO .mbr-text {
  text-align: left;
}
.cid-tLBe800pll {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe800pll .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe800pll .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe800pll .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe800pll .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe800pll .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe800pll .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe800pll .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe800pll .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe800pll .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe800pll .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe800pll .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe800pll ul {
  font-size: 0;
}
.cid-tLBe800pll .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe800pll .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe800pll .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe800pll .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe800pll .mbr-gallery-filter ul li:first-child,
.cid-tLBe800pll .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe800pll .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe800pll .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe800pll .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe800pll .btn.active:after {
  animation: none;
}
.cid-tLBe800pll .btn:active {
  box-shadow: none !important;
}
.cid-tLBe800pll .btn:hover {
  background: transparent !important;
}
.cid-tLBe800pll .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe800pll .btn:before {
  background-color: transparent !important;
}
.cid-tLBe800pll .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe800pll .mbr-section-title,
.cid-tLBe800pll .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe81f1VN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe81f1VN .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe82q1oU {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe82q1oU .mbr-text {
  text-align: left;
}
.cid-tLBe83w9ua {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe83w9ua .mbr-text {
  text-align: left;
}
.cid-tLBe851q71 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe851q71 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe851q71 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe851q71 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe851q71 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe851q71 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe851q71 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe851q71 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe851q71 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe851q71 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe851q71 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe851q71 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe851q71 ul {
  font-size: 0;
}
.cid-tLBe851q71 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe851q71 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe851q71 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe851q71 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe851q71 .mbr-gallery-filter ul li:first-child,
.cid-tLBe851q71 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe851q71 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe851q71 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe851q71 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe851q71 .btn.active:after {
  animation: none;
}
.cid-tLBe851q71 .btn:active {
  box-shadow: none !important;
}
.cid-tLBe851q71 .btn:hover {
  background: transparent !important;
}
.cid-tLBe851q71 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe851q71 .btn:before {
  background-color: transparent !important;
}
.cid-tLBe851q71 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe851q71 .mbr-section-title,
.cid-tLBe851q71 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe86dmuA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe86dmuA .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe87r2Tc {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe87r2Tc .mbr-text {
  text-align: left;
}
.cid-tLBe88zTyo {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe88zTyo .mbr-text {
  text-align: left;
}
.cid-tLBe89XUv6 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe89XUv6 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe89XUv6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe89XUv6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe89XUv6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe89XUv6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe89XUv6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe89XUv6 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe89XUv6 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe89XUv6 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe89XUv6 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe89XUv6 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe89XUv6 ul {
  font-size: 0;
}
.cid-tLBe89XUv6 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe89XUv6 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe89XUv6 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe89XUv6 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe89XUv6 .mbr-gallery-filter ul li:first-child,
.cid-tLBe89XUv6 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe89XUv6 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe89XUv6 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe89XUv6 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe89XUv6 .btn.active:after {
  animation: none;
}
.cid-tLBe89XUv6 .btn:active {
  box-shadow: none !important;
}
.cid-tLBe89XUv6 .btn:hover {
  background: transparent !important;
}
.cid-tLBe89XUv6 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe89XUv6 .btn:before {
  background-color: transparent !important;
}
.cid-tLBe89XUv6 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe89XUv6 .mbr-section-title,
.cid-tLBe89XUv6 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8btYCh {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tLBe8btYCh .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8btYCh .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tLBe8btYCh .table-wrapper {
  margin: 0 auto;
}
.cid-tLBe8btYCh table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tLBe8btYCh table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-tLBe8btYCh table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tLBe8btYCh .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tLBe8btYCh .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tLBe8btYCh .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tLBe8btYCh .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tLBe8btYCh .dataTables_wrapper {
  display: block;
}
.cid-tLBe8btYCh .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tLBe8btYCh .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tLBe8btYCh .head-item:after,
.cid-tLBe8btYCh .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tLBe8btYCh .dataTables_filter {
    text-align: center;
  }
  .cid-tLBe8btYCh .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tLBe8btYCh .dataTables_filter {
    text-align: center;
  }
  .cid-tLBe8btYCh .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tLBe8btYCh table th,
  .cid-tLBe8btYCh table td {
    padding: .75rem;
  }
}
.cid-tLBe8btYCh .body-item {
  text-align: left;
}
.cid-tLBe8cJpJc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe8cJpJc .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8dYeGE {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8dYeGE .mbr-text {
  text-align: left;
}
.cid-tLBe8f60C5 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8f60C5 .mbr-text {
  text-align: left;
}
.cid-tLBe8gvEzR {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe8gvEzR .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8gvEzR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe8gvEzR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe8gvEzR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe8gvEzR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe8gvEzR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe8gvEzR .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8gvEzR .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8gvEzR .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8gvEzR .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8gvEzR .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe8gvEzR ul {
  font-size: 0;
}
.cid-tLBe8gvEzR .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8gvEzR .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe8gvEzR .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe8gvEzR .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe8gvEzR .mbr-gallery-filter ul li:first-child,
.cid-tLBe8gvEzR .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe8gvEzR .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe8gvEzR .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe8gvEzR .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe8gvEzR .btn.active:after {
  animation: none;
}
.cid-tLBe8gvEzR .btn:active {
  box-shadow: none !important;
}
.cid-tLBe8gvEzR .btn:hover {
  background: transparent !important;
}
.cid-tLBe8gvEzR .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe8gvEzR .btn:before {
  background-color: transparent !important;
}
.cid-tLBe8gvEzR .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe8gvEzR .mbr-section-title,
.cid-tLBe8gvEzR .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8hNS40 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe8hNS40 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8iWIU1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8iWIU1 .mbr-text {
  text-align: left;
}
.cid-tLBe8k8xYL {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8k8xYL .mbr-text {
  text-align: left;
}
.cid-tLBe8lvUPc {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe8lvUPc .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8lvUPc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe8lvUPc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe8lvUPc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe8lvUPc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe8lvUPc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe8lvUPc .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8lvUPc .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8lvUPc .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8lvUPc .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8lvUPc .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe8lvUPc ul {
  font-size: 0;
}
.cid-tLBe8lvUPc .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8lvUPc .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe8lvUPc .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe8lvUPc .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe8lvUPc .mbr-gallery-filter ul li:first-child,
.cid-tLBe8lvUPc .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe8lvUPc .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe8lvUPc .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe8lvUPc .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe8lvUPc .btn.active:after {
  animation: none;
}
.cid-tLBe8lvUPc .btn:active {
  box-shadow: none !important;
}
.cid-tLBe8lvUPc .btn:hover {
  background: transparent !important;
}
.cid-tLBe8lvUPc .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe8lvUPc .btn:before {
  background-color: transparent !important;
}
.cid-tLBe8lvUPc .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe8lvUPc .mbr-section-title,
.cid-tLBe8lvUPc .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8mLgJk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe8mLgJk .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8nYg9A {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8nYg9A .mbr-text {
  text-align: left;
}
.cid-tLBe8p8D8A {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8p8D8A .mbr-text {
  text-align: left;
}
.cid-tLBe8qAYPL {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe8qAYPL .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8qAYPL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe8qAYPL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe8qAYPL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe8qAYPL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe8qAYPL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe8qAYPL .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8qAYPL .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8qAYPL .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8qAYPL .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8qAYPL .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe8qAYPL ul {
  font-size: 0;
}
.cid-tLBe8qAYPL .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8qAYPL .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe8qAYPL .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe8qAYPL .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe8qAYPL .mbr-gallery-filter ul li:first-child,
.cid-tLBe8qAYPL .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe8qAYPL .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe8qAYPL .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe8qAYPL .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe8qAYPL .btn.active:after {
  animation: none;
}
.cid-tLBe8qAYPL .btn:active {
  box-shadow: none !important;
}
.cid-tLBe8qAYPL .btn:hover {
  background: transparent !important;
}
.cid-tLBe8qAYPL .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe8qAYPL .btn:before {
  background-color: transparent !important;
}
.cid-tLBe8qAYPL .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe8qAYPL .mbr-section-title,
.cid-tLBe8qAYPL .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8rOQSC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe8rOQSC .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8t1zwF {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8t1zwF .mbr-text {
  text-align: left;
}
.cid-tLBe8ugndu {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8ugndu .mbr-text {
  text-align: left;
}
.cid-tLBe8vzm6g {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe8vzm6g .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8vzm6g .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe8vzm6g .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe8vzm6g .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe8vzm6g .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe8vzm6g .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe8vzm6g .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8vzm6g .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8vzm6g .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8vzm6g .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8vzm6g .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe8vzm6g ul {
  font-size: 0;
}
.cid-tLBe8vzm6g .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8vzm6g .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe8vzm6g .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe8vzm6g .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe8vzm6g .mbr-gallery-filter ul li:first-child,
.cid-tLBe8vzm6g .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe8vzm6g .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe8vzm6g .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe8vzm6g .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe8vzm6g .btn.active:after {
  animation: none;
}
.cid-tLBe8vzm6g .btn:active {
  box-shadow: none !important;
}
.cid-tLBe8vzm6g .btn:hover {
  background: transparent !important;
}
.cid-tLBe8vzm6g .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe8vzm6g .btn:before {
  background-color: transparent !important;
}
.cid-tLBe8vzm6g .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe8vzm6g .mbr-section-title,
.cid-tLBe8vzm6g .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8wSt7Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe8wSt7Q .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8y45Ms {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8y45Ms .mbr-text {
  text-align: left;
}
.cid-tLBe8zisna {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8zisna .mbr-text {
  text-align: left;
}
.cid-tLBe8AEavd {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe8AEavd .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8AEavd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe8AEavd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe8AEavd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe8AEavd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe8AEavd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe8AEavd .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8AEavd .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8AEavd .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8AEavd .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8AEavd .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe8AEavd ul {
  font-size: 0;
}
.cid-tLBe8AEavd .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8AEavd .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe8AEavd .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe8AEavd .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe8AEavd .mbr-gallery-filter ul li:first-child,
.cid-tLBe8AEavd .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe8AEavd .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe8AEavd .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe8AEavd .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe8AEavd .btn.active:after {
  animation: none;
}
.cid-tLBe8AEavd .btn:active {
  box-shadow: none !important;
}
.cid-tLBe8AEavd .btn:hover {
  background: transparent !important;
}
.cid-tLBe8AEavd .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe8AEavd .btn:before {
  background-color: transparent !important;
}
.cid-tLBe8AEavd .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe8AEavd .mbr-section-title,
.cid-tLBe8AEavd .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8BUx8x {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tLBe8BUx8x .mbr-text {
  text-align: left;
}
.cid-tLBe8D98pk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe8D98pk .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8EjsGV {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8EjsGV .mbr-text {
  text-align: left;
}
.cid-tLBe8Fxdsb {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8Fxdsb .mbr-text {
  text-align: left;
}
.cid-tLBe8GO6w0 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe8GO6w0 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8GO6w0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe8GO6w0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe8GO6w0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe8GO6w0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe8GO6w0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe8GO6w0 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8GO6w0 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8GO6w0 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8GO6w0 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8GO6w0 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe8GO6w0 ul {
  font-size: 0;
}
.cid-tLBe8GO6w0 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8GO6w0 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe8GO6w0 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe8GO6w0 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe8GO6w0 .mbr-gallery-filter ul li:first-child,
.cid-tLBe8GO6w0 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe8GO6w0 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe8GO6w0 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe8GO6w0 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe8GO6w0 .btn.active:after {
  animation: none;
}
.cid-tLBe8GO6w0 .btn:active {
  box-shadow: none !important;
}
.cid-tLBe8GO6w0 .btn:hover {
  background: transparent !important;
}
.cid-tLBe8GO6w0 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe8GO6w0 .btn:before {
  background-color: transparent !important;
}
.cid-tLBe8GO6w0 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe8GO6w0 .mbr-section-title,
.cid-tLBe8GO6w0 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8I7QF8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe8I7QF8 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8JlLqn {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8JlLqn .mbr-text {
  text-align: left;
}
.cid-tLBe8Kxt8v {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8Kxt8v .mbr-text {
  text-align: left;
}
.cid-tLBe8LUuRM {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe8LUuRM .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8LUuRM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe8LUuRM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe8LUuRM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe8LUuRM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe8LUuRM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe8LUuRM .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8LUuRM .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8LUuRM .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8LUuRM .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8LUuRM .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe8LUuRM ul {
  font-size: 0;
}
.cid-tLBe8LUuRM .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8LUuRM .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe8LUuRM .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe8LUuRM .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe8LUuRM .mbr-gallery-filter ul li:first-child,
.cid-tLBe8LUuRM .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe8LUuRM .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe8LUuRM .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe8LUuRM .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe8LUuRM .btn.active:after {
  animation: none;
}
.cid-tLBe8LUuRM .btn:active {
  box-shadow: none !important;
}
.cid-tLBe8LUuRM .btn:hover {
  background: transparent !important;
}
.cid-tLBe8LUuRM .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe8LUuRM .btn:before {
  background-color: transparent !important;
}
.cid-tLBe8LUuRM .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe8LUuRM .mbr-section-title,
.cid-tLBe8LUuRM .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8N9U1Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe8N9U1Q .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8OpxNQ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8OpxNQ .mbr-text {
  text-align: left;
}
.cid-tLBe8PBfQu {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8PBfQu .mbr-text {
  text-align: left;
}
.cid-tLBe8R0amb {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe8R0amb .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8R0amb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe8R0amb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe8R0amb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe8R0amb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe8R0amb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe8R0amb .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8R0amb .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8R0amb .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8R0amb .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8R0amb .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe8R0amb ul {
  font-size: 0;
}
.cid-tLBe8R0amb .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8R0amb .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe8R0amb .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe8R0amb .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe8R0amb .mbr-gallery-filter ul li:first-child,
.cid-tLBe8R0amb .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe8R0amb .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe8R0amb .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe8R0amb .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe8R0amb .btn.active:after {
  animation: none;
}
.cid-tLBe8R0amb .btn:active {
  box-shadow: none !important;
}
.cid-tLBe8R0amb .btn:hover {
  background: transparent !important;
}
.cid-tLBe8R0amb .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe8R0amb .btn:before {
  background-color: transparent !important;
}
.cid-tLBe8R0amb .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe8R0amb .mbr-section-title,
.cid-tLBe8R0amb .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8SkO6W {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe8SkO6W .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8TxM6Q {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8TxM6Q .mbr-text {
  text-align: left;
}
.cid-tLBe8UO10P {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8UO10P .mbr-text {
  text-align: left;
}
.cid-tLBe8W9mUJ {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tLBe8W9mUJ .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8W9mUJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe8W9mUJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe8W9mUJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe8W9mUJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe8W9mUJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe8W9mUJ .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8W9mUJ .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8W9mUJ .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe8W9mUJ .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe8W9mUJ .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe8W9mUJ ul {
  font-size: 0;
}
.cid-tLBe8W9mUJ .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8W9mUJ .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe8W9mUJ .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe8W9mUJ .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe8W9mUJ .mbr-gallery-filter ul li:first-child,
.cid-tLBe8W9mUJ .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe8W9mUJ .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe8W9mUJ .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe8W9mUJ .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe8W9mUJ .btn.active:after {
  animation: none;
}
.cid-tLBe8W9mUJ .btn:active {
  box-shadow: none !important;
}
.cid-tLBe8W9mUJ .btn:hover {
  background: transparent !important;
}
.cid-tLBe8W9mUJ .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe8W9mUJ .btn:before {
  background-color: transparent !important;
}
.cid-tLBe8W9mUJ .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe8W9mUJ .mbr-section-title,
.cid-tLBe8W9mUJ .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe8Xw1G2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe8Xw1G2 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe8YJ9Cw {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe8YJ9Cw .mbr-text {
  text-align: left;
}
.cid-tLBe900b1i {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe900b1i .mbr-text {
  text-align: left;
}
.cid-tLBe91DDk5 {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe91DDk5 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe91DDk5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe91DDk5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe91DDk5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe91DDk5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe91DDk5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe91DDk5 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe91DDk5 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe91DDk5 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe91DDk5 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe91DDk5 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe91DDk5 ul {
  font-size: 0;
}
.cid-tLBe91DDk5 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe91DDk5 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe91DDk5 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe91DDk5 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe91DDk5 .mbr-gallery-filter ul li:first-child,
.cid-tLBe91DDk5 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe91DDk5 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe91DDk5 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe91DDk5 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe91DDk5 .btn.active:after {
  animation: none;
}
.cid-tLBe91DDk5 .btn:active {
  box-shadow: none !important;
}
.cid-tLBe91DDk5 .btn:hover {
  background: transparent !important;
}
.cid-tLBe91DDk5 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe91DDk5 .btn:before {
  background-color: transparent !important;
}
.cid-tLBe91DDk5 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe91DDk5 .mbr-section-title,
.cid-tLBe91DDk5 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe92VfGJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe92VfGJ .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe94dTzN {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe94dTzN .mbr-text {
  text-align: left;
}
.cid-tLBe95uPAd {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe95uPAd .mbr-text {
  text-align: left;
}
.cid-tLBe96U303 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe96U303 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe96U303 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe96U303 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe96U303 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe96U303 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe96U303 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe96U303 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe96U303 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe96U303 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe96U303 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe96U303 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe96U303 ul {
  font-size: 0;
}
.cid-tLBe96U303 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe96U303 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe96U303 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe96U303 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe96U303 .mbr-gallery-filter ul li:first-child,
.cid-tLBe96U303 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe96U303 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe96U303 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe96U303 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe96U303 .btn.active:after {
  animation: none;
}
.cid-tLBe96U303 .btn:active {
  box-shadow: none !important;
}
.cid-tLBe96U303 .btn:hover {
  background: transparent !important;
}
.cid-tLBe96U303 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe96U303 .btn:before {
  background-color: transparent !important;
}
.cid-tLBe96U303 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe96U303 .mbr-section-title,
.cid-tLBe96U303 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe98geji {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe98geji .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe99uROZ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe99uROZ .mbr-text {
  text-align: left;
}
.cid-tLBe9aLlM7 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe9aLlM7 .mbr-text {
  text-align: left;
}
.cid-tLBe9ck4iU {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe9ck4iU .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe9ck4iU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe9ck4iU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe9ck4iU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe9ck4iU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe9ck4iU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe9ck4iU .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9ck4iU .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9ck4iU .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9ck4iU .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9ck4iU .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe9ck4iU ul {
  font-size: 0;
}
.cid-tLBe9ck4iU .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe9ck4iU .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe9ck4iU .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe9ck4iU .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe9ck4iU .mbr-gallery-filter ul li:first-child,
.cid-tLBe9ck4iU .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe9ck4iU .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe9ck4iU .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe9ck4iU .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe9ck4iU .btn.active:after {
  animation: none;
}
.cid-tLBe9ck4iU .btn:active {
  box-shadow: none !important;
}
.cid-tLBe9ck4iU .btn:hover {
  background: transparent !important;
}
.cid-tLBe9ck4iU .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe9ck4iU .btn:before {
  background-color: transparent !important;
}
.cid-tLBe9ck4iU .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe9ck4iU .mbr-section-title,
.cid-tLBe9ck4iU .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe9dCa1Z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe9dCa1Z .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe9eU5Yn {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe9eU5Yn .mbr-text {
  text-align: left;
}
.cid-tLBe9ganwa {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBe9ganwa .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tLBe9hBwZ7 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe9hBwZ7 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe9hBwZ7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe9hBwZ7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe9hBwZ7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe9hBwZ7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe9hBwZ7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe9hBwZ7 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9hBwZ7 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9hBwZ7 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9hBwZ7 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9hBwZ7 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe9hBwZ7 ul {
  font-size: 0;
}
.cid-tLBe9hBwZ7 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe9hBwZ7 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe9hBwZ7 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe9hBwZ7 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe9hBwZ7 .mbr-gallery-filter ul li:first-child,
.cid-tLBe9hBwZ7 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe9hBwZ7 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe9hBwZ7 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe9hBwZ7 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe9hBwZ7 .btn.active:after {
  animation: none;
}
.cid-tLBe9hBwZ7 .btn:active {
  box-shadow: none !important;
}
.cid-tLBe9hBwZ7 .btn:hover {
  background: transparent !important;
}
.cid-tLBe9hBwZ7 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe9hBwZ7 .btn:before {
  background-color: transparent !important;
}
.cid-tLBe9hBwZ7 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe9hBwZ7 .mbr-section-title,
.cid-tLBe9hBwZ7 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe9iVZMI {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe9iVZMI .mbr-text {
  text-align: left;
}
.cid-tLBe9ka5mc {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBe9ka5mc .mbr-text {
  color: #232323;
}
.cid-tLBe9lrLxb {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 45px;
}
.cid-tLBe9lrLxb .container-fluid {
  padding: 0 3rem;
}
.cid-tLBe9lrLxb .image-block {
  margin: auto;
}
.cid-tLBe9lrLxb .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tLBe9lrLxb .container-fluid {
    padding: 0 1rem;
  }
  .cid-tLBe9lrLxb .image-block {
    width: 100% !important;
  }
}
.cid-tLBe9mJKbk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe9mJKbk .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe9oqSF2 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe9oqSF2 .mbr-text {
  text-align: left;
}
.cid-tLBe9q8vNQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBe9q8vNQ .mbr-text {
  color: #232323;
}
.cid-tLBe9rzyPl {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBe9rzyPl .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe9rzyPl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe9rzyPl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe9rzyPl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe9rzyPl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe9rzyPl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe9rzyPl .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9rzyPl .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9rzyPl .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9rzyPl .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9rzyPl .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe9rzyPl ul {
  font-size: 0;
}
.cid-tLBe9rzyPl .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe9rzyPl .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe9rzyPl .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe9rzyPl .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe9rzyPl .mbr-gallery-filter ul li:first-child,
.cid-tLBe9rzyPl .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe9rzyPl .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe9rzyPl .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe9rzyPl .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe9rzyPl .btn.active:after {
  animation: none;
}
.cid-tLBe9rzyPl .btn:active {
  box-shadow: none !important;
}
.cid-tLBe9rzyPl .btn:hover {
  background: transparent !important;
}
.cid-tLBe9rzyPl .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe9rzyPl .btn:before {
  background-color: transparent !important;
}
.cid-tLBe9rzyPl .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe9rzyPl .mbr-section-title,
.cid-tLBe9rzyPl .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe9sXns6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe9sXns6 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe9uelrC {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe9uelrC .mbr-text {
  text-align: left;
}
.cid-tLBe9vxIym {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBe9vxIym .mbr-text {
  color: #232323;
}
.cid-tLBe9x1vXu {
  padding-top: 30px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tLBe9x1vXu .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe9x1vXu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe9x1vXu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe9x1vXu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe9x1vXu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe9x1vXu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe9x1vXu .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9x1vXu .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9x1vXu .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9x1vXu .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9x1vXu .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe9x1vXu ul {
  font-size: 0;
}
.cid-tLBe9x1vXu .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe9x1vXu .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe9x1vXu .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe9x1vXu .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe9x1vXu .mbr-gallery-filter ul li:first-child,
.cid-tLBe9x1vXu .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe9x1vXu .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe9x1vXu .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-tLBe9x1vXu .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe9x1vXu .btn.active:after {
  animation: none;
}
.cid-tLBe9x1vXu .btn:active {
  box-shadow: none !important;
}
.cid-tLBe9x1vXu .btn:hover {
  background: transparent !important;
}
.cid-tLBe9x1vXu .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe9x1vXu .btn:before {
  background-color: transparent !important;
}
.cid-tLBe9x1vXu .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe9ylFnB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe9ylFnB .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe9zEJMX {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe9zEJMX .mbr-text {
  text-align: left;
}
.cid-tLBe9AV7g3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBe9AV7g3 .mbr-text {
  color: #232323;
}
.cid-tLBe9CvAje {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBe9CvAje .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe9CvAje .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe9CvAje .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe9CvAje .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe9CvAje .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe9CvAje .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe9CvAje .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9CvAje .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9CvAje .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9CvAje .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9CvAje .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe9CvAje ul {
  font-size: 0;
}
.cid-tLBe9CvAje .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe9CvAje .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe9CvAje .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe9CvAje .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe9CvAje .mbr-gallery-filter ul li:first-child,
.cid-tLBe9CvAje .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe9CvAje .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe9CvAje .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe9CvAje .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe9CvAje .btn.active:after {
  animation: none;
}
.cid-tLBe9CvAje .btn:active {
  box-shadow: none !important;
}
.cid-tLBe9CvAje .btn:hover {
  background: transparent !important;
}
.cid-tLBe9CvAje .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe9CvAje .btn:before {
  background-color: transparent !important;
}
.cid-tLBe9CvAje .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe9CvAje .mbr-section-title,
.cid-tLBe9CvAje .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe9DVdNC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tLBe9DVdNC .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe9Fb1x1 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe9Fb1x1 .mbr-text {
  text-align: left;
}
.cid-tLBe9Guh8i {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBe9Guh8i .mbr-text {
  color: #232323;
}
.cid-tLBe9I6RH6 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBe9I6RH6 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe9I6RH6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe9I6RH6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe9I6RH6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe9I6RH6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe9I6RH6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe9I6RH6 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9I6RH6 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9I6RH6 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9I6RH6 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9I6RH6 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe9I6RH6 ul {
  font-size: 0;
}
.cid-tLBe9I6RH6 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe9I6RH6 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe9I6RH6 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe9I6RH6 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe9I6RH6 .mbr-gallery-filter ul li:first-child,
.cid-tLBe9I6RH6 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe9I6RH6 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe9I6RH6 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe9I6RH6 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe9I6RH6 .btn.active:after {
  animation: none;
}
.cid-tLBe9I6RH6 .btn:active {
  box-shadow: none !important;
}
.cid-tLBe9I6RH6 .btn:hover {
  background: transparent !important;
}
.cid-tLBe9I6RH6 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe9I6RH6 .btn:before {
  background-color: transparent !important;
}
.cid-tLBe9I6RH6 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe9I6RH6 .mbr-section-title,
.cid-tLBe9I6RH6 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe9JueRR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBe9JueRR P {
  color: #767676;
}
.cid-tLBe9JueRR hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBe9KRpS6 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe9KRpS6 .mbr-text {
  text-align: left;
}
.cid-tLBe9M9bXW {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe9M9bXW .mbr-text {
  color: #232323;
}
.cid-tLBe9Nysz2 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLBe9Nysz2 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe9Nysz2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe9Nysz2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe9Nysz2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe9Nysz2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe9Nysz2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe9Nysz2 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9Nysz2 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9Nysz2 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9Nysz2 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9Nysz2 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe9Nysz2 ul {
  font-size: 0;
}
.cid-tLBe9Nysz2 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe9Nysz2 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe9Nysz2 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe9Nysz2 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe9Nysz2 .mbr-gallery-filter ul li:first-child,
.cid-tLBe9Nysz2 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe9Nysz2 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe9Nysz2 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe9Nysz2 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe9Nysz2 .btn.active:after {
  animation: none;
}
.cid-tLBe9Nysz2 .btn:active {
  box-shadow: none !important;
}
.cid-tLBe9Nysz2 .btn:hover {
  background: transparent !important;
}
.cid-tLBe9Nysz2 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe9Nysz2 .btn:before {
  background-color: transparent !important;
}
.cid-tLBe9Nysz2 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe9Nysz2 .mbr-section-title,
.cid-tLBe9Nysz2 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe9OUob0 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBe9OUob0 .mbr-text {
  color: #232323;
}
.cid-tLBe9QdbXM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBe9QdbXM P {
  color: #767676;
}
.cid-tLBe9QdbXM hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBe9RBjMv {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe9RBjMv .mbr-text {
  text-align: left;
}
.cid-tLBe9SQyM6 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBe9SQyM6 .mbr-text {
  color: #232323;
}
.cid-tLBe9UcQ1S {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBe9UcQ1S .mbr-text {
  color: #232323;
}
.cid-tLBe9VFcYc {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBe9VFcYc .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBe9VFcYc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBe9VFcYc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBe9VFcYc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBe9VFcYc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBe9VFcYc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBe9VFcYc .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9VFcYc .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9VFcYc .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBe9VFcYc .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBe9VFcYc .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBe9VFcYc ul {
  font-size: 0;
}
.cid-tLBe9VFcYc .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe9VFcYc .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBe9VFcYc .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBe9VFcYc .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBe9VFcYc .mbr-gallery-filter ul li:first-child,
.cid-tLBe9VFcYc .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBe9VFcYc .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBe9VFcYc .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBe9VFcYc .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBe9VFcYc .btn.active:after {
  animation: none;
}
.cid-tLBe9VFcYc .btn:active {
  box-shadow: none !important;
}
.cid-tLBe9VFcYc .btn:hover {
  background: transparent !important;
}
.cid-tLBe9VFcYc .btn:hover:before {
  background: transparent !important;
}
.cid-tLBe9VFcYc .btn:before {
  background-color: transparent !important;
}
.cid-tLBe9VFcYc .btn:focus {
  box-shadow: none !important;
}
.cid-tLBe9VFcYc .mbr-section-title,
.cid-tLBe9VFcYc .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBe9X2JzG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBe9X2JzG P {
  color: #767676;
}
.cid-tLBe9X2JzG hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBe9Yofob {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBe9Yofob .mbr-text {
  text-align: left;
}
.cid-tLBe9ZFp1l {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBe9ZFp1l .mbr-text {
  color: #232323;
}
.cid-tLBea119Pz {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBea119Pz .mbr-text {
  color: #232323;
}
.cid-tLBea2y9io {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBea2y9io .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBea2y9io .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBea2y9io .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBea2y9io .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBea2y9io .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBea2y9io .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBea2y9io .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBea2y9io .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBea2y9io .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBea2y9io .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBea2y9io .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBea2y9io ul {
  font-size: 0;
}
.cid-tLBea2y9io .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBea2y9io .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBea2y9io .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBea2y9io .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBea2y9io .mbr-gallery-filter ul li:first-child,
.cid-tLBea2y9io .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBea2y9io .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBea2y9io .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBea2y9io .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBea2y9io .btn.active:after {
  animation: none;
}
.cid-tLBea2y9io .btn:active {
  box-shadow: none !important;
}
.cid-tLBea2y9io .btn:hover {
  background: transparent !important;
}
.cid-tLBea2y9io .btn:hover:before {
  background: transparent !important;
}
.cid-tLBea2y9io .btn:before {
  background-color: transparent !important;
}
.cid-tLBea2y9io .btn:focus {
  box-shadow: none !important;
}
.cid-tLBea2y9io .mbr-section-title,
.cid-tLBea2y9io .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBea3WE4v {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBea3WE4v P {
  color: #767676;
}
.cid-tLBea3WE4v hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBea5j9TK {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBea5j9TK .mbr-text {
  text-align: left;
}
.cid-tLBea6BO0A {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBea6BO0A .mbr-text {
  color: #232323;
}
.cid-tLBea7VYPP {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBea7VYPP .mbr-text {
  color: #232323;
}
.cid-tLBea9seHc {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBea9seHc .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBea9seHc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBea9seHc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBea9seHc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBea9seHc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBea9seHc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBea9seHc .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBea9seHc .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBea9seHc .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBea9seHc .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBea9seHc .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBea9seHc ul {
  font-size: 0;
}
.cid-tLBea9seHc .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBea9seHc .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBea9seHc .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBea9seHc .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBea9seHc .mbr-gallery-filter ul li:first-child,
.cid-tLBea9seHc .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBea9seHc .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBea9seHc .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBea9seHc .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBea9seHc .btn.active:after {
  animation: none;
}
.cid-tLBea9seHc .btn:active {
  box-shadow: none !important;
}
.cid-tLBea9seHc .btn:hover {
  background: transparent !important;
}
.cid-tLBea9seHc .btn:hover:before {
  background: transparent !important;
}
.cid-tLBea9seHc .btn:before {
  background-color: transparent !important;
}
.cid-tLBea9seHc .btn:focus {
  box-shadow: none !important;
}
.cid-tLBea9seHc .mbr-section-title,
.cid-tLBea9seHc .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeaaRBeW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeaaRBeW P {
  color: #767676;
}
.cid-tLBeaaRBeW hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBeacf0CK {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBeacf0CK .mbr-text {
  text-align: left;
}
.cid-tLBeadAsWi {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeadAsWi .mbr-text {
  color: #232323;
}
.cid-tLBeaeUwRO {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeaeUwRO .mbr-text {
  color: #232323;
}
.cid-tLBeagumFt {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeagumFt .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBeagumFt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBeagumFt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBeagumFt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBeagumFt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBeagumFt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBeagumFt .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeagumFt .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeagumFt .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeagumFt .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeagumFt .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBeagumFt ul {
  font-size: 0;
}
.cid-tLBeagumFt .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeagumFt .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBeagumFt .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBeagumFt .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBeagumFt .mbr-gallery-filter ul li:first-child,
.cid-tLBeagumFt .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBeagumFt .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBeagumFt .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBeagumFt .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBeagumFt .btn.active:after {
  animation: none;
}
.cid-tLBeagumFt .btn:active {
  box-shadow: none !important;
}
.cid-tLBeagumFt .btn:hover {
  background: transparent !important;
}
.cid-tLBeagumFt .btn:hover:before {
  background: transparent !important;
}
.cid-tLBeagumFt .btn:before {
  background-color: transparent !important;
}
.cid-tLBeagumFt .btn:focus {
  box-shadow: none !important;
}
.cid-tLBeagumFt .mbr-section-title,
.cid-tLBeagumFt .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeahTkQ8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeahTkQ8 P {
  color: #767676;
}
.cid-tLBeahTkQ8 hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBeajikqF {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBeajikqF .mbr-text {
  text-align: left;
}
.cid-tLBeakE3mv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeakE3mv .mbr-text {
  color: #232323;
}
.cid-tLBealW2wv {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBealW2wv .mbr-text {
  color: #232323;
}
.cid-tLBeanEHqH {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeanEHqH .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBeanEHqH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBeanEHqH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBeanEHqH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBeanEHqH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBeanEHqH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBeanEHqH .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeanEHqH .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeanEHqH .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeanEHqH .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeanEHqH .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBeanEHqH ul {
  font-size: 0;
}
.cid-tLBeanEHqH .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeanEHqH .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBeanEHqH .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBeanEHqH .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBeanEHqH .mbr-gallery-filter ul li:first-child,
.cid-tLBeanEHqH .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBeanEHqH .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBeanEHqH .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBeanEHqH .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBeanEHqH .btn.active:after {
  animation: none;
}
.cid-tLBeanEHqH .btn:active {
  box-shadow: none !important;
}
.cid-tLBeanEHqH .btn:hover {
  background: transparent !important;
}
.cid-tLBeanEHqH .btn:hover:before {
  background: transparent !important;
}
.cid-tLBeanEHqH .btn:before {
  background-color: transparent !important;
}
.cid-tLBeanEHqH .btn:focus {
  box-shadow: none !important;
}
.cid-tLBeanEHqH .mbr-section-title,
.cid-tLBeanEHqH .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeap8Wi0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeap8Wi0 P {
  color: #767676;
}
.cid-tLBeap8Wi0 hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBeaqwTzL {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBeaqwTzL .mbr-text {
  text-align: left;
}
.cid-tLBearUESf {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBearUESf .mbr-text {
  color: #232323;
}
.cid-tLBeate6CO {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeate6CO .mbr-text {
  color: #232323;
}
.cid-tLBeauWVF2 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeauWVF2 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBeauWVF2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBeauWVF2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBeauWVF2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBeauWVF2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBeauWVF2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBeauWVF2 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeauWVF2 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeauWVF2 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeauWVF2 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeauWVF2 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBeauWVF2 ul {
  font-size: 0;
}
.cid-tLBeauWVF2 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeauWVF2 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBeauWVF2 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBeauWVF2 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBeauWVF2 .mbr-gallery-filter ul li:first-child,
.cid-tLBeauWVF2 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBeauWVF2 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBeauWVF2 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBeauWVF2 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBeauWVF2 .btn.active:after {
  animation: none;
}
.cid-tLBeauWVF2 .btn:active {
  box-shadow: none !important;
}
.cid-tLBeauWVF2 .btn:hover {
  background: transparent !important;
}
.cid-tLBeauWVF2 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBeauWVF2 .btn:before {
  background-color: transparent !important;
}
.cid-tLBeauWVF2 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBeauWVF2 .mbr-section-title,
.cid-tLBeauWVF2 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeawqMlC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeawqMlC P {
  color: #767676;
}
.cid-tLBeawqMlC hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBeaxQwgQ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBeaxQwgQ .mbr-text {
  text-align: left;
}
.cid-tLBeaz9rfP {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeaz9rfP .mbr-text {
  color: #232323;
}
.cid-tLBeaADiw2 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeaADiw2 .mbr-text {
  color: #232323;
}
.cid-tLBeaC70xm {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeaC70xm .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBeaC70xm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBeaC70xm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBeaC70xm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBeaC70xm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBeaC70xm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBeaC70xm .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeaC70xm .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeaC70xm .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeaC70xm .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeaC70xm .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBeaC70xm ul {
  font-size: 0;
}
.cid-tLBeaC70xm .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeaC70xm .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBeaC70xm .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBeaC70xm .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBeaC70xm .mbr-gallery-filter ul li:first-child,
.cid-tLBeaC70xm .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBeaC70xm .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBeaC70xm .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBeaC70xm .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBeaC70xm .btn.active:after {
  animation: none;
}
.cid-tLBeaC70xm .btn:active {
  box-shadow: none !important;
}
.cid-tLBeaC70xm .btn:hover {
  background: transparent !important;
}
.cid-tLBeaC70xm .btn:hover:before {
  background: transparent !important;
}
.cid-tLBeaC70xm .btn:before {
  background-color: transparent !important;
}
.cid-tLBeaC70xm .btn:focus {
  box-shadow: none !important;
}
.cid-tLBeaC70xm .mbr-section-title,
.cid-tLBeaC70xm .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeaDAlaq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeaDAlaq P {
  color: #767676;
}
.cid-tLBeaDAlaq hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBeaF1gqz {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBeaF1gqz .mbr-text {
  text-align: left;
}
.cid-tLBeaGoemY {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeaGoemY .mbr-text {
  color: #232323;
}
.cid-tLBeaHLPK9 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeaHLPK9 .mbr-text {
  color: #232323;
}
.cid-tLBeaJrnM8 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeaJrnM8 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBeaJrnM8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBeaJrnM8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBeaJrnM8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBeaJrnM8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBeaJrnM8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBeaJrnM8 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeaJrnM8 .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeaJrnM8 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeaJrnM8 .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeaJrnM8 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBeaJrnM8 ul {
  font-size: 0;
}
.cid-tLBeaJrnM8 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeaJrnM8 .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBeaJrnM8 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBeaJrnM8 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBeaJrnM8 .mbr-gallery-filter ul li:first-child,
.cid-tLBeaJrnM8 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBeaJrnM8 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBeaJrnM8 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBeaJrnM8 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBeaJrnM8 .btn.active:after {
  animation: none;
}
.cid-tLBeaJrnM8 .btn:active {
  box-shadow: none !important;
}
.cid-tLBeaJrnM8 .btn:hover {
  background: transparent !important;
}
.cid-tLBeaJrnM8 .btn:hover:before {
  background: transparent !important;
}
.cid-tLBeaJrnM8 .btn:before {
  background-color: transparent !important;
}
.cid-tLBeaJrnM8 .btn:focus {
  box-shadow: none !important;
}
.cid-tLBeaJrnM8 .mbr-section-title,
.cid-tLBeaJrnM8 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeaKSfXw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeaKSfXw P {
  color: #767676;
}
.cid-tLBeaKSfXw hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBeaMk9qS {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBeaMk9qS .mbr-text {
  text-align: left;
}
.cid-tLBeaNEr2P {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeaNEr2P .mbr-text {
  color: #232323;
}
.cid-tLBeaP461b {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeaP461b .mbr-text {
  color: #232323;
}
.cid-tLBeaR5nEf {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeaR5nEf .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBeaR5nEf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBeaR5nEf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBeaR5nEf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBeaR5nEf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBeaR5nEf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBeaR5nEf .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeaR5nEf .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeaR5nEf .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeaR5nEf .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeaR5nEf .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBeaR5nEf ul {
  font-size: 0;
}
.cid-tLBeaR5nEf .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeaR5nEf .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBeaR5nEf .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBeaR5nEf .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBeaR5nEf .mbr-gallery-filter ul li:first-child,
.cid-tLBeaR5nEf .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBeaR5nEf .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBeaR5nEf .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBeaR5nEf .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBeaR5nEf .btn.active:after {
  animation: none;
}
.cid-tLBeaR5nEf .btn:active {
  box-shadow: none !important;
}
.cid-tLBeaR5nEf .btn:hover {
  background: transparent !important;
}
.cid-tLBeaR5nEf .btn:hover:before {
  background: transparent !important;
}
.cid-tLBeaR5nEf .btn:before {
  background-color: transparent !important;
}
.cid-tLBeaR5nEf .btn:focus {
  box-shadow: none !important;
}
.cid-tLBeaR5nEf .mbr-section-title,
.cid-tLBeaR5nEf .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeaSDCu0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeaSDCu0 P {
  color: #767676;
}
.cid-tLBeaSDCu0 hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBeaU6OvR {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBeaU6OvR .mbr-text {
  text-align: left;
}
.cid-tLBeaVs9Gk {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeaVs9Gk .mbr-text {
  color: #232323;
}
.cid-tLBeaWVBPM {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeaWVBPM .mbr-text {
  color: #232323;
}
.cid-tLBeaYw2ar {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeaYw2ar .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBeaYw2ar .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBeaYw2ar .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBeaYw2ar .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBeaYw2ar .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBeaYw2ar .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBeaYw2ar .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeaYw2ar .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeaYw2ar .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeaYw2ar .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeaYw2ar .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBeaYw2ar ul {
  font-size: 0;
}
.cid-tLBeaYw2ar .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeaYw2ar .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBeaYw2ar .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBeaYw2ar .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBeaYw2ar .mbr-gallery-filter ul li:first-child,
.cid-tLBeaYw2ar .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBeaYw2ar .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBeaYw2ar .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBeaYw2ar .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBeaYw2ar .btn.active:after {
  animation: none;
}
.cid-tLBeaYw2ar .btn:active {
  box-shadow: none !important;
}
.cid-tLBeaYw2ar .btn:hover {
  background: transparent !important;
}
.cid-tLBeaYw2ar .btn:hover:before {
  background: transparent !important;
}
.cid-tLBeaYw2ar .btn:before {
  background-color: transparent !important;
}
.cid-tLBeaYw2ar .btn:focus {
  box-shadow: none !important;
}
.cid-tLBeaYw2ar .mbr-section-title,
.cid-tLBeaYw2ar .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeaZZbZG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeaZZbZG P {
  color: #767676;
}
.cid-tLBeaZZbZG hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBeb1tiPF {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBeb1tiPF .mbr-text {
  text-align: left;
}
.cid-tLBeb2P49I {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeb2P49I .mbr-text {
  color: #232323;
}
.cid-tLBeb4gdG9 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeb4gdG9 .mbr-text {
  color: #232323;
}
.cid-tLBeb6iGfq {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeb6iGfq .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBeb6iGfq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBeb6iGfq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBeb6iGfq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBeb6iGfq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBeb6iGfq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBeb6iGfq .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeb6iGfq .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeb6iGfq .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeb6iGfq .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeb6iGfq .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBeb6iGfq ul {
  font-size: 0;
}
.cid-tLBeb6iGfq .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeb6iGfq .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBeb6iGfq .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBeb6iGfq .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBeb6iGfq .mbr-gallery-filter ul li:first-child,
.cid-tLBeb6iGfq .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBeb6iGfq .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBeb6iGfq .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBeb6iGfq .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBeb6iGfq .btn.active:after {
  animation: none;
}
.cid-tLBeb6iGfq .btn:active {
  box-shadow: none !important;
}
.cid-tLBeb6iGfq .btn:hover {
  background: transparent !important;
}
.cid-tLBeb6iGfq .btn:hover:before {
  background: transparent !important;
}
.cid-tLBeb6iGfq .btn:before {
  background-color: transparent !important;
}
.cid-tLBeb6iGfq .btn:focus {
  box-shadow: none !important;
}
.cid-tLBeb6iGfq .mbr-section-title,
.cid-tLBeb6iGfq .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeb7RrSQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBeb7RrSQ P {
  color: #767676;
}
.cid-tLBeb7RrSQ hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBeb9n0A1 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBeb9n0A1 .mbr-text {
  text-align: left;
}
.cid-tLBebaJD2c {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBebaJD2c .mbr-text {
  color: #232323;
}
.cid-tLBebcayq0 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBebcayq0 .mbr-text {
  color: #232323;
}
.cid-tLBebe4DZt {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBebe4DZt .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBebe4DZt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBebe4DZt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBebe4DZt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBebe4DZt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBebe4DZt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBebe4DZt .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBebe4DZt .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBebe4DZt .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBebe4DZt .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBebe4DZt .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBebe4DZt ul {
  font-size: 0;
}
.cid-tLBebe4DZt .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBebe4DZt .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBebe4DZt .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBebe4DZt .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBebe4DZt .mbr-gallery-filter ul li:first-child,
.cid-tLBebe4DZt .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBebe4DZt .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBebe4DZt .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBebe4DZt .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBebe4DZt .btn.active:after {
  animation: none;
}
.cid-tLBebe4DZt .btn:active {
  box-shadow: none !important;
}
.cid-tLBebe4DZt .btn:hover {
  background: transparent !important;
}
.cid-tLBebe4DZt .btn:hover:before {
  background: transparent !important;
}
.cid-tLBebe4DZt .btn:before {
  background-color: transparent !important;
}
.cid-tLBebe4DZt .btn:focus {
  box-shadow: none !important;
}
.cid-tLBebe4DZt .mbr-section-title,
.cid-tLBebe4DZt .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBebfDm13 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBebfDm13 P {
  color: #767676;
}
.cid-tLBebfDm13 hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBebh7Ka2 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBebh7Ka2 .mbr-text {
  text-align: left;
}
.cid-tLBebizb53 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBebizb53 .mbr-text {
  color: #232323;
}
.cid-tLBebjX9oz {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBebjX9oz .mbr-text {
  color: #232323;
}
.cid-tLBeblBAbz {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBeblBAbz .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBeblBAbz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBeblBAbz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBeblBAbz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBeblBAbz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBeblBAbz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBeblBAbz .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeblBAbz .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeblBAbz .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBeblBAbz .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBeblBAbz .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBeblBAbz ul {
  font-size: 0;
}
.cid-tLBeblBAbz .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBeblBAbz .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBeblBAbz .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBeblBAbz .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBeblBAbz .mbr-gallery-filter ul li:first-child,
.cid-tLBeblBAbz .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBeblBAbz .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBeblBAbz .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBeblBAbz .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBeblBAbz .btn.active:after {
  animation: none;
}
.cid-tLBeblBAbz .btn:active {
  box-shadow: none !important;
}
.cid-tLBeblBAbz .btn:hover {
  background: transparent !important;
}
.cid-tLBeblBAbz .btn:hover:before {
  background: transparent !important;
}
.cid-tLBeblBAbz .btn:before {
  background-color: transparent !important;
}
.cid-tLBeblBAbz .btn:focus {
  box-shadow: none !important;
}
.cid-tLBeblBAbz .mbr-section-title,
.cid-tLBeblBAbz .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBebn9s3y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBebn9s3y P {
  color: #767676;
}
.cid-tLBebn9s3y hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBeboA3sq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBeboA3sq .mbr-text {
  color: #000000;
}
.cid-tLBebq281k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBebq281k .mbr-text {
  color: #000000;
}
.cid-tLBebru617 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBebt5p2y {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBebt5p2y .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBebt5p2y .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBebt5p2y .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBebt5p2y .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBebt5p2y .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBebt5p2y .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBebt5p2y .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBebt5p2y .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBebt5p2y .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBebt5p2y .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBebt5p2y .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBebt5p2y ul {
  font-size: 0;
}
.cid-tLBebt5p2y .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBebt5p2y .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBebt5p2y .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBebt5p2y .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBebt5p2y .mbr-gallery-filter ul li:first-child,
.cid-tLBebt5p2y .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBebt5p2y .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBebt5p2y .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBebt5p2y .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBebt5p2y .btn.active:after {
  animation: none;
}
.cid-tLBebt5p2y .btn:active {
  box-shadow: none !important;
}
.cid-tLBebt5p2y .btn:hover {
  background: transparent !important;
}
.cid-tLBebt5p2y .btn:hover:before {
  background: transparent !important;
}
.cid-tLBebt5p2y .btn:before {
  background-color: transparent !important;
}
.cid-tLBebt5p2y .btn:focus {
  box-shadow: none !important;
}
.cid-tLBebt5p2y .mbr-section-title,
.cid-tLBebt5p2y .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBebuENC9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBebuENC9 P {
  color: #767676;
}
.cid-tLBebuENC9 hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBebw4jmK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBebw4jmK .mbr-text {
  color: #282828;
}
.cid-tLBebxyS5g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBebxyS5g .mbr-text {
  color: #282828;
}
.cid-tLBebyYMeK {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBebARsiZ {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBebARsiZ .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBebARsiZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBebARsiZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBebARsiZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBebARsiZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBebARsiZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBebARsiZ .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBebARsiZ .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBebARsiZ .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBebARsiZ .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBebARsiZ .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBebARsiZ ul {
  font-size: 0;
}
.cid-tLBebARsiZ .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBebARsiZ .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBebARsiZ .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBebARsiZ .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBebARsiZ .mbr-gallery-filter ul li:first-child,
.cid-tLBebARsiZ .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBebARsiZ .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBebARsiZ .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBebARsiZ .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBebARsiZ .btn.active:after {
  animation: none;
}
.cid-tLBebARsiZ .btn:active {
  box-shadow: none !important;
}
.cid-tLBebARsiZ .btn:hover {
  background: transparent !important;
}
.cid-tLBebARsiZ .btn:hover:before {
  background: transparent !important;
}
.cid-tLBebARsiZ .btn:before {
  background-color: transparent !important;
}
.cid-tLBebARsiZ .btn:focus {
  box-shadow: none !important;
}
.cid-tLBebARsiZ .mbr-section-title,
.cid-tLBebARsiZ .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBebCqQaw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBebCqQaw P {
  color: #767676;
}
.cid-tLBebCqQaw hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBebDY68D {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBebDY68D .mbr-text {
  color: #282828;
}
.cid-tLBebFp9bK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLBebFp9bK .mbr-text {
  color: #282828;
}
.cid-tLBebGUV86 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBebIGUkT {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLBebIGUkT .mbr-section-subtitle {
  color: #767676;
}
.cid-tLBebIGUkT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLBebIGUkT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLBebIGUkT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLBebIGUkT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLBebIGUkT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-tLBebIGUkT .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBebIGUkT .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBebIGUkT .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tLBebIGUkT .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLBebIGUkT .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tLBebIGUkT ul {
  font-size: 0;
}
.cid-tLBebIGUkT .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBebIGUkT .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tLBebIGUkT .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tLBebIGUkT .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tLBebIGUkT .mbr-gallery-filter ul li:first-child,
.cid-tLBebIGUkT .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tLBebIGUkT .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tLBebIGUkT .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tLBebIGUkT .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tLBebIGUkT .btn.active:after {
  animation: none;
}
.cid-tLBebIGUkT .btn:active {
  box-shadow: none !important;
}
.cid-tLBebIGUkT .btn:hover {
  background: transparent !important;
}
.cid-tLBebIGUkT .btn:hover:before {
  background: transparent !important;
}
.cid-tLBebIGUkT .btn:before {
  background-color: transparent !important;
}
.cid-tLBebIGUkT .btn:focus {
  box-shadow: none !important;
}
.cid-tLBebIGUkT .mbr-section-title,
.cid-tLBebIGUkT .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tLBebKbW4N {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBebKbW4N .mbr-text {
  color: #365c9a;
}
.cid-tLBebLJ9LI {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLBebLJ9LI .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLBebLJ9LI .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tLBebP1yel {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBebP1yel .mbr-text {
  color: #232323;
}
.cid-tLBebQynUv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLBebQynUv P {
  color: #767676;
}
.cid-tLBebQynUv hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-tLBebS68A8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-tLBebS68A8 .mbr-text a {
  background-size: 100% 0%;
}
.cid-tLBebS68A8 .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-tLBebS68A8 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZjNTu8z76 {
  background: #ffffff;
  padding-top: 120px;
  padding-bottom: 0px;
}
.cid-tZjNTu8z76 .container-fluid {
  padding: 0 3rem;
}
.cid-tZjNTu8z76 .image-block {
  margin: auto;
}
.cid-tZjNTu8z76 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tZjNTu8z76 .container-fluid {
    padding: 0 1rem;
  }
  .cid-tZjNTu8z76 .image-block {
    width: 100% !important;
  }
}
.cid-tZjOjO3nvL {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tZjOjO3nvL .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-tZjOjO3nvL .mbr-text,
.cid-tZjOjO3nvL .mbr-section-btn {
  text-align: left;
  color: #001954;
}
.cid-tZjOjO3nvL .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-tZjP2jxwiQ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tZjP2jxwiQ .mbr-section-subtitle {
  color: #767676;
}
.cid-tZjONd2fw5 {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tZjONd2fw5 .mbr-section-title {
  margin-bottom: 20px;
  color: #00407d;
}
.cid-tZjONd2fw5 .mbr-section-subtitle {
  opacity: 0.8;
  margin-bottom: 15px;
}
.cid-tZjONd2fw5 .mbr-text {
  margin: 10px 0;
}
.cid-tZjONd2fw5 .divider {
  background-color: #191f23;
  width: 100%;
  height: 1px;
  margin: 15px;
  opacity: 0.6;
}
.cid-tZjONd2fw5 .btn-primary:hover {
  background-color: #36ca45 !important;
  border-color: #36ca45 !important;
}
@media (max-width: 767px) {
  .cid-tZjONd2fw5 .mbr-section-btn {
    margin-top: 0;
    text-align: left;
  }
}
.cid-tZjONd2fw5 .btn:hover .mbr-iconfont {
  animation: animBtn ease-out 0.3s;
}
@keyframes animBtn {
  0% {
    transform: translateX(0px);
  }
  51% {
    transform: translateX(20px);
    opacity: 1;
  }
  52% {
    opacity: 0;
    transform: translateX(-20px);
  }
  53% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
  }
}
.cid-tZjMjWWQ4I {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-tZjMjWWQ4I .mbr-text a {
  background-size: 100% 0%;
}
.cid-tZjMjWWQ4I .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-tZjMjWWQ4I .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-udjih1yMbh {
  padding-top: 135px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-udjih1yMbh .mbr-section-title {
  text-align: left;
  color: #365c9a;
}
.cid-udjih1yMbh .mbr-text,
.cid-udjih1yMbh .mbr-section-btn {
  text-align: left;
  color: #212529;
}
.cid-udjih1yMbh .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-udou9tpjHO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-udoubyzji6 {
  padding-top: 15px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-udoubyzji6 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-udoubyzji6 .title,
.cid-udoubyzji6 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-udoubyzji6 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-udoubyzji6 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-udoubyzji6 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-udoubyzji6 .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-udoubyzji6 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-udoubyzji6 .card-title {
  color: #282828;
  margin: 0;
  padding-bottom: 0.2rem;
  text-align: center;
}
.cid-udoubyzji6 .card-img {
  overflow: hidden;
}
.cid-udoubyzji6 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-udoubyzji6 .card-box {
  padding: 0rem;
}
.cid-udoubyzji6 img {
  transition: all 0.3s;
}
.cid-udoubyzji6 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-udoubyzji6 .status {
  color: #000000;
  text-align: left;
}
.cid-udj3nQpmp4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-udj3nQpmp4 .mbr-text a {
  background-size: 100% 0%;
}
.cid-udj3nQpmp4 .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-udj3nQpmp4 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ueSBh2D9f3 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ueSBh2D9f3 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ueSBh2D9f3 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ueSBh2UR7x {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ueSBh2UR7x .mbr-text {
  text-align: center;
}
.cid-ueSBh3rie0 {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ueSBh3rie0 .container-fluid {
  padding: 0 3rem;
}
.cid-ueSBh3rie0 .image-block {
  margin: auto;
}
.cid-ueSBh3rie0 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ueSBh3rie0 .container-fluid {
    padding: 0 1rem;
  }
  .cid-ueSBh3rie0 .image-block {
    width: 100% !important;
  }
}
.cid-ueSBh3IhUf {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ueSBh3IhUf .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-ueSBh3IhUf .mbr-text-2 {
  color: #232323;
  text-align: right;
}
.cid-ueSBh4ngyr {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-ueSBh4ngyr .mbr-section-subtitle {
  color: #767676;
}
.cid-uf1Wh2yPQO {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uf1Wh2yPQO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf1Wh2yPQO .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-uf1Wh2yPQO .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #ffffff;
  z-index: -1;
}
.cid-uf1Wh2yPQO img {
  border-radius: 1rem;
}
.cid-uf1Wh2yPQO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf1Wh2yPQO .row {
  flex-direction: row-reverse;
}
.cid-uf1Wh2yPQO .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uf1Wh2yPQO .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uf1Wh2yPQO .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uf1Wh2yPQO .mbr-section-title {
  color: #365c9a;
}
.cid-uf1Wh2yPQO .mbr-section-subtitle,
.cid-uf1Wh2yPQO .subtitle-wrap {
  color: #232323;
}
.cid-uf1Wh2yPQO .mbr-text,
.cid-uf1Wh2yPQO .mbr-section-btn {
  color: #232323;
}
.cid-uf1XsGiU2j {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-uf1XsGiU2j .mbr-section-subtitle {
  color: #767676;
}
.cid-ueSBh4Hft9 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ueSBh4Hft9 .mbr-section-subtitle {
  color: #767676;
}
.cid-ueSBh4Hft9 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-ueSBh4Hft9 .table-wrapper {
  margin: 0 auto;
}
.cid-ueSBh4Hft9 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-ueSBh4Hft9 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-ueSBh4Hft9 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-ueSBh4Hft9 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-ueSBh4Hft9 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-ueSBh4Hft9 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-ueSBh4Hft9 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-ueSBh4Hft9 .dataTables_wrapper {
  display: block;
}
.cid-ueSBh4Hft9 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-ueSBh4Hft9 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-ueSBh4Hft9 .head-item:after,
.cid-ueSBh4Hft9 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-ueSBh4Hft9 .dataTables_filter {
    text-align: center;
  }
  .cid-ueSBh4Hft9 .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-ueSBh4Hft9 .dataTables_filter {
    text-align: center;
  }
  .cid-ueSBh4Hft9 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-ueSBh4Hft9 table th,
  .cid-ueSBh4Hft9 table td {
    padding: .75rem;
  }
}
.cid-ueSBh4Hft9 .body-item {
  text-align: left;
}
.cid-ueSBh5u9eb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-ueSBh5u9eb .mbr-section-subtitle {
  color: #767676;
}
.cid-ueSBh5McRf {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ueSBh5McRf .mbr-text {
  text-align: center;
  color: #365c9a;
}
.cid-ueSBh63yP3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ueSBh63yP3 .mbr-text {
  text-align: center;
}
.cid-ueSBh6kYqw {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-ueSBh6kYqw .mbr-section-subtitle {
  color: #767676;
}
.cid-ueSBh6kYqw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ueSBh6kYqw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ueSBh6kYqw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ueSBh6kYqw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ueSBh6kYqw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-ueSBh6kYqw .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-ueSBh6kYqw .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ueSBh6kYqw .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-ueSBh6kYqw .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ueSBh6kYqw .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-ueSBh6kYqw ul {
  font-size: 0;
}
.cid-ueSBh6kYqw .mbr-gallery-filter ul {
  text-align: center;
}
.cid-ueSBh6kYqw .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-ueSBh6kYqw .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-ueSBh6kYqw .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-ueSBh6kYqw .mbr-gallery-filter ul li:first-child,
.cid-ueSBh6kYqw .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-ueSBh6kYqw .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-ueSBh6kYqw .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-ueSBh6kYqw .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-ueSBh6kYqw .btn.active:after {
  animation: none;
}
.cid-ueSBh6kYqw .btn:active {
  box-shadow: none !important;
}
.cid-ueSBh6kYqw .btn:hover {
  background: transparent !important;
}
.cid-ueSBh6kYqw .btn:hover:before {
  background: transparent !important;
}
.cid-ueSBh6kYqw .btn:before {
  background-color: transparent !important;
}
.cid-ueSBh6kYqw .btn:focus {
  box-shadow: none !important;
}
.cid-ueSBh6kYqw .mbr-section-title,
.cid-ueSBh6kYqw .mbr-gallery-filter ul {
  text-align: center;
}
.cid-ueSBh6RhZI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-ueSBh6RhZI .mbr-section-subtitle {
  color: #767676;
}
.cid-ueSBh8zPFF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-ueSBh8zPFF .mbr-text a {
  background-size: 100% 0%;
}
.cid-ueSBh8zPFF .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-ueSBh8zPFF .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svoGPnsd8w {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-svoGPnsd8w .mbr-text {
  text-align: left;
}
.cid-svoGPnMgC4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svoGPnMgC4 .mbr-text {
  color: #365c9a;
}
.cid-svoGPnYo0U {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-svoGPnYo0U .container-fluid {
  padding: 0 3rem;
}
.cid-svoGPnYo0U .image-block {
  margin: auto;
}
.cid-svoGPnYo0U .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-svoGPnYo0U .container-fluid {
    padding: 0 1rem;
  }
  .cid-svoGPnYo0U .image-block {
    width: 100% !important;
  }
}
.cid-svoGPojGeW {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svoGPojGeW .container-fluid {
  padding: 0 3rem;
}
.cid-svoGPojGeW .mbr-section-subtitle {
  color: #465052;
}
.cid-svoGPojGeW .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-svoGPojGeW .table-wrapper {
  margin: 0 auto;
}
.cid-svoGPojGeW table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-svoGPojGeW table thead tr {
  border: none !important;
}
.cid-svoGPojGeW table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-svoGPojGeW table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-svoGPojGeW table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-svoGPojGeW table.table {
  background: #f9f9f9;
}
.cid-svoGPojGeW tr:hover {
  background-color: #efefef !important;
}
.cid-svoGPojGeW .head-item:after,
.cid-svoGPojGeW .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-svoGPojGeW table th,
  .cid-svoGPojGeW table td {
    padding: .75rem;
  }
}
.cid-svoGPojGeW .body-item {
  text-align: left;
}
.cid-svoGPojGeW .head-item {
  color: #000000;
  text-align: center;
}
.cid-svoGPojGeW .mbr-section-title,
.cid-svoGPojGeW .underline {
  color: #365c9a;
}
.cid-svoGPojGeW .mbr-text {
  color: #92b5d5;
}
.cid-svoGPp4EsR {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-svoGPp4EsR .container-fluid {
  padding: 0 3rem;
}
.cid-svoGPp4EsR .mbr-section-subtitle {
  color: #465052;
}
.cid-svoGPp4EsR .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-svoGPp4EsR .table-wrapper {
  margin: 0 auto;
}
.cid-svoGPp4EsR table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-svoGPp4EsR table thead tr {
  border: none !important;
}
.cid-svoGPp4EsR table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-svoGPp4EsR table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-svoGPp4EsR table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-svoGPp4EsR table.table {
  background: #f9f9f9;
}
.cid-svoGPp4EsR tr:hover {
  background-color: #efefef !important;
}
.cid-svoGPp4EsR .head-item:after,
.cid-svoGPp4EsR .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-svoGPp4EsR table th,
  .cid-svoGPp4EsR table td {
    padding: .75rem;
  }
}
.cid-svoGPp4EsR .body-item {
  text-align: left;
}
.cid-svoGPp4EsR .head-item {
  color: #000000;
  text-align: center;
}
.cid-svoGPp4EsR .mbr-section-title,
.cid-svoGPp4EsR .underline {
  color: #365c9a;
}
.cid-svoGPp4EsR .mbr-text {
  color: #92b5d5;
}
.cid-svoGPpTmMA {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-svoGPpTmMA .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svoGPpTmMA .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL0YX87feG {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rL0YX87feG .mbr-text {
  text-align: left;
}
.cid-rL0YX9q63d {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL0YX9q63d .mbr-text {
  color: #365c9a;
}
.cid-rL0YXa58BT {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-rL0YXa58BT .container-fluid {
  padding: 0 3rem;
}
.cid-rL0YXa58BT .image-block {
  margin: auto;
}
.cid-rL0YXa58BT .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rL0YXa58BT .container-fluid {
    padding: 0 1rem;
  }
  .cid-rL0YXa58BT .image-block {
    width: 100% !important;
  }
}
.cid-rL0YXaWMug {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rL0YXaWMug .container-fluid {
  padding: 0 3rem;
}
.cid-rL0YXaWMug .mbr-section-subtitle {
  color: #465052;
}
.cid-rL0YXaWMug .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL0YXaWMug .table-wrapper {
  margin: 0 auto;
}
.cid-rL0YXaWMug table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL0YXaWMug table thead tr {
  border: none !important;
}
.cid-rL0YXaWMug table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL0YXaWMug table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rL0YXaWMug table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL0YXaWMug table.table {
  background: #f9f9f9;
}
.cid-rL0YXaWMug tr:hover {
  background-color: #efefef !important;
}
.cid-rL0YXaWMug .head-item:after,
.cid-rL0YXaWMug .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL0YXaWMug table th,
  .cid-rL0YXaWMug table td {
    padding: .75rem;
  }
}
.cid-rL0YXaWMug .body-item {
  text-align: left;
}
.cid-rL0YXaWMug .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL0YXaWMug .mbr-section-title,
.cid-rL0YXaWMug .underline {
  color: #365c9a;
}
.cid-rL0YXaWMug .mbr-text {
  color: #92b5d5;
}
.cid-rL0YXdh0eT {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rL0YXdh0eT .container-fluid {
  padding: 0 3rem;
}
.cid-rL0YXdh0eT .mbr-section-subtitle {
  color: #465052;
}
.cid-rL0YXdh0eT .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rL0YXdh0eT .table-wrapper {
  margin: 0 auto;
}
.cid-rL0YXdh0eT table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rL0YXdh0eT table thead tr {
  border: none !important;
}
.cid-rL0YXdh0eT table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-rL0YXdh0eT table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rL0YXdh0eT table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rL0YXdh0eT table.table {
  background: #f9f9f9;
}
.cid-rL0YXdh0eT tr:hover {
  background-color: #efefef !important;
}
.cid-rL0YXdh0eT .head-item:after,
.cid-rL0YXdh0eT .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rL0YXdh0eT table th,
  .cid-rL0YXdh0eT table td {
    padding: .75rem;
  }
}
.cid-rL0YXdh0eT .body-item {
  text-align: left;
}
.cid-rL0YXdh0eT .head-item {
  color: #000000;
  text-align: center;
}
.cid-rL0YXdh0eT .mbr-section-title,
.cid-rL0YXdh0eT .underline {
  color: #365c9a;
}
.cid-rL0YXdh0eT .mbr-text {
  color: #92b5d5;
}
.cid-rL0YXfFQUN {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL0YXfFQUN .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rL0YXfFQUN .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t0jR9mFr9o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-t0jR9mFr9o .mbr-text a {
  background-size: 100% 0%;
}
.cid-t0jR9mFr9o .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-t0jR9mFr9o .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uUeB9qPKdX .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;
}
.cid-uUeB9qPKdX .nav-item,
.cid-uUeB9qPKdX .nav-link,
.cid-uUeB9qPKdX .navbar-caption {
  font-weight: normal;
}
.cid-uUeB9qPKdX .nav-item:focus,
.cid-uUeB9qPKdX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uUeB9qPKdX .dropdown .dropdown-menu .dropdown-item .soc-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-uUeB9qPKdX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUeB9qPKdX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUeB9qPKdX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uUeB9qPKdX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uUeB9qPKdX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUeB9qPKdX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUeB9qPKdX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uUeB9qPKdX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUeB9qPKdX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUeB9qPKdX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUeB9qPKdX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUeB9qPKdX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uUeB9qPKdX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUeB9qPKdX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUeB9qPKdX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUeB9qPKdX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uUeB9qPKdX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uUeB9qPKdX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUeB9qPKdX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUeB9qPKdX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUeB9qPKdX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUeB9qPKdX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUeB9qPKdX .dropdown-item.active,
.cid-uUeB9qPKdX .dropdown-item:active {
  background-color: transparent;
}
.cid-uUeB9qPKdX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUeB9qPKdX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUeB9qPKdX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUeB9qPKdX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUeB9qPKdX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUeB9qPKdX .navbar-buttons {
  text-align: center;
}
.cid-uUeB9qPKdX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUeB9qPKdX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUeB9qPKdX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUeB9qPKdX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUeB9qPKdX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uUeB9qPKdX .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uUeB9qPKdX .soc-item {
  margin: .5rem .3rem;
}
.cid-uUeB9qPKdX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link,
.cid-uUeB9qPKdX a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uUeB9qPKdX a.nav-link .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uUeB9qPKdX a.nav-link:hover .mbr-iconfont-btn,
.cid-uUeB9qPKdX a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uUeB9qPKdX a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUeB9qPKdX .navbar {
    height: 77px;
  }
  .cid-uUeB9qPKdX .navbar.opened {
    height: auto;
  }
  .cid-uUeB9qPKdX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxq4hQIVsn {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-uxq4hQIVsn .mbr-text {
  text-align: left;
}
.cid-uxq4hQWbAy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxq4hQWbAy .mbr-text {
  color: #365c9a;
}
.cid-uxq4hR876E {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-uxq4hR876E .container-fluid {
  padding: 0 3rem;
}
.cid-uxq4hR876E .image-block {
  margin: auto;
}
.cid-uxq4hR876E .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uxq4hR876E .container-fluid {
    padding: 0 1rem;
  }
  .cid-uxq4hR876E .image-block {
    width: 100% !important;
  }
}
.cid-uxq4hRnXEB {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxq4hRnXEB .container-fluid {
  padding: 0 3rem;
}
.cid-uxq4hRnXEB .mbr-section-subtitle {
  color: #465052;
}
.cid-uxq4hRnXEB .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uxq4hRnXEB .table-wrapper {
  margin: 0 auto;
}
.cid-uxq4hRnXEB table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uxq4hRnXEB table thead tr {
  border: none !important;
}
.cid-uxq4hRnXEB table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-uxq4hRnXEB table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-uxq4hRnXEB table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-uxq4hRnXEB table.table {
  background: #f9f9f9;
}
.cid-uxq4hRnXEB tr:hover {
  background-color: #efefef !important;
}
.cid-uxq4hRnXEB .head-item:after,
.cid-uxq4hRnXEB .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-uxq4hRnXEB table th,
  .cid-uxq4hRnXEB table td {
    padding: .75rem;
  }
}
.cid-uxq4hRnXEB .body-item {
  text-align: left;
}
.cid-uxq4hRnXEB .head-item {
  color: #000000;
  text-align: left;
}
.cid-uxq4hRnXEB .mbr-section-title,
.cid-uxq4hRnXEB .underline {
  color: #365c9a;
}
.cid-uxq4hRnXEB .mbr-text {
  color: #92b5d5;
}
.cid-uxq4hRUd8U {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-uxq4hRUd8U .container-fluid {
  padding: 0 3rem;
}
.cid-uxq4hRUd8U .mbr-section-subtitle {
  color: #465052;
}
.cid-uxq4hRUd8U .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uxq4hRUd8U .table-wrapper {
  margin: 0 auto;
}
.cid-uxq4hRUd8U table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uxq4hRUd8U table thead tr {
  border: none !important;
}
.cid-uxq4hRUd8U table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
  background: #f9f9f9;
}
.cid-uxq4hRUd8U table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-uxq4hRUd8U table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-uxq4hRUd8U table.table {
  background: #f9f9f9;
}
.cid-uxq4hRUd8U tr:hover {
  background-color: #efefef !important;
}
.cid-uxq4hRUd8U .head-item:after,
.cid-uxq4hRUd8U .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-uxq4hRUd8U table th,
  .cid-uxq4hRUd8U table td {
    padding: .75rem;
  }
}
.cid-uxq4hRUd8U .body-item {
  text-align: left;
}
.cid-uxq4hRUd8U .head-item {
  color: #000000;
  text-align: left;
}
.cid-uxq4hRUd8U .mbr-section-title,
.cid-uxq4hRUd8U .underline {
  color: #365c9a;
}
.cid-uxq4hRUd8U .mbr-text {
  color: #92b5d5;
}
.cid-uxq4hSsGXw {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uxq4hSsGXw .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uxq4hSsGXw .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uxq4hSH45H {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #072250;
}
.cid-uxq4hSH45H .mbr-text a {
  background-size: 100% 0%;
}
.cid-uxq4hSH45H .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-uxq4hSH45H .media-container-row .mbr-text {
  color: #ffffff;
}
