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: 1rem;
}
.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.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((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: #efefef !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: #bf804a !important;
  border-color: #bf804a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8b5b31 !important;
  border-color: #8b5b31 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8b5b31 !important;
  border-color: #8b5b31 !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: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !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: #784f2b;
  color: #784f2b !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #bf804a;
  border-color: #bf804a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #bf804a !important;
  border-color: #bf804a !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: #bcbcbc;
  color: #bcbcbc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #707070 !important;
  background-color: #efefef;
  border-color: #efefef;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !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: #bf804a !important;
}
.text-success {
  color: #4e84c2 !important;
}
.text-info {
  color: #282828 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #efefef !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: #784f2b !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: #bcbcbc !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: #efefef;
}
.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: #ffffff !important;
  background: #bf804a !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-tOR2DOYH0Z .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-tOR2DOYH0Z .nav-item,
.cid-tOR2DOYH0Z .nav-link,
.cid-tOR2DOYH0Z .navbar-caption {
  font-weight: normal;
}
.cid-tOR2DOYH0Z .nav-item:focus,
.cid-tOR2DOYH0Z .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tOR2DOYH0Z .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOR2DOYH0Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOR2DOYH0Z .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tOR2DOYH0Z .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tOR2DOYH0Z .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tOR2DOYH0Z .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOR2DOYH0Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOR2DOYH0Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOR2DOYH0Z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tOR2DOYH0Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tOR2DOYH0Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOR2DOYH0Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOR2DOYH0Z .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-tOR2DOYH0Z .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOR2DOYH0Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOR2DOYH0Z .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tOR2DOYH0Z .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tOR2DOYH0Z .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tOR2DOYH0Z .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tOR2DOYH0Z .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOR2DOYH0Z .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOR2DOYH0Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOR2DOYH0Z .dropdown-item.active,
.cid-tOR2DOYH0Z .dropdown-item:active {
  background-color: transparent;
}
.cid-tOR2DOYH0Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOR2DOYH0Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOR2DOYH0Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOR2DOYH0Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tOR2DOYH0Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOR2DOYH0Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOR2DOYH0Z ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOR2DOYH0Z .navbar-buttons {
  text-align: center;
}
.cid-tOR2DOYH0Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOR2DOYH0Z .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tOR2DOYH0Z a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tOR2DOYH0Z .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tOR2DOYH0Z .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tOR2DOYH0Z .soc-item {
  margin: .5rem .3rem;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z a.nav-link,
.cid-tOR2DOYH0Z a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-tOR2DOYH0Z a.nav-link .mbr-iconfont-btn,
.cid-tOR2DOYH0Z a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-tOR2DOYH0Z a.nav-link:hover .mbr-iconfont-btn,
.cid-tOR2DOYH0Z a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-tOR2DOYH0Z a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOR2DOYH0Z .navbar {
    height: 77px;
  }
  .cid-tOR2DOYH0Z .navbar.opened {
    height: auto;
  }
  .cid-tOR2DOYH0Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t9vl3hVB5f {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-t9vl3hVB5f .mbr-section-subtitle {
  color: #767676;
}
.cid-t9vkZ6L72Z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-t9vkZ6L72Z .mbr-section-subtitle {
  color: #767676;
}
.cid-sLauY7GRgQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-sLauY7GRgQ .mbr-section-subtitle {
  color: #767676;
}
.cid-t9vn0n5TXm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-t9vn0n5TXm .mbr-section-subtitle {
  color: #767676;
}
.cid-t9vmHtUNz4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-t9vmHtUNz4 .mbr-section-subtitle {
  color: #767676;
}
.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-zjXVtud5f0 .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-zjXVtud5f0 .icon-bar a:hover {
  background-color: #ff0040;
  width: 100px;
}
.cid-zjXVtud5f0 .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 2px;
  border-radius: 14px;
}
.cid-zjXVtud5f0 .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-zjXVtud5f0 .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-zjXVtud5f0 .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-zjXVtud5f0 .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-zjXVtud5f0 .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-zjXVtud5f0 .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-zjXVtud5f0 .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-zjXVtud5f0 .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-zjXVtud5f0 .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-zjXVtud5f0 .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-zjXVtud5f0 .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-zjXVtud5f0 .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-zjXVtud5f0 P {
  color: #4e84c2;
}
.cid-zjXVtud5f0 DIV {
  color: #ffffff;
}
.cid-zjXVtud5f0 H10 {
  color: #767676;
}
.cid-zjXVtud5f0 .hidden {
  display: none;
}
.cid-zjXVtud5f0 p {
  color: #ecf0f1;
  line-height: 28px;
  font-size: 15px;
  padding-top: 50px;
}
.cid-zjXVtud5f0 .sticky-container {
  z-index: 1001;
  padding: 0px;
  margin: 0px;
  position: fixed;
  Right: -119px;
  top: 145px;
  width: 196px;
}
.cid-zjXVtud5f0 .sticky li {
  list-style-type: none;
  background-color: #011953;
  color: #efefef;
  height: 43px;
  padding: 0px;
  margin: 0px 0px 1px 0px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.cid-zjXVtud5f0 .sticky li:hover {
  margin-left: -100px;
}
.cid-zjXVtud5f0 .sticky li img {
  float: left;
  margin: 5px 5px;
  margin-right: 10px;
}
.cid-zjXVtud5f0 .sticky li p {
  padding: 0px;
  margin: 0px;
  line-height: 43px;
}
.cid-zjXVtud5f0 div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tOGPDG1bRk {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tOGPDG1bRk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOGPDG1bRk .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-tOGPDG1bRk .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-tOGPDG1bRk img {
  border-radius: 1rem;
}
.cid-tOGPDG1bRk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOGPDG1bRk .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tOGPDG1bRk .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tOGPDG1bRk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tOGPDG1bRk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tOGPDG1bRk .mbr-section-subtitle,
.cid-tOGPDG1bRk .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-tOGPDG1bRk .mbr-text,
.cid-tOGPDG1bRk .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .nav-item,
.cid-tOR2DOYH0Z .nav-link,
.cid-tOR2DOYH0Z .navbar-caption {
  font-weight: normal;
}
.cid-tOR2DOYH0Z .nav-item:focus,
.cid-tOR2DOYH0Z .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tOR2DOYH0Z .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOR2DOYH0Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOR2DOYH0Z .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tOR2DOYH0Z .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tOR2DOYH0Z .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tOR2DOYH0Z .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOR2DOYH0Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOR2DOYH0Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOR2DOYH0Z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tOR2DOYH0Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tOR2DOYH0Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOR2DOYH0Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOR2DOYH0Z .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-tOR2DOYH0Z .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOR2DOYH0Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOR2DOYH0Z .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tOR2DOYH0Z .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tOR2DOYH0Z .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tOR2DOYH0Z .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tOR2DOYH0Z .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOR2DOYH0Z .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOR2DOYH0Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOR2DOYH0Z .dropdown-item.active,
.cid-tOR2DOYH0Z .dropdown-item:active {
  background-color: transparent;
}
.cid-tOR2DOYH0Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOR2DOYH0Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOR2DOYH0Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOR2DOYH0Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tOR2DOYH0Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOR2DOYH0Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOR2DOYH0Z ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOR2DOYH0Z .navbar-buttons {
  text-align: center;
}
.cid-tOR2DOYH0Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOR2DOYH0Z .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tOR2DOYH0Z a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tOR2DOYH0Z .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tOR2DOYH0Z .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tOR2DOYH0Z .soc-item {
  margin: .5rem .3rem;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z a.nav-link,
.cid-tOR2DOYH0Z a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-tOR2DOYH0Z a.nav-link .mbr-iconfont-btn,
.cid-tOR2DOYH0Z a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-tOR2DOYH0Z a.nav-link:hover .mbr-iconfont-btn,
.cid-tOR2DOYH0Z a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-tOR2DOYH0Z a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOR2DOYH0Z .navbar {
    height: 77px;
  }
  .cid-tOR2DOYH0Z .navbar.opened {
    height: auto;
  }
  .cid-tOR2DOYH0Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ty17cwTijz {
  padding-top: 5rem;
  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;
  text-align: center;
}
.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-tFEMZBuSot {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8eff9;
}
.cid-tFEMZBuSot .mbr-section-title {
  text-align: left;
  color: #365c9a;
}
.cid-tFEMZBuSot .mbr-text,
.cid-tFEMZBuSot .mbr-section-btn {
  text-align: left;
  color: #212529;
}
.cid-tFEMZBuSot .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-tGH0idv6fW .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tGH0idv6fW .icon-bar a:hover {
  background-color: #ff0040;
  width: 100px;
}
.cid-tGH0idv6fW .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 2px;
  border-radius: 14px;
}
.cid-tGH0idv6fW .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tGH0idv6fW .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tGH0idv6fW .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tGH0idv6fW .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tGH0idv6fW .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tGH0idv6fW .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tGH0idv6fW .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tGH0idv6fW .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tGH0idv6fW .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tGH0idv6fW .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tGH0idv6fW .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tGH0idv6fW .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tGH0idv6fW P {
  color: #4e84c2;
}
.cid-tGH0idv6fW DIV {
  color: #ffffff;
}
.cid-tGH0idv6fW H10 {
  color: #767676;
}
.cid-tGH0idv6fW .hidden {
  display: none;
}
.cid-tGH0idv6fW p {
  color: #ecf0f1;
  line-height: 28px;
  font-size: 15px;
  padding-top: 50px;
}
.cid-tGH0idv6fW .sticky-container {
  z-index: 1001;
  padding: 0px;
  margin: 0px;
  position: fixed;
  Right: -119px;
  top: 275px;
  width: 203px;
}
.cid-tGH0idv6fW .sticky li {
  list-style-type: none;
  background-color: #011953;
  color: #efefef;
  height: 43px;
  padding: 0px;
  margin: 0px 0px 1px 0px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.cid-tGH0idv6fW .sticky li:hover {
  margin-left: -100px;
}
.cid-tGH0idv6fW .sticky li img {
  float: left;
  margin: 5px 5px;
  margin-right: 10px;
}
.cid-tGH0idv6fW .sticky li p {
  padding: 0px;
  margin: 0px;
  line-height: 43px;
}
.cid-tGH0idv6fW div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tGG3ET4rTp {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tGG3ET4rTp .mbr-section-subtitle {
  color: #767676;
}
.cid-tGG3ET4rTp .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tGG3ET4rTp .table-wrapper {
  margin: 0 auto;
}
.cid-tGG3ET4rTp table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tGG3ET4rTp table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #fac769;
  color: white;
  vertical-align: middle;
}
.cid-tGG3ET4rTp table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tGG3ET4rTp .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tGG3ET4rTp .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tGG3ET4rTp .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tGG3ET4rTp .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tGG3ET4rTp .dataTables_wrapper {
  display: block;
}
.cid-tGG3ET4rTp .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tGG3ET4rTp .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tGG3ET4rTp .head-item:after,
.cid-tGG3ET4rTp .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tGG3ET4rTp .dataTables_filter {
    text-align: center;
  }
  .cid-tGG3ET4rTp .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tGG3ET4rTp .dataTables_filter {
    text-align: center;
  }
  .cid-tGG3ET4rTp .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tGG3ET4rTp table th,
  .cid-tGG3ET4rTp table td {
    padding: .75rem;
  }
}
.cid-tGG3ET4rTp .body-item {
  text-align: left;
}
.cid-tGG3ET4rTp .head-item {
  text-align: center;
  color: #465052;
}
.cid-tBjGa6jdXG {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tBjGa6jdXG .mbr-section-subtitle {
  color: #767676;
}
.cid-tGFIdkqh1n {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tGFIdkqh1n .mbr-section-subtitle {
  color: #767676;
}
.cid-tGFIdkqh1n .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tGFIdkqh1n .table-wrapper {
  margin: 0 auto;
}
.cid-tGFIdkqh1n table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tGFIdkqh1n table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #92b5d5;
  color: white;
  vertical-align: middle;
}
.cid-tGFIdkqh1n table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tGFIdkqh1n .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tGFIdkqh1n .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tGFIdkqh1n .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tGFIdkqh1n .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tGFIdkqh1n .dataTables_wrapper {
  display: block;
}
.cid-tGFIdkqh1n .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tGFIdkqh1n .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tGFIdkqh1n .head-item:after,
.cid-tGFIdkqh1n .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tGFIdkqh1n .dataTables_filter {
    text-align: center;
  }
  .cid-tGFIdkqh1n .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tGFIdkqh1n .dataTables_filter {
    text-align: center;
  }
  .cid-tGFIdkqh1n .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tGFIdkqh1n table th,
  .cid-tGFIdkqh1n table td {
    padding: .75rem;
  }
}
.cid-tGFIdkqh1n .body-item {
  text-align: left;
}
.cid-tGFIdkqh1n .head-item {
  text-align: center;
}
.cid-tGG3HTO4l6 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tGG3HTO4l6 .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-tGZ23yMgcl {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGZ23yMgcl .card {
  display: block;
  position: relative;
}
.cid-tGZ23yMgcl .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tGZ23yMgcl .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tGZ23yMgcl .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tGZ23yMgcl .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-tGZ23yMgcl .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tGZ23yMgcl .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tGZ23yMgcl .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tGZ23yMgcl .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tGZ23yMgcl .mbr-card-text,
.cid-tGZ23yMgcl .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tGSX0wvqrJ {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGSX0wvqrJ .card {
  display: block;
  position: relative;
}
.cid-tGSX0wvqrJ .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tGSX0wvqrJ .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tGSX0wvqrJ .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tGSX0wvqrJ .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-tGSX0wvqrJ .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tGSX0wvqrJ .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tGSX0wvqrJ .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tGSX0wvqrJ .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tGSX0wvqrJ .mbr-card-text,
.cid-tGSX0wvqrJ .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tGH3CFtpJy {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGH3CFtpJy .card {
  display: block;
  position: relative;
}
.cid-tGH3CFtpJy .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tGH3CFtpJy .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tGH3CFtpJy .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tGH3CFtpJy .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-tGH3CFtpJy .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tGH3CFtpJy .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tGH3CFtpJy .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tGH3CFtpJy .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tGH3CFtpJy .mbr-card-text,
.cid-tGH3CFtpJy .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tGB5fPxOtK {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGB5fPxOtK .card {
  display: block;
  position: relative;
}
.cid-tGB5fPxOtK .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tGB5fPxOtK .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tGB5fPxOtK .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tGB5fPxOtK .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-tGB5fPxOtK .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tGB5fPxOtK .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tGB5fPxOtK .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tGB5fPxOtK .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tGB5fPxOtK .mbr-card-text,
.cid-tGB5fPxOtK .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tGvErJwpuo {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGvErJwpuo .card {
  display: block;
  position: relative;
}
.cid-tGvErJwpuo .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tGvErJwpuo .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tGvErJwpuo .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tGvErJwpuo .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-tGvErJwpuo .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tGvErJwpuo .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tGvErJwpuo .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tGvErJwpuo .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tGvErJwpuo .mbr-card-text,
.cid-tGvErJwpuo .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tGpL5Oauew {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGpL5Oauew .card {
  display: block;
  position: relative;
}
.cid-tGpL5Oauew .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tGpL5Oauew .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tGpL5Oauew .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tGpL5Oauew .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-tGpL5Oauew .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tGpL5Oauew .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tGpL5Oauew .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tGpL5Oauew .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tGpL5Oauew .mbr-card-text,
.cid-tGpL5Oauew .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tGjH5SftA7 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGjH5SftA7 .card {
  display: block;
  position: relative;
}
.cid-tGjH5SftA7 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tGjH5SftA7 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tGjH5SftA7 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tGjH5SftA7 .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-tGjH5SftA7 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tGjH5SftA7 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tGjH5SftA7 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tGjH5SftA7 .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tGjH5SftA7 .mbr-card-text,
.cid-tGjH5SftA7 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tGjFkUTi6Z {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGjFkUTi6Z .card {
  display: block;
  position: relative;
}
.cid-tGjFkUTi6Z .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tGjFkUTi6Z .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tGjFkUTi6Z .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tGjFkUTi6Z .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-tGjFkUTi6Z .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tGjFkUTi6Z .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tGjFkUTi6Z .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tGjFkUTi6Z .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tGjFkUTi6Z .mbr-card-text,
.cid-tGjFkUTi6Z .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tGjDt5jIcb {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGjDt5jIcb .card {
  display: block;
  position: relative;
}
.cid-tGjDt5jIcb .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tGjDt5jIcb .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tGjDt5jIcb .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tGjDt5jIcb .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-tGjDt5jIcb .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tGjDt5jIcb .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tGjDt5jIcb .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tGjDt5jIcb .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tGjDt5jIcb .mbr-card-text,
.cid-tGjDt5jIcb .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tGdJDNHjSV {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGdJDNHjSV .card {
  display: block;
  position: relative;
}
.cid-tGdJDNHjSV .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tGdJDNHjSV .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tGdJDNHjSV .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tGdJDNHjSV .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-tGdJDNHjSV .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tGdJDNHjSV .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tGdJDNHjSV .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tGdJDNHjSV .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tGdJDNHjSV .mbr-card-text,
.cid-tGdJDNHjSV .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tG6kq9BgIH {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tG6kq9BgIH .card {
  display: block;
  position: relative;
}
.cid-tG6kq9BgIH .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tG6kq9BgIH .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tG6kq9BgIH .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tG6kq9BgIH .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-tG6kq9BgIH .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tG6kq9BgIH .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tG6kq9BgIH .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tG6kq9BgIH .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tG6kq9BgIH .mbr-card-text,
.cid-tG6kq9BgIH .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tFFciUcub9 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tFFciUcub9 .card {
  display: block;
  position: relative;
}
.cid-tFFciUcub9 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tFFciUcub9 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tFFciUcub9 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tFFciUcub9 .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-tFFciUcub9 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tFFciUcub9 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tFFciUcub9 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tFFciUcub9 .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tFFciUcub9 .mbr-card-text,
.cid-tFFciUcub9 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tE8rdmwlmT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE8rdmwlmT .card {
  display: block;
  position: relative;
}
.cid-tE8rdmwlmT .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tE8rdmwlmT .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tE8rdmwlmT .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tE8rdmwlmT .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-tE8rdmwlmT .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tE8rdmwlmT .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tE8rdmwlmT .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tE8rdmwlmT .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tE8rdmwlmT .mbr-card-text,
.cid-tE8rdmwlmT .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tE3koSKkHB {
  padding-top: 0px;
  padding-bottom: 0px;
  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-tH4QY5IwxF .divider-top {
  position: relative;
  padding: 2.5em;
  background: #f6f6f6;
}
.cid-tH4QY5IwxF .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #ffffff;
}
.cid-tH4QY5IwxF .divider-top::before,
.cid-tH4QY5IwxF .divider-bottom::before,
.cid-tH4QY5IwxF .divider-top::after,
.cid-tH4QY5IwxF .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-tH4QY5IwxF .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-tH4QY5IwxF .divider-triangles::before {
  top: -50px;
}
.cid-tH4QY5IwxF .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-tH4QY5IwxF .divider-halfcircle::before {
  top: -50px;
}
.cid-tH4QY5IwxF .divider-multitriangles::before,
.cid-tH4QY5IwxF .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-tH4QY5IwxF .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #f6f6f6, 50px -50px 0 #f6f6f6;
}
.cid-tE3k2q770v {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE3k2q770v .mbr-section-subtitle {
  color: #767676;
}
.cid-tE3k2q770v H2 {
  color: #365c9a;
}
.cid-tNgFpXyvOS {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tNgFpXyvOS .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tNgFpXyvOS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tNgFpXyvOS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNgFpXyvOS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNgFpXyvOS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tNgFpXyvOS .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-tNgFpXyvOS .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tNgFpXyvOS .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-tNgFpXyvOS .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tNgFpXyvOS .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-tNgFpXyvOS .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-tNgFpXyvOS ul {
  font-size: 0;
}
.cid-tNgFpXyvOS .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tNgFpXyvOS .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-tNgFpXyvOS .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tNgFpXyvOS .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tNgFpXyvOS .mbr-gallery-filter ul li:first-child,
.cid-tNgFpXyvOS .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tNgFpXyvOS .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tNgFpXyvOS .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tNgFpXyvOS .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tNgFpXyvOS .btn.active:after {
  animation: none;
}
.cid-tNgFpXyvOS .btn:active {
  box-shadow: none !important;
}
.cid-tNgFpXyvOS .btn:hover {
  background: transparent !important;
}
.cid-tNgFpXyvOS .btn:hover:before {
  background: transparent !important;
}
.cid-tNgFpXyvOS .btn:before {
  background-color: transparent !important;
}
.cid-tNgFpXyvOS .btn:focus {
  box-shadow: none !important;
}
.cid-tNgFpXyvOS .mbr-section-title,
.cid-tNgFpXyvOS .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tNgFpXyvOS .mbr-section-title,
.cid-tNgFpXyvOS .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tNgFsPZ67q {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tNgFsPZ67q .mbr-section-subtitle {
  color: #767676;
}
.cid-tGZ0GEVlt5 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGZ0GEVlt5 .mbr-text {
  text-align: left;
}
.cid-tGZ0F0LZbt {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGZ0F0LZbt .mbr-text {
  text-align: left;
}
.cid-tGZ0D4ysrh {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tGZ0D4ysrh .mbr-section-subtitle {
  color: #767676;
}
.cid-tGZ0D4ysrh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGZ0D4ysrh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGZ0D4ysrh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGZ0D4ysrh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGZ0D4ysrh .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-tGZ0D4ysrh .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGZ0D4ysrh .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-tGZ0D4ysrh .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGZ0D4ysrh .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-tGZ0D4ysrh .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-tGZ0D4ysrh ul {
  font-size: 0;
}
.cid-tGZ0D4ysrh .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGZ0D4ysrh .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-tGZ0D4ysrh .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tGZ0D4ysrh .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tGZ0D4ysrh .mbr-gallery-filter ul li:first-child,
.cid-tGZ0D4ysrh .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tGZ0D4ysrh .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tGZ0D4ysrh .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tGZ0D4ysrh .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tGZ0D4ysrh .btn.active:after {
  animation: none;
}
.cid-tGZ0D4ysrh .btn:active {
  box-shadow: none !important;
}
.cid-tGZ0D4ysrh .btn:hover {
  background: transparent !important;
}
.cid-tGZ0D4ysrh .btn:hover:before {
  background: transparent !important;
}
.cid-tGZ0D4ysrh .btn:before {
  background-color: transparent !important;
}
.cid-tGZ0D4ysrh .btn:focus {
  box-shadow: none !important;
}
.cid-tGZ0D4ysrh .mbr-section-title,
.cid-tGZ0D4ysrh .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGZ1CL56YG {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tGZ1CL56YG .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYZpgyJZX {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYZpgyJZX .mbr-text {
  text-align: left;
}
.cid-tGYZnbITmc {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYZnbITmc .mbr-text {
  text-align: left;
}
.cid-tGYZkq90g3 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tGYZkq90g3 .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYZkq90g3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGYZkq90g3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGYZkq90g3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGYZkq90g3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGYZkq90g3 .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-tGYZkq90g3 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYZkq90g3 .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-tGYZkq90g3 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYZkq90g3 .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-tGYZkq90g3 .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-tGYZkq90g3 ul {
  font-size: 0;
}
.cid-tGYZkq90g3 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGYZkq90g3 .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-tGYZkq90g3 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tGYZkq90g3 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tGYZkq90g3 .mbr-gallery-filter ul li:first-child,
.cid-tGYZkq90g3 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tGYZkq90g3 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tGYZkq90g3 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tGYZkq90g3 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tGYZkq90g3 .btn.active:after {
  animation: none;
}
.cid-tGYZkq90g3 .btn:active {
  box-shadow: none !important;
}
.cid-tGYZkq90g3 .btn:hover {
  background: transparent !important;
}
.cid-tGYZkq90g3 .btn:hover:before {
  background: transparent !important;
}
.cid-tGYZkq90g3 .btn:before {
  background-color: transparent !important;
}
.cid-tGYZkq90g3 .btn:focus {
  box-shadow: none !important;
}
.cid-tGYZkq90g3 .mbr-section-title,
.cid-tGYZkq90g3 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGZ1AsqzbD {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tGZ1AsqzbD .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYXiaYY1N {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYXiaYY1N .mbr-text {
  text-align: left;
}
.cid-tGYXgDKrdG {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYXgDKrdG .mbr-text {
  text-align: left;
}
.cid-tGYXerm7v9 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tGYXerm7v9 .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYXerm7v9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGYXerm7v9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGYXerm7v9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGYXerm7v9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGYXerm7v9 .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-tGYXerm7v9 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYXerm7v9 .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-tGYXerm7v9 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYXerm7v9 .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-tGYXerm7v9 .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-tGYXerm7v9 ul {
  font-size: 0;
}
.cid-tGYXerm7v9 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGYXerm7v9 .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-tGYXerm7v9 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tGYXerm7v9 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tGYXerm7v9 .mbr-gallery-filter ul li:first-child,
.cid-tGYXerm7v9 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tGYXerm7v9 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tGYXerm7v9 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tGYXerm7v9 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tGYXerm7v9 .btn.active:after {
  animation: none;
}
.cid-tGYXerm7v9 .btn:active {
  box-shadow: none !important;
}
.cid-tGYXerm7v9 .btn:hover {
  background: transparent !important;
}
.cid-tGYXerm7v9 .btn:hover:before {
  background: transparent !important;
}
.cid-tGYXerm7v9 .btn:before {
  background-color: transparent !important;
}
.cid-tGYXerm7v9 .btn:focus {
  box-shadow: none !important;
}
.cid-tGYXerm7v9 .mbr-section-title,
.cid-tGYXerm7v9 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGYXjTi7HK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tGYXjTi7HK .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYWdMnsEu {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYWdMnsEu .mbr-text {
  text-align: left;
}
.cid-tGYWbSRAFC {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYWbSRAFC .mbr-text {
  text-align: left;
}
.cid-tGYW9e4whX {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tGYW9e4whX .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYW9e4whX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGYW9e4whX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGYW9e4whX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGYW9e4whX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGYW9e4whX .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-tGYW9e4whX .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYW9e4whX .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-tGYW9e4whX .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYW9e4whX .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-tGYW9e4whX .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-tGYW9e4whX ul {
  font-size: 0;
}
.cid-tGYW9e4whX .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGYW9e4whX .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-tGYW9e4whX .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tGYW9e4whX .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tGYW9e4whX .mbr-gallery-filter ul li:first-child,
.cid-tGYW9e4whX .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tGYW9e4whX .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tGYW9e4whX .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tGYW9e4whX .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tGYW9e4whX .btn.active:after {
  animation: none;
}
.cid-tGYW9e4whX .btn:active {
  box-shadow: none !important;
}
.cid-tGYW9e4whX .btn:hover {
  background: transparent !important;
}
.cid-tGYW9e4whX .btn:hover:before {
  background: transparent !important;
}
.cid-tGYW9e4whX .btn:before {
  background-color: transparent !important;
}
.cid-tGYW9e4whX .btn:focus {
  box-shadow: none !important;
}
.cid-tGYW9e4whX .mbr-section-title,
.cid-tGYW9e4whX .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGYWeXmKgC {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tGYWeXmKgC .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYSJbrZ2I {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYSJbrZ2I .mbr-text {
  text-align: left;
}
.cid-tGYSHmJzgu {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYSHmJzgu .mbr-text {
  text-align: left;
}
.cid-tGYSEdBSqJ {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tGYSEdBSqJ .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYSEdBSqJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGYSEdBSqJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGYSEdBSqJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGYSEdBSqJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGYSEdBSqJ .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-tGYSEdBSqJ .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYSEdBSqJ .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-tGYSEdBSqJ .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYSEdBSqJ .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-tGYSEdBSqJ .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-tGYSEdBSqJ ul {
  font-size: 0;
}
.cid-tGYSEdBSqJ .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGYSEdBSqJ .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-tGYSEdBSqJ .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tGYSEdBSqJ .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tGYSEdBSqJ .mbr-gallery-filter ul li:first-child,
.cid-tGYSEdBSqJ .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tGYSEdBSqJ .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tGYSEdBSqJ .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tGYSEdBSqJ .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tGYSEdBSqJ .btn.active:after {
  animation: none;
}
.cid-tGYSEdBSqJ .btn:active {
  box-shadow: none !important;
}
.cid-tGYSEdBSqJ .btn:hover {
  background: transparent !important;
}
.cid-tGYSEdBSqJ .btn:hover:before {
  background: transparent !important;
}
.cid-tGYSEdBSqJ .btn:before {
  background-color: transparent !important;
}
.cid-tGYSEdBSqJ .btn:focus {
  box-shadow: none !important;
}
.cid-tGYSEdBSqJ .mbr-section-title,
.cid-tGYSEdBSqJ .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGYSNxgVya {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tGYSNxgVya .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYRIVKFQH {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYRIVKFQH .mbr-text {
  text-align: left;
}
.cid-tGYRGzLQF5 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYRGzLQF5 .mbr-text {
  text-align: left;
}
.cid-tGYRDmWLB6 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tGYRDmWLB6 .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYRDmWLB6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGYRDmWLB6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGYRDmWLB6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGYRDmWLB6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGYRDmWLB6 .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-tGYRDmWLB6 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYRDmWLB6 .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-tGYRDmWLB6 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYRDmWLB6 .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-tGYRDmWLB6 .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-tGYRDmWLB6 ul {
  font-size: 0;
}
.cid-tGYRDmWLB6 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGYRDmWLB6 .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-tGYRDmWLB6 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tGYRDmWLB6 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tGYRDmWLB6 .mbr-gallery-filter ul li:first-child,
.cid-tGYRDmWLB6 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tGYRDmWLB6 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tGYRDmWLB6 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tGYRDmWLB6 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tGYRDmWLB6 .btn.active:after {
  animation: none;
}
.cid-tGYRDmWLB6 .btn:active {
  box-shadow: none !important;
}
.cid-tGYRDmWLB6 .btn:hover {
  background: transparent !important;
}
.cid-tGYRDmWLB6 .btn:hover:before {
  background: transparent !important;
}
.cid-tGYRDmWLB6 .btn:before {
  background-color: transparent !important;
}
.cid-tGYRDmWLB6 .btn:focus {
  box-shadow: none !important;
}
.cid-tGYRDmWLB6 .mbr-section-title,
.cid-tGYRDmWLB6 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGYRM232MM {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tGYRM232MM .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYrRG0DEc {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYrRG0DEc .mbr-text {
  text-align: left;
}
.cid-tGYrT1lY2w {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYrT1lY2w .mbr-text {
  text-align: left;
}
.cid-tGYrOdsgCU {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tGYrOdsgCU .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYrOdsgCU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGYrOdsgCU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGYrOdsgCU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGYrOdsgCU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGYrOdsgCU .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-tGYrOdsgCU .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYrOdsgCU .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-tGYrOdsgCU .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYrOdsgCU .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-tGYrOdsgCU .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-tGYrOdsgCU ul {
  font-size: 0;
}
.cid-tGYrOdsgCU .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGYrOdsgCU .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-tGYrOdsgCU .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tGYrOdsgCU .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tGYrOdsgCU .mbr-gallery-filter ul li:first-child,
.cid-tGYrOdsgCU .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tGYrOdsgCU .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tGYrOdsgCU .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tGYrOdsgCU .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tGYrOdsgCU .btn.active:after {
  animation: none;
}
.cid-tGYrOdsgCU .btn:active {
  box-shadow: none !important;
}
.cid-tGYrOdsgCU .btn:hover {
  background: transparent !important;
}
.cid-tGYrOdsgCU .btn:hover:before {
  background: transparent !important;
}
.cid-tGYrOdsgCU .btn:before {
  background-color: transparent !important;
}
.cid-tGYrOdsgCU .btn:focus {
  box-shadow: none !important;
}
.cid-tGYrOdsgCU .mbr-section-title,
.cid-tGYrOdsgCU .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGYrXLg3kW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tGYrXLg3kW .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYmza36ky {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYmza36ky .mbr-text {
  text-align: left;
}
.cid-tGYmAWuxpA {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYmAWuxpA .mbr-text {
  text-align: left;
}
.cid-tGYmtvrMJp {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tGYmtvrMJp .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYmtvrMJp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGYmtvrMJp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGYmtvrMJp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGYmtvrMJp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGYmtvrMJp .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-tGYmtvrMJp .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYmtvrMJp .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-tGYmtvrMJp .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYmtvrMJp .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-tGYmtvrMJp .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-tGYmtvrMJp ul {
  font-size: 0;
}
.cid-tGYmtvrMJp .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGYmtvrMJp .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-tGYmtvrMJp .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tGYmtvrMJp .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tGYmtvrMJp .mbr-gallery-filter ul li:first-child,
.cid-tGYmtvrMJp .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tGYmtvrMJp .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tGYmtvrMJp .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tGYmtvrMJp .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tGYmtvrMJp .btn.active:after {
  animation: none;
}
.cid-tGYmtvrMJp .btn:active {
  box-shadow: none !important;
}
.cid-tGYmtvrMJp .btn:hover {
  background: transparent !important;
}
.cid-tGYmtvrMJp .btn:hover:before {
  background: transparent !important;
}
.cid-tGYmtvrMJp .btn:before {
  background-color: transparent !important;
}
.cid-tGYmtvrMJp .btn:focus {
  box-shadow: none !important;
}
.cid-tGYmtvrMJp .mbr-section-title,
.cid-tGYmtvrMJp .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGYmvDAssD {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tGYmvDAssD .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYlxQHszc {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYlxQHszc .mbr-text {
  text-align: left;
}
.cid-tGYlnFKlx1 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGYlnFKlx1 .mbr-text {
  text-align: left;
}
.cid-tGYkAxfwQZ {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tGYkAxfwQZ .mbr-section-subtitle {
  color: #767676;
}
.cid-tGYkAxfwQZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGYkAxfwQZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGYkAxfwQZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGYkAxfwQZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGYkAxfwQZ .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-tGYkAxfwQZ .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYkAxfwQZ .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-tGYkAxfwQZ .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tGYkAxfwQZ .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-tGYkAxfwQZ .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-tGYkAxfwQZ ul {
  font-size: 0;
}
.cid-tGYkAxfwQZ .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGYkAxfwQZ .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-tGYkAxfwQZ .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tGYkAxfwQZ .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tGYkAxfwQZ .mbr-gallery-filter ul li:first-child,
.cid-tGYkAxfwQZ .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tGYkAxfwQZ .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tGYkAxfwQZ .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tGYkAxfwQZ .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tGYkAxfwQZ .btn.active:after {
  animation: none;
}
.cid-tGYkAxfwQZ .btn:active {
  box-shadow: none !important;
}
.cid-tGYkAxfwQZ .btn:hover {
  background: transparent !important;
}
.cid-tGYkAxfwQZ .btn:hover:before {
  background: transparent !important;
}
.cid-tGYkAxfwQZ .btn:before {
  background-color: transparent !important;
}
.cid-tGYkAxfwQZ .btn:focus {
  box-shadow: none !important;
}
.cid-tGYkAxfwQZ .mbr-section-title,
.cid-tGYkAxfwQZ .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tGYkYZnLbr {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tGYkYZnLbr .mbr-section-subtitle {
  color: #767676;
}
.cid-tG6nnfHg2M {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tG6nnfHg2M .mbr-text {
  text-align: left;
}
.cid-tG6neH99d9 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tG6neH99d9 .mbr-text {
  text-align: left;
}
.cid-tG6nccx2lQ {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tG6nccx2lQ .mbr-section-subtitle {
  color: #767676;
}
.cid-tG6nccx2lQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tG6nccx2lQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tG6nccx2lQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tG6nccx2lQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tG6nccx2lQ .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-tG6nccx2lQ .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tG6nccx2lQ .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-tG6nccx2lQ .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tG6nccx2lQ .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-tG6nccx2lQ .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-tG6nccx2lQ ul {
  font-size: 0;
}
.cid-tG6nccx2lQ .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tG6nccx2lQ .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-tG6nccx2lQ .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tG6nccx2lQ .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tG6nccx2lQ .mbr-gallery-filter ul li:first-child,
.cid-tG6nccx2lQ .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tG6nccx2lQ .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tG6nccx2lQ .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tG6nccx2lQ .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tG6nccx2lQ .btn.active:after {
  animation: none;
}
.cid-tG6nccx2lQ .btn:active {
  box-shadow: none !important;
}
.cid-tG6nccx2lQ .btn:hover {
  background: transparent !important;
}
.cid-tG6nccx2lQ .btn:hover:before {
  background: transparent !important;
}
.cid-tG6nccx2lQ .btn:before {
  background-color: transparent !important;
}
.cid-tG6nccx2lQ .btn:focus {
  box-shadow: none !important;
}
.cid-tG6nccx2lQ .mbr-section-title,
.cid-tG6nccx2lQ .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tG6n4Zo5ua {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tG6n4Zo5ua .mbr-section-subtitle {
  color: #767676;
}
.cid-tG6hp1Vx39 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tG6hp1Vx39 .mbr-text {
  text-align: left;
}
.cid-tG6h2tkr2M {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tG6h2tkr2M .mbr-text {
  text-align: left;
}
.cid-tG6gXjJvPK {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tG6gXjJvPK .mbr-section-subtitle {
  color: #767676;
}
.cid-tG6gXjJvPK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tG6gXjJvPK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tG6gXjJvPK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tG6gXjJvPK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tG6gXjJvPK .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-tG6gXjJvPK .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tG6gXjJvPK .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-tG6gXjJvPK .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tG6gXjJvPK .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-tG6gXjJvPK .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-tG6gXjJvPK ul {
  font-size: 0;
}
.cid-tG6gXjJvPK .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tG6gXjJvPK .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-tG6gXjJvPK .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tG6gXjJvPK .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tG6gXjJvPK .mbr-gallery-filter ul li:first-child,
.cid-tG6gXjJvPK .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tG6gXjJvPK .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tG6gXjJvPK .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tG6gXjJvPK .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tG6gXjJvPK .btn.active:after {
  animation: none;
}
.cid-tG6gXjJvPK .btn:active {
  box-shadow: none !important;
}
.cid-tG6gXjJvPK .btn:hover {
  background: transparent !important;
}
.cid-tG6gXjJvPK .btn:hover:before {
  background: transparent !important;
}
.cid-tG6gXjJvPK .btn:before {
  background-color: transparent !important;
}
.cid-tG6gXjJvPK .btn:focus {
  box-shadow: none !important;
}
.cid-tG6gXjJvPK .mbr-section-title,
.cid-tG6gXjJvPK .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tG6gQE1jzW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tG6gQE1jzW .mbr-section-subtitle {
  color: #767676;
}
.cid-tH1KIwpKwC {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tH1KIwpKwC .mbr-text {
  text-align: left;
}
.cid-tH1KGluIJO {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tH1KGluIJO .mbr-text {
  text-align: left;
}
.cid-tH1KxpcI1k {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tH1KxpcI1k .mbr-section-subtitle {
  color: #767676;
}
.cid-tH1KxpcI1k .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tH1KxpcI1k .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tH1KxpcI1k .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tH1KxpcI1k .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tH1KxpcI1k .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-tH1KxpcI1k .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tH1KxpcI1k .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-tH1KxpcI1k .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tH1KxpcI1k .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-tH1KxpcI1k .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-tH1KxpcI1k ul {
  font-size: 0;
}
.cid-tH1KxpcI1k .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tH1KxpcI1k .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-tH1KxpcI1k .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tH1KxpcI1k .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tH1KxpcI1k .mbr-gallery-filter ul li:first-child,
.cid-tH1KxpcI1k .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tH1KxpcI1k .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tH1KxpcI1k .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tH1KxpcI1k .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tH1KxpcI1k .btn.active:after {
  animation: none;
}
.cid-tH1KxpcI1k .btn:active {
  box-shadow: none !important;
}
.cid-tH1KxpcI1k .btn:hover {
  background: transparent !important;
}
.cid-tH1KxpcI1k .btn:hover:before {
  background: transparent !important;
}
.cid-tH1KxpcI1k .btn:before {
  background-color: transparent !important;
}
.cid-tH1KxpcI1k .btn:focus {
  box-shadow: none !important;
}
.cid-tH1KxpcI1k .mbr-section-title,
.cid-tH1KxpcI1k .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tH1KC3ntEL {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tH1KC3ntEL .mbr-section-subtitle {
  color: #767676;
}
.cid-tFF0UN2BCf {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFF0UN2BCf .mbr-text {
  text-align: left;
}
.cid-tFF12yY020 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFF12yY020 .mbr-text {
  text-align: left;
}
.cid-tFF1d6N25Q {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tFF1d6N25Q .mbr-section-subtitle {
  color: #767676;
}
.cid-tFF1d6N25Q .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tFF1d6N25Q .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFF1d6N25Q .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFF1d6N25Q .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tFF1d6N25Q .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-tFF1d6N25Q .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tFF1d6N25Q .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-tFF1d6N25Q .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tFF1d6N25Q .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-tFF1d6N25Q .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-tFF1d6N25Q ul {
  font-size: 0;
}
.cid-tFF1d6N25Q .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tFF1d6N25Q .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-tFF1d6N25Q .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tFF1d6N25Q .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tFF1d6N25Q .mbr-gallery-filter ul li:first-child,
.cid-tFF1d6N25Q .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tFF1d6N25Q .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tFF1d6N25Q .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tFF1d6N25Q .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tFF1d6N25Q .btn.active:after {
  animation: none;
}
.cid-tFF1d6N25Q .btn:active {
  box-shadow: none !important;
}
.cid-tFF1d6N25Q .btn:hover {
  background: transparent !important;
}
.cid-tFF1d6N25Q .btn:hover:before {
  background: transparent !important;
}
.cid-tFF1d6N25Q .btn:before {
  background-color: transparent !important;
}
.cid-tFF1d6N25Q .btn:focus {
  box-shadow: none !important;
}
.cid-tFF1d6N25Q .mbr-section-title,
.cid-tFF1d6N25Q .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tFF1f67YOB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tFF1f67YOB .mbr-section-subtitle {
  color: #767676;
}
.cid-tEBlyorGMr {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tEBlyorGMr .mbr-text {
  text-align: left;
}
.cid-tEBlvfDJ69 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tEBlvfDJ69 .mbr-text {
  text-align: left;
}
.cid-tEBlsKKrDB {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tEBlsKKrDB .mbr-section-subtitle {
  color: #767676;
}
.cid-tEBlsKKrDB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tEBlsKKrDB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEBlsKKrDB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tEBlsKKrDB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tEBlsKKrDB .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-tEBlsKKrDB .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tEBlsKKrDB .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-tEBlsKKrDB .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tEBlsKKrDB .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-tEBlsKKrDB .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-tEBlsKKrDB ul {
  font-size: 0;
}
.cid-tEBlsKKrDB .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tEBlsKKrDB .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-tEBlsKKrDB .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tEBlsKKrDB .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tEBlsKKrDB .mbr-gallery-filter ul li:first-child,
.cid-tEBlsKKrDB .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tEBlsKKrDB .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tEBlsKKrDB .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tEBlsKKrDB .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tEBlsKKrDB .btn.active:after {
  animation: none;
}
.cid-tEBlsKKrDB .btn:active {
  box-shadow: none !important;
}
.cid-tEBlsKKrDB .btn:hover {
  background: transparent !important;
}
.cid-tEBlsKKrDB .btn:hover:before {
  background: transparent !important;
}
.cid-tEBlsKKrDB .btn:before {
  background-color: transparent !important;
}
.cid-tEBlsKKrDB .btn:focus {
  box-shadow: none !important;
}
.cid-tEBlsKKrDB .mbr-section-title,
.cid-tEBlsKKrDB .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tEBlARnDVW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tEBlARnDVW .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-tE8ooyfcIx {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tE8ooyfcIx .mbr-section-subtitle {
  color: #767676;
}
.cid-tE8ocx6xlu {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE8ocx6xlu .mbr-text {
  text-align: center;
  color: #365c9a;
}
.cid-tE8ox8hGUW {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tE8ox8hGUW .mbr-overlay {
  background: #efefef;
}
.cid-tE8ox8hGUW .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tE8ox8hGUW .client-name {
  color: #8d97ad;
}
.cid-tE8ox8hGUW .wrap-img {
  padding-bottom: 1rem;
}
.cid-tE8ox8hGUW .wrap-img img {
  max-width: 100%;
}
.cid-tE8ox8hGUW .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-tE8ox8hGUW .mbr-section-title {
  color: #365c9a;
}
.cid-tE8ox8hGUW .card-box > p {
  color: #767676;
}
.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-tEe5Ik4ic8.popup-builder {
  background-color: #ffffff;
}
.cid-tEe5Ik4ic8.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tEe5Ik4ic8.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tEe5Ik4ic8 .modal-content,
.cid-tEe5Ik4ic8 .modal-dialog {
  height: auto;
}
.cid-tEe5Ik4ic8 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tEe5Ik4ic8 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tEe5Ik4ic8 .form-wrapper .mbr-form .form-group,
  .cid-tEe5Ik4ic8 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tEe5Ik4ic8 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tEe5Ik4ic8 .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-tEe5Ik4ic8 .mbr-text {
  text-align: center;
}
.cid-tEe5Ik4ic8 .pt-0 {
  padding-top: 0 !important;
}
.cid-tEe5Ik4ic8 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tEe5Ik4ic8 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tEe5Ik4ic8 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tEe5Ik4ic8 .modal-open {
  overflow: hidden;
}
.cid-tEe5Ik4ic8 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tEe5Ik4ic8 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tEe5Ik4ic8 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tEe5Ik4ic8 .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-tEe5Ik4ic8 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tEe5Ik4ic8 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tEe5Ik4ic8 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tEe5Ik4ic8 .modal-content {
  background: #efefef;
  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-tEe5Ik4ic8 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tEe5Ik4ic8 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tEe5Ik4ic8 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tEe5Ik4ic8 .modal-backdrop.show {
  opacity: .5;
}
.cid-tEe5Ik4ic8 .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-tEe5Ik4ic8 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tEe5Ik4ic8 .modal-header {
    padding: 1rem;
  }
}
.cid-tEe5Ik4ic8 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tEe5Ik4ic8 .modal-header .close svg {
  fill: #c1200d;
}
.cid-tEe5Ik4ic8 .modal-header .close:hover {
  opacity: 1;
}
.cid-tEe5Ik4ic8 .modal-header .close:focus {
  outline: none;
}
.cid-tEe5Ik4ic8 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tEe5Ik4ic8 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tEe5Ik4ic8 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tEe5Ik4ic8 .modal-body {
    padding: 1rem;
  }
}
.cid-tEe5Ik4ic8 .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-tEe5Ik4ic8 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tEe5Ik4ic8 .modal-footer {
    padding: 1rem;
  }
}
.cid-tEe5Ik4ic8 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tEe5Ik4ic8 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tEe5Ik4ic8 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tEe5Ik4ic8 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tEe5Ik4ic8 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tEe5Ik4ic8 .modal-lg,
  .cid-tEe5Ik4ic8 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tEe5Ik4ic8 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tEe5Ik4ic8 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tEe5Ik4ic8 .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-tEe5Ik4ic8 .form-group {
  margin-bottom: 1rem;
}
.cid-tEe5Ik4ic8 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tEe5Ik4ic8 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tEe5Ik4ic8 .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-tEe5Ik4ic8 .mbr-section-btn {
  margin: 0;
}
.cid-tEe5Ik4ic8 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tEeglkvhHM.popup-builder {
  background-color: #ffffff;
}
.cid-tEeglkvhHM.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tEeglkvhHM.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tEeglkvhHM .modal-content,
.cid-tEeglkvhHM .modal-dialog {
  height: auto;
}
.cid-tEeglkvhHM .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tEeglkvhHM .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tEeglkvhHM .form-wrapper .mbr-form .form-group,
  .cid-tEeglkvhHM .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tEeglkvhHM .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tEeglkvhHM .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-tEeglkvhHM .mbr-text {
  text-align: center;
}
.cid-tEeglkvhHM .pt-0 {
  padding-top: 0 !important;
}
.cid-tEeglkvhHM .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tEeglkvhHM .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tEeglkvhHM .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tEeglkvhHM .modal-open {
  overflow: hidden;
}
.cid-tEeglkvhHM .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tEeglkvhHM .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tEeglkvhHM .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tEeglkvhHM .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-tEeglkvhHM .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tEeglkvhHM .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tEeglkvhHM .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tEeglkvhHM .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-tEeglkvhHM .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tEeglkvhHM .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tEeglkvhHM .modal-backdrop.fade {
  opacity: 0;
}
.cid-tEeglkvhHM .modal-backdrop.show {
  opacity: .5;
}
.cid-tEeglkvhHM .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-tEeglkvhHM .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tEeglkvhHM .modal-header {
    padding: 1rem;
  }
}
.cid-tEeglkvhHM .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tEeglkvhHM .modal-header .close svg {
  fill: #353535;
}
.cid-tEeglkvhHM .modal-header .close:hover {
  opacity: 1;
}
.cid-tEeglkvhHM .modal-header .close:focus {
  outline: none;
}
.cid-tEeglkvhHM .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tEeglkvhHM .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tEeglkvhHM .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tEeglkvhHM .modal-body {
    padding: 1rem;
  }
}
.cid-tEeglkvhHM .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-tEeglkvhHM .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tEeglkvhHM .modal-footer {
    padding: 1rem;
  }
}
.cid-tEeglkvhHM .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tEeglkvhHM .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tEeglkvhHM .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tEeglkvhHM .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tEeglkvhHM .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tEeglkvhHM .modal-lg,
  .cid-tEeglkvhHM .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tEeglkvhHM .modal-xl {
    max-width: 1140px;
  }
}
.cid-tEeglkvhHM .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tEeglkvhHM .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-tEeglkvhHM .form-group {
  margin-bottom: 1rem;
}
.cid-tEeglkvhHM .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tEeglkvhHM .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tEeglkvhHM .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-tEeglkvhHM .mbr-section-btn {
  margin: 0;
}
.cid-tEeglkvhHM .mbr-section-btn .btn {
  margin: 0;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .nav-item,
.cid-tOR2DOYH0Z .nav-link,
.cid-tOR2DOYH0Z .navbar-caption {
  font-weight: normal;
}
.cid-tOR2DOYH0Z .nav-item:focus,
.cid-tOR2DOYH0Z .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tOR2DOYH0Z .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOR2DOYH0Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOR2DOYH0Z .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tOR2DOYH0Z .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tOR2DOYH0Z .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tOR2DOYH0Z .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOR2DOYH0Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOR2DOYH0Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOR2DOYH0Z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tOR2DOYH0Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tOR2DOYH0Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOR2DOYH0Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOR2DOYH0Z .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-tOR2DOYH0Z .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOR2DOYH0Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOR2DOYH0Z .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tOR2DOYH0Z .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tOR2DOYH0Z .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tOR2DOYH0Z .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tOR2DOYH0Z .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOR2DOYH0Z .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOR2DOYH0Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOR2DOYH0Z .dropdown-item.active,
.cid-tOR2DOYH0Z .dropdown-item:active {
  background-color: transparent;
}
.cid-tOR2DOYH0Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOR2DOYH0Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOR2DOYH0Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOR2DOYH0Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tOR2DOYH0Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOR2DOYH0Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOR2DOYH0Z ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOR2DOYH0Z .navbar-buttons {
  text-align: center;
}
.cid-tOR2DOYH0Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOR2DOYH0Z .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tOR2DOYH0Z a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tOR2DOYH0Z .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tOR2DOYH0Z .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tOR2DOYH0Z .soc-item {
  margin: .5rem .3rem;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z a.nav-link,
.cid-tOR2DOYH0Z a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-tOR2DOYH0Z a.nav-link .mbr-iconfont-btn,
.cid-tOR2DOYH0Z a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-tOR2DOYH0Z a.nav-link:hover .mbr-iconfont-btn,
.cid-tOR2DOYH0Z a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-tOR2DOYH0Z a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOR2DOYH0Z .navbar {
    height: 77px;
  }
  .cid-tOR2DOYH0Z .navbar.opened {
    height: auto;
  }
  .cid-tOR2DOYH0Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEiusd3Rmf {
  padding-top: 120px;
  padding-bottom: 105px;
  background-color: #e6ecf2;
}
.cid-tEiusd3Rmf .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tEiusd3Rmf .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tEiusd3Rmf .contents .mbfr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tEiusd3Rmf .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-tEiusd3Rmf .contents .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tEiusd3Rmf .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tEiusd3Rmf .contents .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-tEiusd3Rmf .card-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}
.cid-tEiusd3Rmf .card-wrapper .card-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tEiusd3Rmf .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 700;
}
.cid-tEiusd3Rmf .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tEiusd3Rmf .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.cid-tEiusd3Rmf .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tEiusd3Rmf .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
}
.cid-tEiusd3Rmf .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-tEiusd3Rmf .card-wrapper .card-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.cid-tEiusd3Rmf .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-tEiusd3Rmf .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-tEiusd3Rmf .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tEiusd3Rmf .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-tEiusd3Rmf .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-tEiusd3Rmf .btn[class*='-outline']:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tEiusd3Rmf .btn[class*='-outline']:active,
.cid-tEiusd3Rmf .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-tEiusd3Rmf .ico-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 35px 20px 30px 20px;
  border-radius: 10px;
}
.cid-tEiusd3Rmf .ico-wrap .ico-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
}
.cid-tEiusd3Rmf .ico-wrap .ico-box span {
  color: #4f87fb;
}
.cid-tEiusd3Rmf .ico-wrap .ico-box p {
  margin: 0;
  color: #a0a9b6;
  line-height: 1.5;
  font-weight: 400;
}
.cid-tEiusd3Rmf .ico-wrap .ico-box p.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-tEiusd3Rmf .ico-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-tEiusd3Rmf .ico-wrap .ico-box {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .cid-tEiusd3Rmf .card {
    margin-bottom: 15px;
  }
}
.cid-tEiusd3Rmf .contents .mbr-section-title {
  color: #365c9a;
}
.cid-tEiusd3Rmf .card-wrapper .card-box .card-title {
  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-tOR2DOYH0Z .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-tOR2DOYH0Z .nav-item,
.cid-tOR2DOYH0Z .nav-link,
.cid-tOR2DOYH0Z .navbar-caption {
  font-weight: normal;
}
.cid-tOR2DOYH0Z .nav-item:focus,
.cid-tOR2DOYH0Z .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tOR2DOYH0Z .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tOR2DOYH0Z .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOR2DOYH0Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOR2DOYH0Z .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tOR2DOYH0Z .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tOR2DOYH0Z .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tOR2DOYH0Z .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOR2DOYH0Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOR2DOYH0Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOR2DOYH0Z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.1rem);
  }
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOR2DOYH0Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tOR2DOYH0Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tOR2DOYH0Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOR2DOYH0Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOR2DOYH0Z .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-tOR2DOYH0Z .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOR2DOYH0Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOR2DOYH0Z .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOR2DOYH0Z .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tOR2DOYH0Z .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tOR2DOYH0Z .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tOR2DOYH0Z .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tOR2DOYH0Z .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOR2DOYH0Z .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOR2DOYH0Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOR2DOYH0Z .dropdown-item.active,
.cid-tOR2DOYH0Z .dropdown-item:active {
  background-color: transparent;
}
.cid-tOR2DOYH0Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOR2DOYH0Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOR2DOYH0Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOR2DOYH0Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tOR2DOYH0Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOR2DOYH0Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOR2DOYH0Z ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOR2DOYH0Z .navbar-buttons {
  text-align: center;
}
.cid-tOR2DOYH0Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f51e0a;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tOR2DOYH0Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tOR2DOYH0Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOR2DOYH0Z .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tOR2DOYH0Z a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tOR2DOYH0Z .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tOR2DOYH0Z .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tOR2DOYH0Z .soc-item {
  margin: .5rem .3rem;
}
.cid-tOR2DOYH0Z .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-tOR2DOYH0Z a.nav-link,
.cid-tOR2DOYH0Z a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-tOR2DOYH0Z a.nav-link .mbr-iconfont-btn,
.cid-tOR2DOYH0Z a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-tOR2DOYH0Z a.nav-link:hover .mbr-iconfont-btn,
.cid-tOR2DOYH0Z a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-tOR2DOYH0Z a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOR2DOYH0Z .navbar {
    height: 77px;
  }
  .cid-tOR2DOYH0Z .navbar.opened {
    height: auto;
  }
  .cid-tOR2DOYH0Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJO5mqNJfT {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #e8eff9;
}
.cid-tJO5mqNJfT .image-wrapper {
  height: 100%;
}
@media (max-width: 991px) {
  .cid-tJO5mqNJfT .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tJO5mqNJfT .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tJO5mqNJfT .image-wrapper img {
    border-end-start-radius: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-tJO5mqNJfT .text-wrapper {
    padding: 10rem 5rem 0 0rem;
  }
}
.cid-tJO5mqNJfT .mbr-section-title {
  color: #404d50;
  text-align: center;
}
.cid-tJO5mqNJfT .mbr-text {
  color: #6c7577;
}
.cid-tJO5mqNJfT .btn {
  padding: 1rem 3.4rem;
}
.cid-tJO5mqNJfT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJO5mqNJfT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJO5mqNJfT .mbr-text,
.cid-tJO5mqNJfT .mbr-section-btn {
  color: #6c7577;
  text-align: center;
}
.cid-tKy4ewEjjz {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #e8eff9;
}
.cid-tKy4ewEjjz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKy4ewEjjz .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-tKy4ewEjjz .row {
    padding: 0 24px;
  }
}
.cid-tKy4ewEjjz .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tKy4ewEjjz .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tKy4ewEjjz .mbr-section-title {
  color: #2c0066;
}
.cid-tKy4ewEjjz .mbr-section-title,
.cid-tKy4ewEjjz .mbr-section-btn {
  text-align: left;
  color: #011953;
}
.cid-tTC0YiI8i1 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tTC0YiI8i1 .mbr-section-subtitle {
  color: #767676;
}
.cid-tTC0YiI8i1 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tTC0YiI8i1 .table-wrapper {
  margin: 0 auto;
}
.cid-tTC0YiI8i1 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tTC0YiI8i1 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #365c9a;
  color: white;
  vertical-align: middle;
}
.cid-tTC0YiI8i1 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tTC0YiI8i1 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tTC0YiI8i1 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tTC0YiI8i1 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tTC0YiI8i1 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tTC0YiI8i1 .dataTables_wrapper {
  display: block;
}
.cid-tTC0YiI8i1 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tTC0YiI8i1 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tTC0YiI8i1 .head-item:after,
.cid-tTC0YiI8i1 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tTC0YiI8i1 .dataTables_filter {
    text-align: center;
  }
  .cid-tTC0YiI8i1 .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tTC0YiI8i1 .dataTables_filter {
    text-align: center;
  }
  .cid-tTC0YiI8i1 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tTC0YiI8i1 table th,
  .cid-tTC0YiI8i1 table td {
    padding: .75rem;
  }
}
.cid-tTC0YiI8i1 .body-item {
  text-align: left;
}
.cid-tTC0YiI8i1 .head-item {
  text-align: left;
  color: #ffffff;
}
.cid-tTC0H7rYBm {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tTC0H7rYBm .mbr-section-subtitle {
  color: #767676;
}
.cid-tTC0H7rYBm .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tTC0H7rYBm .table-wrapper {
  margin: 0 auto;
}
.cid-tTC0H7rYBm table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tTC0H7rYBm table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #fac769;
  color: white;
  vertical-align: middle;
}
.cid-tTC0H7rYBm table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tTC0H7rYBm .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tTC0H7rYBm .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tTC0H7rYBm .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tTC0H7rYBm .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tTC0H7rYBm .dataTables_wrapper {
  display: block;
}
.cid-tTC0H7rYBm .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tTC0H7rYBm .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tTC0H7rYBm .head-item:after,
.cid-tTC0H7rYBm .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tTC0H7rYBm .dataTables_filter {
    text-align: center;
  }
  .cid-tTC0H7rYBm .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tTC0H7rYBm .dataTables_filter {
    text-align: center;
  }
  .cid-tTC0H7rYBm .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tTC0H7rYBm table th,
  .cid-tTC0H7rYBm table td {
    padding: .75rem;
  }
}
.cid-tTC0H7rYBm .body-item {
  text-align: left;
}
.cid-tTC0H7rYBm .head-item {
  text-align: left;
  color: #ffffff;
}
.cid-tTC09BCFpO {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tTC09BCFpO .mbr-section-subtitle {
  color: #767676;
}
.cid-tTC09BCFpO .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tTC09BCFpO .table-wrapper {
  margin: 0 auto;
}
.cid-tTC09BCFpO table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tTC09BCFpO table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #365c9a;
  color: white;
  vertical-align: middle;
}
.cid-tTC09BCFpO table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tTC09BCFpO .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tTC09BCFpO .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tTC09BCFpO .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tTC09BCFpO .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tTC09BCFpO .dataTables_wrapper {
  display: block;
}
.cid-tTC09BCFpO .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tTC09BCFpO .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tTC09BCFpO .head-item:after,
.cid-tTC09BCFpO .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tTC09BCFpO .dataTables_filter {
    text-align: center;
  }
  .cid-tTC09BCFpO .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tTC09BCFpO .dataTables_filter {
    text-align: center;
  }
  .cid-tTC09BCFpO .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tTC09BCFpO table th,
  .cid-tTC09BCFpO table td {
    padding: .75rem;
  }
}
.cid-tTC09BCFpO .body-item {
  text-align: left;
}
.cid-tTC09BCFpO .head-item {
  text-align: left;
  color: #ffffff;
}
.cid-tTBY8uiQGd {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tTBY8uiQGd .mbr-section-subtitle {
  color: #767676;
}
.cid-tTBY8uiQGd .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tTBY8uiQGd .table-wrapper {
  margin: 0 auto;
}
.cid-tTBY8uiQGd table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tTBY8uiQGd table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #fac769;
  color: white;
  vertical-align: middle;
}
.cid-tTBY8uiQGd table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tTBY8uiQGd .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tTBY8uiQGd .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tTBY8uiQGd .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tTBY8uiQGd .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tTBY8uiQGd .dataTables_wrapper {
  display: block;
}
.cid-tTBY8uiQGd .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tTBY8uiQGd .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tTBY8uiQGd .head-item:after,
.cid-tTBY8uiQGd .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tTBY8uiQGd .dataTables_filter {
    text-align: center;
  }
  .cid-tTBY8uiQGd .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tTBY8uiQGd .dataTables_filter {
    text-align: center;
  }
  .cid-tTBY8uiQGd .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tTBY8uiQGd table th,
  .cid-tTBY8uiQGd table td {
    padding: .75rem;
  }
}
.cid-tTBY8uiQGd .body-item {
  text-align: left;
}
.cid-tTBY8uiQGd .head-item {
  text-align: left;
  color: #ffffff;
}
.cid-tT2CZgdicd .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tT2CZgdicd .icon-bar a:hover {
  background-color: #ff0040;
  width: 100px;
}
.cid-tT2CZgdicd .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 2px;
  border-radius: 14px;
}
.cid-tT2CZgdicd .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tT2CZgdicd .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tT2CZgdicd .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tT2CZgdicd .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tT2CZgdicd .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tT2CZgdicd .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tT2CZgdicd .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tT2CZgdicd .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tT2CZgdicd .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tT2CZgdicd .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tT2CZgdicd .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tT2CZgdicd .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tT2CZgdicd P {
  color: #4e84c2;
}
.cid-tT2CZgdicd DIV {
  color: #ffffff;
}
.cid-tT2CZgdicd H10 {
  color: #767676;
}
.cid-tT2CZgdicd .hidden {
  display: none;
}
.cid-tT2CZgdicd p {
  color: #ecf0f1;
  line-height: 28px;
  font-size: 15px;
  padding-top: 50px;
}
.cid-tT2CZgdicd .sticky-container {
  z-index: 1001;
  padding: 0px;
  margin: 0px;
  position: fixed;
  Right: -119px;
  top: 275px;
  width: 203px;
}
.cid-tT2CZgdicd .sticky li {
  list-style-type: none;
  background-color: #011953;
  color: #efefef;
  height: 43px;
  padding: 0px;
  margin: 0px 0px 1px 0px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.cid-tT2CZgdicd .sticky li:hover {
  margin-left: -100px;
}
.cid-tT2CZgdicd .sticky li img {
  float: left;
  margin: 5px 5px;
  margin-right: 10px;
}
.cid-tT2CZgdicd .sticky li p {
  padding: 0px;
  margin: 0px;
  line-height: 43px;
}
.cid-tT2CZgdicd div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tSRns8XLDx {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tSRns8XLDx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSRns8XLDx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSRns8XLDx .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tSRns8XLDx .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tSRns8XLDx .container {
    padding: 0;
  }
}
.cid-tSRns8XLDx .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tSRns8XLDx .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tSRns8XLDx .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tSRns8XLDx .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tSRns8XLDx .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tSRns8XLDx .mbr-text {
  color: #263652;
}
.cid-tUbd8eeeWh {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tUbd8eeeWh .card {
  display: block;
  position: relative;
}
.cid-tUbd8eeeWh .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tUbd8eeeWh .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tUbd8eeeWh .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tUbd8eeeWh .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-tUbd8eeeWh .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tUbd8eeeWh .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tUbd8eeeWh .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tUbd8eeeWh .mbr-section-title {
  color: #365c9a;
}
.cid-tUbd8eeeWh .mbr-card-text,
.cid-tUbd8eeeWh .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tTXJ6FuFVs {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTXJ6FuFVs .card {
  display: block;
  position: relative;
}
.cid-tTXJ6FuFVs .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tTXJ6FuFVs .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tTXJ6FuFVs .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tTXJ6FuFVs .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-tTXJ6FuFVs .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tTXJ6FuFVs .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tTXJ6FuFVs .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tTXJ6FuFVs .mbr-section-title {
  color: #365c9a;
}
.cid-tTXJ6FuFVs .mbr-card-text,
.cid-tTXJ6FuFVs .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tTTCnLuMy6 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTTCnLuMy6 .card {
  display: block;
  position: relative;
}
.cid-tTTCnLuMy6 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tTTCnLuMy6 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tTTCnLuMy6 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tTTCnLuMy6 .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-tTTCnLuMy6 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tTTCnLuMy6 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tTTCnLuMy6 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tTTCnLuMy6 .mbr-section-title {
  color: #365c9a;
}
.cid-tTTCnLuMy6 .mbr-card-text,
.cid-tTTCnLuMy6 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tTTBiWI9Tf {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTTBiWI9Tf .card {
  display: block;
  position: relative;
}
.cid-tTTBiWI9Tf .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tTTBiWI9Tf .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tTTBiWI9Tf .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tTTBiWI9Tf .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-tTTBiWI9Tf .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tTTBiWI9Tf .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tTTBiWI9Tf .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tTTBiWI9Tf .mbr-section-title {
  color: #365c9a;
}
.cid-tTTBiWI9Tf .mbr-card-text,
.cid-tTTBiWI9Tf .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tTNuMalOxz {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTNuMalOxz .card {
  display: block;
  position: relative;
}
.cid-tTNuMalOxz .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tTNuMalOxz .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tTNuMalOxz .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tTNuMalOxz .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-tTNuMalOxz .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tTNuMalOxz .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tTNuMalOxz .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tTNuMalOxz .mbr-section-title {
  color: #365c9a;
}
.cid-tTNuMalOxz .mbr-card-text,
.cid-tTNuMalOxz .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tTIgd2X9r4 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTIgd2X9r4 .card {
  display: block;
  position: relative;
}
.cid-tTIgd2X9r4 .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tTIgd2X9r4 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tTIgd2X9r4 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tTIgd2X9r4 .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-tTIgd2X9r4 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tTIgd2X9r4 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tTIgd2X9r4 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tTIgd2X9r4 .mbr-section-title {
  color: #365c9a;
}
.cid-tTIgd2X9r4 .mbr-card-text,
.cid-tTIgd2X9r4 .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tTHUMtuZle {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTHUMtuZle .card {
  display: block;
  position: relative;
}
.cid-tTHUMtuZle .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tTHUMtuZle .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tTHUMtuZle .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tTHUMtuZle .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-tTHUMtuZle .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tTHUMtuZle .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tTHUMtuZle .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tTHUMtuZle .mbr-section-title {
  color: #365c9a;
}
.cid-tTHUMtuZle .mbr-card-text,
.cid-tTHUMtuZle .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tTBXpw28om {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTBXpw28om .card {
  display: block;
  position: relative;
}
.cid-tTBXpw28om .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tTBXpw28om .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tTBXpw28om .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tTBXpw28om .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-tTBXpw28om .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tTBXpw28om .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tTBXpw28om .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tTBXpw28om .mbr-section-title {
  color: #365c9a;
}
.cid-tTBXpw28om .mbr-card-text,
.cid-tTBXpw28om .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tTw06ZVArx {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTw06ZVArx .card {
  display: block;
  position: relative;
}
.cid-tTw06ZVArx .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tTw06ZVArx .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tTw06ZVArx .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tTw06ZVArx .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-tTw06ZVArx .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tTw06ZVArx .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tTw06ZVArx .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tTw06ZVArx .mbr-section-title {
  color: #365c9a;
}
.cid-tTw06ZVArx .mbr-card-text,
.cid-tTw06ZVArx .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tTvYL9Rj9t {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTvYL9Rj9t .card {
  display: block;
  position: relative;
}
.cid-tTvYL9Rj9t .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tTvYL9Rj9t .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tTvYL9Rj9t .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tTvYL9Rj9t .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-tTvYL9Rj9t .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tTvYL9Rj9t .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tTvYL9Rj9t .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tTvYL9Rj9t .mbr-section-title {
  color: #365c9a;
}
.cid-tTvYL9Rj9t .mbr-card-text,
.cid-tTvYL9Rj9t .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tSXAV6agPn {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSXAV6agPn .card {
  display: block;
  position: relative;
}
.cid-tSXAV6agPn .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tSXAV6agPn .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tSXAV6agPn .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSXAV6agPn .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-tSXAV6agPn .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSXAV6agPn .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tSXAV6agPn .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tSXAV6agPn .mbr-section-title {
  color: #365c9a;
}
.cid-tSXAV6agPn .mbr-card-text,
.cid-tSXAV6agPn .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tTvXGgNb4l {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTvXGgNb4l .card {
  display: block;
  position: relative;
}
.cid-tTvXGgNb4l .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tTvXGgNb4l .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tTvXGgNb4l .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tTvXGgNb4l .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-tTvXGgNb4l .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tTvXGgNb4l .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tTvXGgNb4l .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tTvXGgNb4l .mbr-section-title {
  color: #365c9a;
}
.cid-tTvXGgNb4l .mbr-card-text,
.cid-tTvXGgNb4l .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tSRgfcoaQH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSRgfcoaQH .card {
  display: block;
  position: relative;
}
.cid-tSRgfcoaQH .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tSRgfcoaQH .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tSRgfcoaQH .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSRgfcoaQH .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-tSRgfcoaQH .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSRgfcoaQH .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tSRgfcoaQH .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tSRgfcoaQH .mbr-section-title {
  color: #365c9a;
}
.cid-tSRgfcoaQH .mbr-card-text,
.cid-tSRgfcoaQH .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tPhIfUbVnW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tPhIfUbVnW .card {
  display: block;
  position: relative;
}
.cid-tPhIfUbVnW .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tPhIfUbVnW .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tPhIfUbVnW .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tPhIfUbVnW .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-tPhIfUbVnW .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tPhIfUbVnW .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tPhIfUbVnW .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tPhIfUbVnW .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tPhIfUbVnW .mbr-card-text,
.cid-tPhIfUbVnW .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tPhGIuAheY {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tPhGIuAheY .card {
  display: block;
  position: relative;
}
.cid-tPhGIuAheY .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tPhGIuAheY .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tPhGIuAheY .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tPhGIuAheY .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-tPhGIuAheY .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tPhGIuAheY .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tPhGIuAheY .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tPhGIuAheY .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tPhGIuAheY .mbr-card-text,
.cid-tPhGIuAheY .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tPhE65JCLH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tPhE65JCLH .card {
  display: block;
  position: relative;
}
.cid-tPhE65JCLH .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tPhE65JCLH .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tPhE65JCLH .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tPhE65JCLH .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-tPhE65JCLH .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tPhE65JCLH .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tPhE65JCLH .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tPhE65JCLH .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tPhE65JCLH .mbr-card-text,
.cid-tPhE65JCLH .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tPc3QlzX7n {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tPc3QlzX7n .card {
  display: block;
  position: relative;
}
.cid-tPc3QlzX7n .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tPc3QlzX7n .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tPc3QlzX7n .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tPc3QlzX7n .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-tPc3QlzX7n .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tPc3QlzX7n .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tPc3QlzX7n .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tPc3QlzX7n .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tPc3QlzX7n .mbr-card-text,
.cid-tPc3QlzX7n .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tPc1w7AeKA {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tPc1w7AeKA .card {
  display: block;
  position: relative;
}
.cid-tPc1w7AeKA .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tPc1w7AeKA .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tPc1w7AeKA .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tPc1w7AeKA .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-tPc1w7AeKA .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tPc1w7AeKA .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tPc1w7AeKA .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tPc1w7AeKA .mbr-section-title {
  color: #365c9a;
  text-align: center;
}
.cid-tPc1w7AeKA .mbr-card-text,
.cid-tPc1w7AeKA .mbr-section-btn {
  color: #404d50;
  text-align: left;
}
.cid-tPhJ6uhfIM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tPhJ6uhfIM .mbr-section-subtitle {
  color: #767676;
}
.cid-tNciwNIZFd {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tNciwNIZFd .mbr-section-subtitle {
  color: #767676;
}
.cid-tNciwNIZFd .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tNciwNIZFd .table-wrapper {
  margin: 0 auto;
}
.cid-tNciwNIZFd table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tNciwNIZFd table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-tNciwNIZFd table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tNciwNIZFd .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tNciwNIZFd .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tNciwNIZFd .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tNciwNIZFd .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tNciwNIZFd .dataTables_wrapper {
  display: block;
}
.cid-tNciwNIZFd .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tNciwNIZFd .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tNciwNIZFd .head-item:after,
.cid-tNciwNIZFd .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tNciwNIZFd .dataTables_filter {
    text-align: center;
  }
  .cid-tNciwNIZFd .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tNciwNIZFd .dataTables_filter {
    text-align: center;
  }
  .cid-tNciwNIZFd .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tNciwNIZFd table th,
  .cid-tNciwNIZFd table td {
    padding: .75rem;
  }
}
.cid-tNciwNIZFd .body-item {
  text-align: left;
}
.cid-tNciwNIZFd .mbr-section-title,
.cid-tNciwNIZFd .underline {
  color: #365c9a;
}
.cid-tNhhH8Po6D .divider-top {
  position: relative;
  padding: 2.5em;
  background: #f6f6f6;
}
.cid-tNhhH8Po6D .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #ffffff;
}
.cid-tNhhH8Po6D .divider-top::before,
.cid-tNhhH8Po6D .divider-bottom::before,
.cid-tNhhH8Po6D .divider-top::after,
.cid-tNhhH8Po6D .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-tNhhH8Po6D .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-tNhhH8Po6D .divider-triangles::before {
  top: -50px;
}
.cid-tNhhH8Po6D .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-tNhhH8Po6D .divider-halfcircle::before {
  top: -50px;
}
.cid-tNhhH8Po6D .divider-multitriangles::before,
.cid-tNhhH8Po6D .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-tNhhH8Po6D .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #f6f6f6, 50px -50px 0 #f6f6f6;
}
.cid-tNhhSSnlYW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tNhhSSnlYW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNhhSSnlYW .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-tNhhSSnlYW .row {
    padding: 0 24px;
  }
}
.cid-tNhhSSnlYW .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tNhhSSnlYW .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tNhhSSnlYW .mbr-section-title {
  color: #2c0066;
}
.cid-tNhhSSnlYW .mbr-section-title,
.cid-tNhhSSnlYW .mbr-section-btn {
  text-align: left;
  color: #365c9a;
}
.cid-tNhhSSnlYW .mbr-section-title,
.cid-tNhhSSnlYW .mbr-section-btn DIV {
  text-align: center;
}
.cid-tZ30lG7MTM {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tZ30lG7MTM .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tZ30lG7MTM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tZ30lG7MTM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tZ30lG7MTM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tZ30lG7MTM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tZ30lG7MTM .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-tZ30lG7MTM .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tZ30lG7MTM .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-tZ30lG7MTM .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tZ30lG7MTM .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-tZ30lG7MTM .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-tZ30lG7MTM ul {
  font-size: 0;
}
.cid-tZ30lG7MTM .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tZ30lG7MTM .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-tZ30lG7MTM .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tZ30lG7MTM .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tZ30lG7MTM .mbr-gallery-filter ul li:first-child,
.cid-tZ30lG7MTM .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tZ30lG7MTM .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tZ30lG7MTM .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tZ30lG7MTM .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tZ30lG7MTM .btn.active:after {
  animation: none;
}
.cid-tZ30lG7MTM .btn:active {
  box-shadow: none !important;
}
.cid-tZ30lG7MTM .btn:hover {
  background: transparent !important;
}
.cid-tZ30lG7MTM .btn:hover:before {
  background: transparent !important;
}
.cid-tZ30lG7MTM .btn:before {
  background-color: transparent !important;
}
.cid-tZ30lG7MTM .btn:focus {
  box-shadow: none !important;
}
.cid-tZ30lG7MTM .mbr-section-title,
.cid-tZ30lG7MTM .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tZ30lG7MTM .mbr-section-title,
.cid-tZ30lG7MTM .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tZ30nrI536 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tZ30nrI536 .mbr-section-subtitle {
  color: #767676;
}
.cid-tXnDjwz3dT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tXnDjwz3dT .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tXnDjwz3dT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tXnDjwz3dT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tXnDjwz3dT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tXnDjwz3dT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tXnDjwz3dT .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-tXnDjwz3dT .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tXnDjwz3dT .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-tXnDjwz3dT .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tXnDjwz3dT .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-tXnDjwz3dT .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-tXnDjwz3dT ul {
  font-size: 0;
}
.cid-tXnDjwz3dT .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tXnDjwz3dT .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-tXnDjwz3dT .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tXnDjwz3dT .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tXnDjwz3dT .mbr-gallery-filter ul li:first-child,
.cid-tXnDjwz3dT .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tXnDjwz3dT .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tXnDjwz3dT .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tXnDjwz3dT .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tXnDjwz3dT .btn.active:after {
  animation: none;
}
.cid-tXnDjwz3dT .btn:active {
  box-shadow: none !important;
}
.cid-tXnDjwz3dT .btn:hover {
  background: transparent !important;
}
.cid-tXnDjwz3dT .btn:hover:before {
  background: transparent !important;
}
.cid-tXnDjwz3dT .btn:before {
  background-color: transparent !important;
}
.cid-tXnDjwz3dT .btn:focus {
  box-shadow: none !important;
}
.cid-tXnDjwz3dT .mbr-section-title,
.cid-tXnDjwz3dT .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tXnDjwz3dT .mbr-section-title,
.cid-tXnDjwz3dT .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tXnDodsNRg {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tXnDodsNRg .mbr-section-subtitle {
  color: #767676;
}
.cid-tWxlXv2hNA {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tWxlXv2hNA .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tWxlXv2hNA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tWxlXv2hNA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWxlXv2hNA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWxlXv2hNA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tWxlXv2hNA .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-tWxlXv2hNA .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tWxlXv2hNA .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-tWxlXv2hNA .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tWxlXv2hNA .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-tWxlXv2hNA .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-tWxlXv2hNA ul {
  font-size: 0;
}
.cid-tWxlXv2hNA .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tWxlXv2hNA .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-tWxlXv2hNA .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tWxlXv2hNA .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tWxlXv2hNA .mbr-gallery-filter ul li:first-child,
.cid-tWxlXv2hNA .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tWxlXv2hNA .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tWxlXv2hNA .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tWxlXv2hNA .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tWxlXv2hNA .btn.active:after {
  animation: none;
}
.cid-tWxlXv2hNA .btn:active {
  box-shadow: none !important;
}
.cid-tWxlXv2hNA .btn:hover {
  background: transparent !important;
}
.cid-tWxlXv2hNA .btn:hover:before {
  background: transparent !important;
}
.cid-tWxlXv2hNA .btn:before {
  background-color: transparent !important;
}
.cid-tWxlXv2hNA .btn:focus {
  box-shadow: none !important;
}
.cid-tWxlXv2hNA .mbr-section-title,
.cid-tWxlXv2hNA .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tWxlXv2hNA .mbr-section-title,
.cid-tWxlXv2hNA .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tWxm3fY4Es {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tWxm3fY4Es .mbr-section-subtitle {
  color: #767676;
}
.cid-tUbbIQXoqm {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tUbbIQXoqm .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tUbbIQXoqm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tUbbIQXoqm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUbbIQXoqm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tUbbIQXoqm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tUbbIQXoqm .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-tUbbIQXoqm .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tUbbIQXoqm .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-tUbbIQXoqm .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tUbbIQXoqm .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-tUbbIQXoqm .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-tUbbIQXoqm ul {
  font-size: 0;
}
.cid-tUbbIQXoqm .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tUbbIQXoqm .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-tUbbIQXoqm .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tUbbIQXoqm .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tUbbIQXoqm .mbr-gallery-filter ul li:first-child,
.cid-tUbbIQXoqm .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tUbbIQXoqm .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tUbbIQXoqm .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tUbbIQXoqm .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tUbbIQXoqm .btn.active:after {
  animation: none;
}
.cid-tUbbIQXoqm .btn:active {
  box-shadow: none !important;
}
.cid-tUbbIQXoqm .btn:hover {
  background: transparent !important;
}
.cid-tUbbIQXoqm .btn:hover:before {
  background: transparent !important;
}
.cid-tUbbIQXoqm .btn:before {
  background-color: transparent !important;
}
.cid-tUbbIQXoqm .btn:focus {
  box-shadow: none !important;
}
.cid-tUbbIQXoqm .mbr-section-title,
.cid-tUbbIQXoqm .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tUbbIQXoqm .mbr-section-title,
.cid-tUbbIQXoqm .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tUbbLtkUwE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tUbbLtkUwE .mbr-section-subtitle {
  color: #767676;
}
.cid-tU5DDY9QHG {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tU5DDY9QHG .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tU5DDY9QHG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tU5DDY9QHG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tU5DDY9QHG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tU5DDY9QHG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tU5DDY9QHG .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-tU5DDY9QHG .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tU5DDY9QHG .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-tU5DDY9QHG .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tU5DDY9QHG .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-tU5DDY9QHG .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-tU5DDY9QHG ul {
  font-size: 0;
}
.cid-tU5DDY9QHG .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tU5DDY9QHG .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-tU5DDY9QHG .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tU5DDY9QHG .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tU5DDY9QHG .mbr-gallery-filter ul li:first-child,
.cid-tU5DDY9QHG .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tU5DDY9QHG .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tU5DDY9QHG .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tU5DDY9QHG .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tU5DDY9QHG .btn.active:after {
  animation: none;
}
.cid-tU5DDY9QHG .btn:active {
  box-shadow: none !important;
}
.cid-tU5DDY9QHG .btn:hover {
  background: transparent !important;
}
.cid-tU5DDY9QHG .btn:hover:before {
  background: transparent !important;
}
.cid-tU5DDY9QHG .btn:before {
  background-color: transparent !important;
}
.cid-tU5DDY9QHG .btn:focus {
  box-shadow: none !important;
}
.cid-tU5DDY9QHG .mbr-section-title,
.cid-tU5DDY9QHG .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tU5DDY9QHG .mbr-section-title,
.cid-tU5DDY9QHG .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tU5DF4400Z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tU5DF4400Z .mbr-section-subtitle {
  color: #767676;
}
.cid-tU5DlT2UBs {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tU5DlT2UBs .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tU5DlT2UBs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tU5DlT2UBs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tU5DlT2UBs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tU5DlT2UBs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tU5DlT2UBs .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-tU5DlT2UBs .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tU5DlT2UBs .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-tU5DlT2UBs .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tU5DlT2UBs .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-tU5DlT2UBs .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-tU5DlT2UBs ul {
  font-size: 0;
}
.cid-tU5DlT2UBs .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tU5DlT2UBs .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-tU5DlT2UBs .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tU5DlT2UBs .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tU5DlT2UBs .mbr-gallery-filter ul li:first-child,
.cid-tU5DlT2UBs .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tU5DlT2UBs .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tU5DlT2UBs .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tU5DlT2UBs .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tU5DlT2UBs .btn.active:after {
  animation: none;
}
.cid-tU5DlT2UBs .btn:active {
  box-shadow: none !important;
}
.cid-tU5DlT2UBs .btn:hover {
  background: transparent !important;
}
.cid-tU5DlT2UBs .btn:hover:before {
  background: transparent !important;
}
.cid-tU5DlT2UBs .btn:before {
  background-color: transparent !important;
}
.cid-tU5DlT2UBs .btn:focus {
  box-shadow: none !important;
}
.cid-tU5DlT2UBs .mbr-section-title,
.cid-tU5DlT2UBs .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tU5DlT2UBs .mbr-section-title,
.cid-tU5DlT2UBs .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tU5DnmLFsI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tU5DnmLFsI .mbr-section-subtitle {
  color: #767676;
}
.cid-tU5CGbzDYv {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tU5CGbzDYv .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tU5CGbzDYv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tU5CGbzDYv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tU5CGbzDYv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tU5CGbzDYv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tU5CGbzDYv .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-tU5CGbzDYv .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tU5CGbzDYv .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-tU5CGbzDYv .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tU5CGbzDYv .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-tU5CGbzDYv .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-tU5CGbzDYv ul {
  font-size: 0;
}
.cid-tU5CGbzDYv .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tU5CGbzDYv .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-tU5CGbzDYv .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tU5CGbzDYv .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tU5CGbzDYv .mbr-gallery-filter ul li:first-child,
.cid-tU5CGbzDYv .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tU5CGbzDYv .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tU5CGbzDYv .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tU5CGbzDYv .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tU5CGbzDYv .btn.active:after {
  animation: none;
}
.cid-tU5CGbzDYv .btn:active {
  box-shadow: none !important;
}
.cid-tU5CGbzDYv .btn:hover {
  background: transparent !important;
}
.cid-tU5CGbzDYv .btn:hover:before {
  background: transparent !important;
}
.cid-tU5CGbzDYv .btn:before {
  background-color: transparent !important;
}
.cid-tU5CGbzDYv .btn:focus {
  box-shadow: none !important;
}
.cid-tU5CGbzDYv .mbr-section-title,
.cid-tU5CGbzDYv .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tU5CGbzDYv .mbr-section-title,
.cid-tU5CGbzDYv .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tU5CIljUGG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tU5CIljUGG .mbr-section-subtitle {
  color: #767676;
}
.cid-tTHvMRt5Fc {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tTHvMRt5Fc .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tTHvMRt5Fc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tTHvMRt5Fc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTHvMRt5Fc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tTHvMRt5Fc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tTHvMRt5Fc .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-tTHvMRt5Fc .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tTHvMRt5Fc .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-tTHvMRt5Fc .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tTHvMRt5Fc .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-tTHvMRt5Fc .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-tTHvMRt5Fc ul {
  font-size: 0;
}
.cid-tTHvMRt5Fc .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tTHvMRt5Fc .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-tTHvMRt5Fc .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tTHvMRt5Fc .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tTHvMRt5Fc .mbr-gallery-filter ul li:first-child,
.cid-tTHvMRt5Fc .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tTHvMRt5Fc .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tTHvMRt5Fc .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tTHvMRt5Fc .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tTHvMRt5Fc .btn.active:after {
  animation: none;
}
.cid-tTHvMRt5Fc .btn:active {
  box-shadow: none !important;
}
.cid-tTHvMRt5Fc .btn:hover {
  background: transparent !important;
}
.cid-tTHvMRt5Fc .btn:hover:before {
  background: transparent !important;
}
.cid-tTHvMRt5Fc .btn:before {
  background-color: transparent !important;
}
.cid-tTHvMRt5Fc .btn:focus {
  box-shadow: none !important;
}
.cid-tTHvMRt5Fc .mbr-section-title,
.cid-tTHvMRt5Fc .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tTHvMRt5Fc .mbr-section-title,
.cid-tTHvMRt5Fc .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tTHvLlVcGl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tTHvLlVcGl .mbr-section-subtitle {
  color: #767676;
}
.cid-tTNqzcQKYq {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tTNqzcQKYq .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tTNqzcQKYq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tTNqzcQKYq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTNqzcQKYq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tTNqzcQKYq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tTNqzcQKYq .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-tTNqzcQKYq .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tTNqzcQKYq .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-tTNqzcQKYq .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tTNqzcQKYq .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-tTNqzcQKYq .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-tTNqzcQKYq ul {
  font-size: 0;
}
.cid-tTNqzcQKYq .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tTNqzcQKYq .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-tTNqzcQKYq .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tTNqzcQKYq .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tTNqzcQKYq .mbr-gallery-filter ul li:first-child,
.cid-tTNqzcQKYq .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tTNqzcQKYq .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tTNqzcQKYq .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tTNqzcQKYq .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tTNqzcQKYq .btn.active:after {
  animation: none;
}
.cid-tTNqzcQKYq .btn:active {
  box-shadow: none !important;
}
.cid-tTNqzcQKYq .btn:hover {
  background: transparent !important;
}
.cid-tTNqzcQKYq .btn:hover:before {
  background: transparent !important;
}
.cid-tTNqzcQKYq .btn:before {
  background-color: transparent !important;
}
.cid-tTNqzcQKYq .btn:focus {
  box-shadow: none !important;
}
.cid-tTNqzcQKYq .mbr-section-title,
.cid-tTNqzcQKYq .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tTNqzcQKYq .mbr-section-title,
.cid-tTNqzcQKYq .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tTNqC7pASJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tTNqC7pASJ .mbr-section-subtitle {
  color: #767676;
}
.cid-tTvKb9ydyS {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tTvKb9ydyS .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tTvKb9ydyS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tTvKb9ydyS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTvKb9ydyS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tTvKb9ydyS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tTvKb9ydyS .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-tTvKb9ydyS .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tTvKb9ydyS .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-tTvKb9ydyS .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tTvKb9ydyS .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-tTvKb9ydyS .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-tTvKb9ydyS ul {
  font-size: 0;
}
.cid-tTvKb9ydyS .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tTvKb9ydyS .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-tTvKb9ydyS .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tTvKb9ydyS .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tTvKb9ydyS .mbr-gallery-filter ul li:first-child,
.cid-tTvKb9ydyS .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tTvKb9ydyS .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tTvKb9ydyS .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tTvKb9ydyS .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tTvKb9ydyS .btn.active:after {
  animation: none;
}
.cid-tTvKb9ydyS .btn:active {
  box-shadow: none !important;
}
.cid-tTvKb9ydyS .btn:hover {
  background: transparent !important;
}
.cid-tTvKb9ydyS .btn:hover:before {
  background: transparent !important;
}
.cid-tTvKb9ydyS .btn:before {
  background-color: transparent !important;
}
.cid-tTvKb9ydyS .btn:focus {
  box-shadow: none !important;
}
.cid-tTvKb9ydyS .mbr-section-title,
.cid-tTvKb9ydyS .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tTvKb9ydyS .mbr-section-title,
.cid-tTvKb9ydyS .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tTvK42w0XL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tTvK42w0XL .mbr-section-subtitle {
  color: #767676;
}
.cid-tTvJADJZxz {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tTvJADJZxz .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tTvJADJZxz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tTvJADJZxz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTvJADJZxz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tTvJADJZxz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tTvJADJZxz .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-tTvJADJZxz .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tTvJADJZxz .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-tTvJADJZxz .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tTvJADJZxz .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-tTvJADJZxz .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-tTvJADJZxz ul {
  font-size: 0;
}
.cid-tTvJADJZxz .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tTvJADJZxz .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-tTvJADJZxz .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tTvJADJZxz .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tTvJADJZxz .mbr-gallery-filter ul li:first-child,
.cid-tTvJADJZxz .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tTvJADJZxz .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tTvJADJZxz .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tTvJADJZxz .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tTvJADJZxz .btn.active:after {
  animation: none;
}
.cid-tTvJADJZxz .btn:active {
  box-shadow: none !important;
}
.cid-tTvJADJZxz .btn:hover {
  background: transparent !important;
}
.cid-tTvJADJZxz .btn:hover:before {
  background: transparent !important;
}
.cid-tTvJADJZxz .btn:before {
  background-color: transparent !important;
}
.cid-tTvJADJZxz .btn:focus {
  box-shadow: none !important;
}
.cid-tTvJADJZxz .mbr-section-title,
.cid-tTvJADJZxz .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tTvJADJZxz .mbr-section-title,
.cid-tTvJADJZxz .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tTvJDmHeDu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tTvJDmHeDu .mbr-section-subtitle {
  color: #767676;
}
.cid-tT2Ci4nj5L {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tT2Ci4nj5L .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tT2Ci4nj5L .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tT2Ci4nj5L .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tT2Ci4nj5L .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tT2Ci4nj5L .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tT2Ci4nj5L .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-tT2Ci4nj5L .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tT2Ci4nj5L .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-tT2Ci4nj5L .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tT2Ci4nj5L .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-tT2Ci4nj5L .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-tT2Ci4nj5L ul {
  font-size: 0;
}
.cid-tT2Ci4nj5L .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tT2Ci4nj5L .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-tT2Ci4nj5L .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tT2Ci4nj5L .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tT2Ci4nj5L .mbr-gallery-filter ul li:first-child,
.cid-tT2Ci4nj5L .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tT2Ci4nj5L .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tT2Ci4nj5L .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tT2Ci4nj5L .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tT2Ci4nj5L .btn.active:after {
  animation: none;
}
.cid-tT2Ci4nj5L .btn:active {
  box-shadow: none !important;
}
.cid-tT2Ci4nj5L .btn:hover {
  background: transparent !important;
}
.cid-tT2Ci4nj5L .btn:hover:before {
  background: transparent !important;
}
.cid-tT2Ci4nj5L .btn:before {
  background-color: transparent !important;
}
.cid-tT2Ci4nj5L .btn:focus {
  box-shadow: none !important;
}
.cid-tT2Ci4nj5L .mbr-section-title,
.cid-tT2Ci4nj5L .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tT2Ci4nj5L .mbr-section-title,
.cid-tT2Ci4nj5L .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tT2ClyYYMx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tT2ClyYYMx .mbr-section-subtitle {
  color: #767676;
}
.cid-tSLKBaPVMa {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tSLKBaPVMa .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tSLKBaPVMa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tSLKBaPVMa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tSLKBaPVMa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tSLKBaPVMa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tSLKBaPVMa .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-tSLKBaPVMa .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tSLKBaPVMa .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-tSLKBaPVMa .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tSLKBaPVMa .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-tSLKBaPVMa .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-tSLKBaPVMa ul {
  font-size: 0;
}
.cid-tSLKBaPVMa .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tSLKBaPVMa .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-tSLKBaPVMa .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tSLKBaPVMa .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tSLKBaPVMa .mbr-gallery-filter ul li:first-child,
.cid-tSLKBaPVMa .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tSLKBaPVMa .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tSLKBaPVMa .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tSLKBaPVMa .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tSLKBaPVMa .btn.active:after {
  animation: none;
}
.cid-tSLKBaPVMa .btn:active {
  box-shadow: none !important;
}
.cid-tSLKBaPVMa .btn:hover {
  background: transparent !important;
}
.cid-tSLKBaPVMa .btn:hover:before {
  background: transparent !important;
}
.cid-tSLKBaPVMa .btn:before {
  background-color: transparent !important;
}
.cid-tSLKBaPVMa .btn:focus {
  box-shadow: none !important;
}
.cid-tSLKBaPVMa .mbr-section-title,
.cid-tSLKBaPVMa .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tSLKBaPVMa .mbr-section-title,
.cid-tSLKBaPVMa .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tSRhGQBA6Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tSRhGQBA6Q .mbr-section-subtitle {
  color: #767676;
}
.cid-tSRhwIZOFL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tSRhwIZOFL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSRhwIZOFL .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-tSRhwIZOFL .row {
    padding: 0 24px;
  }
}
.cid-tSRhwIZOFL .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tSRhwIZOFL .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tSRhwIZOFL .mbr-section-title {
  color: #2c0066;
}
.cid-tSRhwIZOFL .mbr-section-title,
.cid-tSRhwIZOFL .mbr-section-btn {
  text-align: left;
  color: #365c9a;
}
.cid-tSRhwIZOFL .mbr-section-title,
.cid-tSRhwIZOFL .mbr-section-btn DIV {
  text-align: left;
}
.cid-tSRh9SCrq5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tSRh9SCrq5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSRh9SCrq5 .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-tSRh9SCrq5 .row {
    padding: 0 24px;
  }
}
.cid-tSRh9SCrq5 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tSRh9SCrq5 .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tSRh9SCrq5 .mbr-section-title {
  color: #2c0066;
}
.cid-tSRh9SCrq5 .mbr-section-title,
.cid-tSRh9SCrq5 .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-tSRh9SCrq5 .mbr-section-title,
.cid-tSRh9SCrq5 .mbr-section-btn DIV {
  text-align: left;
}
.cid-tSu8QBQjoe {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tSu8QBQjoe .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tSu8QBQjoe .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tSu8QBQjoe .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tSu8QBQjoe .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tSu8QBQjoe .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tSu8QBQjoe .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-tSu8QBQjoe .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tSu8QBQjoe .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-tSu8QBQjoe .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tSu8QBQjoe .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-tSu8QBQjoe .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-tSu8QBQjoe ul {
  font-size: 0;
}
.cid-tSu8QBQjoe .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tSu8QBQjoe .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-tSu8QBQjoe .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tSu8QBQjoe .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tSu8QBQjoe .mbr-gallery-filter ul li:first-child,
.cid-tSu8QBQjoe .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tSu8QBQjoe .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tSu8QBQjoe .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tSu8QBQjoe .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tSu8QBQjoe .btn.active:after {
  animation: none;
}
.cid-tSu8QBQjoe .btn:active {
  box-shadow: none !important;
}
.cid-tSu8QBQjoe .btn:hover {
  background: transparent !important;
}
.cid-tSu8QBQjoe .btn:hover:before {
  background: transparent !important;
}
.cid-tSu8QBQjoe .btn:before {
  background-color: transparent !important;
}
.cid-tSu8QBQjoe .btn:focus {
  box-shadow: none !important;
}
.cid-tSu8QBQjoe .mbr-section-title,
.cid-tSu8QBQjoe .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tSu8QBQjoe .mbr-section-title,
.cid-tSu8QBQjoe .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tSu9zQfBqp {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tSu9zQfBqp .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tSu9zQfBqp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tSu9zQfBqp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tSu9zQfBqp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tSu9zQfBqp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tSu9zQfBqp .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-tSu9zQfBqp .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tSu9zQfBqp .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-tSu9zQfBqp .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tSu9zQfBqp .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-tSu9zQfBqp .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-tSu9zQfBqp ul {
  font-size: 0;
}
.cid-tSu9zQfBqp .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tSu9zQfBqp .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-tSu9zQfBqp .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tSu9zQfBqp .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tSu9zQfBqp .mbr-gallery-filter ul li:first-child,
.cid-tSu9zQfBqp .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tSu9zQfBqp .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tSu9zQfBqp .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tSu9zQfBqp .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tSu9zQfBqp .btn.active:after {
  animation: none;
}
.cid-tSu9zQfBqp .btn:active {
  box-shadow: none !important;
}
.cid-tSu9zQfBqp .btn:hover {
  background: transparent !important;
}
.cid-tSu9zQfBqp .btn:hover:before {
  background: transparent !important;
}
.cid-tSu9zQfBqp .btn:before {
  background-color: transparent !important;
}
.cid-tSu9zQfBqp .btn:focus {
  box-shadow: none !important;
}
.cid-tSu9zQfBqp .mbr-section-title,
.cid-tSu9zQfBqp .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tSu9zQfBqp .mbr-section-title,
.cid-tSu9zQfBqp .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tSuaqbROLE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tSuaqbROLE .mbr-section-subtitle {
  color: #767676;
}
.cid-tPEmvcjTid {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tPEmvcjTid .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tPEmvcjTid .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tPEmvcjTid .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tPEmvcjTid .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tPEmvcjTid .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tPEmvcjTid .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-tPEmvcjTid .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tPEmvcjTid .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-tPEmvcjTid .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tPEmvcjTid .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-tPEmvcjTid .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-tPEmvcjTid ul {
  font-size: 0;
}
.cid-tPEmvcjTid .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tPEmvcjTid .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-tPEmvcjTid .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tPEmvcjTid .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tPEmvcjTid .mbr-gallery-filter ul li:first-child,
.cid-tPEmvcjTid .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tPEmvcjTid .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tPEmvcjTid .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tPEmvcjTid .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tPEmvcjTid .btn.active:after {
  animation: none;
}
.cid-tPEmvcjTid .btn:active {
  box-shadow: none !important;
}
.cid-tPEmvcjTid .btn:hover {
  background: transparent !important;
}
.cid-tPEmvcjTid .btn:hover:before {
  background: transparent !important;
}
.cid-tPEmvcjTid .btn:before {
  background-color: transparent !important;
}
.cid-tPEmvcjTid .btn:focus {
  box-shadow: none !important;
}
.cid-tPEmvcjTid .mbr-section-title,
.cid-tPEmvcjTid .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tPEmvcjTid .mbr-section-title,
.cid-tPEmvcjTid .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tPEmywpXUa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tPEmywpXUa .mbr-section-subtitle {
  color: #767676;
}
.cid-tPhKS4L33O {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tPhKS4L33O .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tPhKS4L33O .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tPhKS4L33O .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tPhKS4L33O .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tPhKS4L33O .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tPhKS4L33O .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-tPhKS4L33O .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tPhKS4L33O .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-tPhKS4L33O .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tPhKS4L33O .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-tPhKS4L33O .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-tPhKS4L33O ul {
  font-size: 0;
}
.cid-tPhKS4L33O .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tPhKS4L33O .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-tPhKS4L33O .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tPhKS4L33O .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tPhKS4L33O .mbr-gallery-filter ul li:first-child,
.cid-tPhKS4L33O .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tPhKS4L33O .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tPhKS4L33O .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tPhKS4L33O .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tPhKS4L33O .btn.active:after {
  animation: none;
}
.cid-tPhKS4L33O .btn:active {
  box-shadow: none !important;
}
.cid-tPhKS4L33O .btn:hover {
  background: transparent !important;
}
.cid-tPhKS4L33O .btn:hover:before {
  background: transparent !important;
}
.cid-tPhKS4L33O .btn:before {
  background-color: transparent !important;
}
.cid-tPhKS4L33O .btn:focus {
  box-shadow: none !important;
}
.cid-tPhKS4L33O .mbr-section-title,
.cid-tPhKS4L33O .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tPhKS4L33O .mbr-section-title,
.cid-tPhKS4L33O .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tPhKUpXqxy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tPhKUpXqxy .mbr-section-subtitle {
  color: #767676;
}
.cid-tPhKogGuuk {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tPhKogGuuk .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tPhKogGuuk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tPhKogGuuk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tPhKogGuuk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tPhKogGuuk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tPhKogGuuk .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-tPhKogGuuk .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tPhKogGuuk .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-tPhKogGuuk .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tPhKogGuuk .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-tPhKogGuuk .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-tPhKogGuuk ul {
  font-size: 0;
}
.cid-tPhKogGuuk .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tPhKogGuuk .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-tPhKogGuuk .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tPhKogGuuk .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tPhKogGuuk .mbr-gallery-filter ul li:first-child,
.cid-tPhKogGuuk .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tPhKogGuuk .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tPhKogGuuk .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tPhKogGuuk .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tPhKogGuuk .btn.active:after {
  animation: none;
}
.cid-tPhKogGuuk .btn:active {
  box-shadow: none !important;
}
.cid-tPhKogGuuk .btn:hover {
  background: transparent !important;
}
.cid-tPhKogGuuk .btn:hover:before {
  background: transparent !important;
}
.cid-tPhKogGuuk .btn:before {
  background-color: transparent !important;
}
.cid-tPhKogGuuk .btn:focus {
  box-shadow: none !important;
}
.cid-tPhKogGuuk .mbr-section-title,
.cid-tPhKogGuuk .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tPhKogGuuk .mbr-section-title,
.cid-tPhKogGuuk .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tPhKYOkLf6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tPhKYOkLf6 .mbr-section-subtitle {
  color: #767676;
}
.cid-tNgJpJ28lg {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tNgJpJ28lg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNgJpJ28lg .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-tNgJpJ28lg .row {
    padding: 0 24px;
  }
}
.cid-tNgJpJ28lg .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tNgJpJ28lg .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tNgJpJ28lg .mbr-section-title {
  color: #2c0066;
}
.cid-tNgJpJ28lg .mbr-section-title,
.cid-tNgJpJ28lg .mbr-section-btn {
  text-align: left;
  color: #011953;
}
.cid-tNgJhbGlEX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tNgJhbGlEX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNgJhbGlEX .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-tNgJhbGlEX .row {
    padding: 0 24px;
  }
}
.cid-tNgJhbGlEX .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tNgJhbGlEX .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tNgJhbGlEX .mbr-section-title {
  color: #2c0066;
}
.cid-tNgJhbGlEX .mbr-section-title,
.cid-tNgJhbGlEX .mbr-section-btn {
  text-align: left;
  color: #011953;
}
.cid-tNgDZyWKJI {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tNgDZyWKJI .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tNgDZyWKJI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tNgDZyWKJI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNgDZyWKJI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNgDZyWKJI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tNgDZyWKJI .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-tNgDZyWKJI .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tNgDZyWKJI .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-tNgDZyWKJI .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tNgDZyWKJI .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-tNgDZyWKJI .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-tNgDZyWKJI ul {
  font-size: 0;
}
.cid-tNgDZyWKJI .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tNgDZyWKJI .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-tNgDZyWKJI .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tNgDZyWKJI .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tNgDZyWKJI .mbr-gallery-filter ul li:first-child,
.cid-tNgDZyWKJI .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tNgDZyWKJI .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tNgDZyWKJI .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tNgDZyWKJI .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tNgDZyWKJI .btn.active:after {
  animation: none;
}
.cid-tNgDZyWKJI .btn:active {
  box-shadow: none !important;
}
.cid-tNgDZyWKJI .btn:hover {
  background: transparent !important;
}
.cid-tNgDZyWKJI .btn:hover:before {
  background: transparent !important;
}
.cid-tNgDZyWKJI .btn:before {
  background-color: transparent !important;
}
.cid-tNgDZyWKJI .btn:focus {
  box-shadow: none !important;
}
.cid-tNgDZyWKJI .mbr-section-title,
.cid-tNgDZyWKJI .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tNgDZyWKJI .mbr-section-title,
.cid-tNgDZyWKJI .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tNgKez1cm1 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tNgKez1cm1 .mbr-section-subtitle {
  color: #365c9a;
  text-align: left;
}
.cid-tNgKez1cm1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tNgKez1cm1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNgKez1cm1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNgKez1cm1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tNgKez1cm1 .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-tNgKez1cm1 .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tNgKez1cm1 .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-tNgKez1cm1 .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tNgKez1cm1 .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-tNgKez1cm1 .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-tNgKez1cm1 ul {
  font-size: 0;
}
.cid-tNgKez1cm1 .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tNgKez1cm1 .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-tNgKez1cm1 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tNgKez1cm1 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tNgKez1cm1 .mbr-gallery-filter ul li:first-child,
.cid-tNgKez1cm1 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tNgKez1cm1 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tNgKez1cm1 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tNgKez1cm1 .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tNgKez1cm1 .btn.active:after {
  animation: none;
}
.cid-tNgKez1cm1 .btn:active {
  box-shadow: none !important;
}
.cid-tNgKez1cm1 .btn:hover {
  background: transparent !important;
}
.cid-tNgKez1cm1 .btn:hover:before {
  background: transparent !important;
}
.cid-tNgKez1cm1 .btn:before {
  background-color: transparent !important;
}
.cid-tNgKez1cm1 .btn:focus {
  box-shadow: none !important;
}
.cid-tNgKez1cm1 .mbr-section-title,
.cid-tNgKez1cm1 .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tNgKez1cm1 .mbr-section-title,
.cid-tNgKez1cm1 .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-tNcj5LREbV {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tNcj5LREbV .mbr-section-subtitle {
  color: #767676;
}
.cid-tKy5sqyd7a {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKy5sqyd7a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKy5sqyd7a .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-tKy5sqyd7a .row {
    padding: 0 24px;
  }
}
.cid-tKy5sqyd7a .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tKy5sqyd7a .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tKy5sqyd7a .mbr-section-title {
  color: #2c0066;
}
.cid-tKy5sqyd7a .mbr-section-title,
.cid-tKy5sqyd7a .mbr-section-btn {
  text-align: left;
  color: #011953;
}
.cid-tKy4HeK2ei {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKy4HeK2ei .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKy4HeK2ei .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-tKy4HeK2ei .row {
    padding: 0 24px;
  }
}
.cid-tKy4HeK2ei .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tKy4HeK2ei .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tKy4HeK2ei .mbr-section-title {
  color: #2c0066;
}
.cid-tKy4HeK2ei .mbr-section-title,
.cid-tKy4HeK2ei .mbr-section-btn {
  text-align: left;
  color: #011953;
}
.cid-tKy4AH7xkW {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tKy4AH7xkW .mbr-section-subtitle {
  color: #767676;
}
.cid-tKy4AH7xkW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tKy4AH7xkW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tKy4AH7xkW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tKy4AH7xkW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tKy4AH7xkW .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-tKy4AH7xkW .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tKy4AH7xkW .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-tKy4AH7xkW .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tKy4AH7xkW .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-tKy4AH7xkW .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-tKy4AH7xkW ul {
  font-size: 0;
}
.cid-tKy4AH7xkW .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tKy4AH7xkW .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-tKy4AH7xkW .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tKy4AH7xkW .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tKy4AH7xkW .mbr-gallery-filter ul li:first-child,
.cid-tKy4AH7xkW .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tKy4AH7xkW .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tKy4AH7xkW .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tKy4AH7xkW .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tKy4AH7xkW .btn.active:after {
  animation: none;
}
.cid-tKy4AH7xkW .btn:active {
  box-shadow: none !important;
}
.cid-tKy4AH7xkW .btn:hover {
  background: transparent !important;
}
.cid-tKy4AH7xkW .btn:hover:before {
  background: transparent !important;
}
.cid-tKy4AH7xkW .btn:before {
  background-color: transparent !important;
}
.cid-tKy4AH7xkW .btn:focus {
  box-shadow: none !important;
}
.cid-tKy4AH7xkW .mbr-section-title,
.cid-tKy4AH7xkW .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tKy7n5gT29 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
}
.cid-tKy7n5gT29 .mbr-section-subtitle {
  color: #767676;
}
.cid-tJO4F1vRKi {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJO4F1vRKi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJO4F1vRKi .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-tJO4F1vRKi .row {
    padding: 0 24px;
  }
}
.cid-tJO4F1vRKi .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tJO4F1vRKi .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tJO4F1vRKi .mbr-section-title {
  color: #2c0066;
}
.cid-tJO4F1vRKi .mbr-section-title,
.cid-tJO4F1vRKi .mbr-section-btn {
  text-align: left;
  color: #00407d;
}
.cid-tJO4I2nh7b {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJO4I2nh7b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJO4I2nh7b .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-tJO4I2nh7b .row {
    padding: 0 24px;
  }
}
.cid-tJO4I2nh7b .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tJO4I2nh7b .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-tJO4I2nh7b .mbr-section-title {
  color: #2c0066;
}
.cid-tJO4I2nh7b .mbr-section-title,
.cid-tJO4I2nh7b .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-tJO4zEDHET {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tJO4zEDHET .mbr-section-subtitle {
  color: #767676;
}
.cid-tJO4zEDHET .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJO4zEDHET .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJO4zEDHET .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJO4zEDHET .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJO4zEDHET .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-tJO4zEDHET .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tJO4zEDHET .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-tJO4zEDHET .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tJO4zEDHET .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-tJO4zEDHET .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-tJO4zEDHET ul {
  font-size: 0;
}
.cid-tJO4zEDHET .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tJO4zEDHET .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-tJO4zEDHET .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tJO4zEDHET .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tJO4zEDHET .mbr-gallery-filter ul li:first-child,
.cid-tJO4zEDHET .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tJO4zEDHET .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tJO4zEDHET .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tJO4zEDHET .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tJO4zEDHET .btn.active:after {
  animation: none;
}
.cid-tJO4zEDHET .btn:active {
  box-shadow: none !important;
}
.cid-tJO4zEDHET .btn:hover {
  background: transparent !important;
}
.cid-tJO4zEDHET .btn:hover:before {
  background: transparent !important;
}
.cid-tJO4zEDHET .btn:before {
  background-color: transparent !important;
}
.cid-tJO4zEDHET .btn:focus {
  box-shadow: none !important;
}
.cid-tJO4zEDHET .mbr-section-title,
.cid-tJO4zEDHET .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tP6sptpmte {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f6f6f6;
}
.cid-tP6sptpmte .mbr-section-subtitle {
  color: #767676;
}
.cid-tP6rlfIKQ7 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tP6rlfIKQ7 .mbr-overlay {
  background: #efefef;
}
.cid-tP6rlfIKQ7 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tP6rlfIKQ7 .client-name {
  color: #8d97ad;
}
.cid-tP6rlfIKQ7 .wrap-img {
  padding-bottom: 1rem;
}
.cid-tP6rlfIKQ7 .wrap-img img {
  max-width: 100%;
}
.cid-tP6rlfIKQ7 .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-tP6rlfIKQ7 .mbr-section-title {
  color: #365c9a;
}
.cid-tP6rlfIKQ7 .card-box > p {
  color: #767676;
}
.cid-tSzgOzR02l {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tSzgOzR02l .mbr-overlay {
  background: #efefef;
}
.cid-tSzgOzR02l .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tSzgOzR02l .client-name {
  color: #8d97ad;
}
.cid-tSzgOzR02l .wrap-img {
  padding-bottom: 1rem;
}
.cid-tSzgOzR02l .wrap-img img {
  max-width: 100%;
}
.cid-tSzgOzR02l .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-tSzgOzR02l .mbr-section-title {
  color: #365c9a;
}
.cid-tSzgOzR02l .card-box > p {
  color: #767676;
}
.cid-tP6qNzna0L {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tP6qNzna0L .mbr-overlay {
  background: #efefef;
}
.cid-tP6qNzna0L .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tP6qNzna0L .client-name {
  color: #8d97ad;
}
.cid-tP6qNzna0L .wrap-img {
  padding-bottom: 1rem;
}
.cid-tP6qNzna0L .wrap-img img {
  max-width: 100%;
}
.cid-tP6qNzna0L .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-tP6qNzna0L .mbr-section-title {
  color: #365c9a;
}
.cid-tP6qNzna0L .card-box > p {
  color: #767676;
}
.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;
}
