body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #ff4f7b !important;
}
.bg-success {
  background-color: #52708b !important;
}
.bg-info {
  background-color: #3982d8 !important;
}
.bg-warning {
  background-color: #e1e7e8 !important;
}
.bg-danger {
  background-color: #152246 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #76a4c6 !important;
  border-color: #76a4c6 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #467fa9 !important;
  border-color: #467fa9 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #467fa9 !important;
  border-color: #467fa9 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #3982d8 !important;
  border-color: #3982d8 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #205da4 !important;
  border-color: #205da4 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #205da4 !important;
  border-color: #205da4 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #52708b !important;
  border-color: #52708b !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #36495b !important;
  border-color: #36495b !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #36495b !important;
  border-color: #36495b !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #e1e7e8 !important;
  border-color: #e1e7e8 !important;
  transition: all .5s;
  color: #586f72 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #586f72 !important;
  background-color: #b6c4c7 !important;
  border-color: #b6c4c7 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #586f72 !important;
  background-color: #b6c4c7 !important;
  border-color: #b6c4c7 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #152246 !important;
  border-color: #152246 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #03050b !important;
  border-color: #03050b !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #03050b !important;
  border-color: #03050b !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #e8003a !important;
  color: #e8003a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #3f7297 !important;
  color: #3f7297 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #76a4c6 !important;
  border-color: #76a4c6 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #76a4c6 !important;
  border-color: #76a4c6 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #1c518f !important;
  color: #1c518f !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #3982d8 !important;
  border-color: #3982d8 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #3982d8 !important;
  border-color: #3982d8 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #2c3c4b !important;
  color: #2c3c4b !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #52708b !important;
  border-color: #52708b !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #52708b !important;
  border-color: #52708b !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #a7b9bc !important;
  color: #a7b9bc !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #586f72 !important;
  background-color: #e1e7e8 !important;
  border-color: #e1e7e8 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #586f72 !important;
  background-color: #e1e7e8 !important;
  border-color: #e1e7e8 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #152246 !important;
  border-color: #152246 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #152246 !important;
  border-color: #152246 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff4f7b !important;
}
.text-secondary {
  color: #76a4c6 !important;
}
.text-success {
  color: #52708b !important;
}
.text-info {
  color: #3982d8 !important;
}
.text-warning {
  color: #e1e7e8 !important;
}
.text-danger {
  color: #152246 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e8003a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #3f7297 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #2c3c4b !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #1c518f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a7b9bc !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !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: #52708b;
}
.alert-info {
  background-color: #3982d8;
}
.alert-warning {
  background-color: #e1e7e8;
}
.alert-danger {
  background-color: #152246;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff4f7b;
  border-color: #ff4f7b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff4f7b;
}
.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: #99afc3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #e3eefa;
}
.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: #6d88d3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ff4f7b;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ff4f7b;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ff4f7b;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff4f7b;
  color: #ffffff;
}
.jq-number__spin {
  background-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: #ff4f7b;
  border-bottom-color: #ff4f7b;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #76a4c6 !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='%23ff4f7b' %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-tk2K5nlhAH .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-tk2K5nlhAH .nav-item,
.cid-tk2K5nlhAH .nav-link,
.cid-tk2K5nlhAH .navbar-caption {
  font-weight: normal;
}
.cid-tk2K5nlhAH .nav-item:focus,
.cid-tk2K5nlhAH .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tk2K5nlhAH .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tk2K5nlhAH .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tk2K5nlhAH .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tk2K5nlhAH .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tk2K5nlhAH .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tk2K5nlhAH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tk2K5nlhAH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tk2K5nlhAH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tk2K5nlhAH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tk2K5nlhAH .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #152246;
}
.cid-tk2K5nlhAH .navbar.opened {
  transition: all .3s;
  background: #152246 !important;
}
.cid-tk2K5nlhAH .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tk2K5nlhAH .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tk2K5nlhAH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tk2K5nlhAH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tk2K5nlhAH .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tk2K5nlhAH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tk2K5nlhAH .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-tk2K5nlhAH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tk2K5nlhAH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tk2K5nlhAH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tk2K5nlhAH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tk2K5nlhAH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tk2K5nlhAH .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tk2K5nlhAH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tk2K5nlhAH .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-tk2K5nlhAH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tk2K5nlhAH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tk2K5nlhAH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tk2K5nlhAH .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tk2K5nlhAH .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tk2K5nlhAH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tk2K5nlhAH .navbar.navbar-short {
  background: #152246 !important;
  min-height: 60px;
}
.cid-tk2K5nlhAH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tk2K5nlhAH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tk2K5nlhAH .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-tk2K5nlhAH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tk2K5nlhAH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tk2K5nlhAH .dropdown-item.active,
.cid-tk2K5nlhAH .dropdown-item:active {
  background-color: transparent;
}
.cid-tk2K5nlhAH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tk2K5nlhAH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tk2K5nlhAH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #152246;
}
.cid-tk2K5nlhAH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tk2K5nlhAH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tk2K5nlhAH ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tk2K5nlhAH .navbar-buttons {
  text-align: center;
}
.cid-tk2K5nlhAH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tk2K5nlhAH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e1e7e8;
}
.cid-tk2K5nlhAH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tk2K5nlhAH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tk2K5nlhAH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tk2K5nlhAH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tk2K5nlhAH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tk2K5nlhAH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tk2K5nlhAH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tk2K5nlhAH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tk2K5nlhAH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tk2K5nlhAH a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tk2K5nlhAH .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tk2K5nlhAH .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tk2K5nlhAH .soc-item {
  margin: .5rem .3rem;
}
.cid-tk2K5nlhAH .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tk2K5nlhAH .navbar {
    height: 77px;
  }
  .cid-tk2K5nlhAH .navbar.opened {
    height: auto;
  }
  .cid-tk2K5nlhAH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tk2PJU4yeL {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-5.jpg");
}
.cid-tk2PJU4yeL .mbr-overlay {
  background: #2bdc9d;
}
.cid-tk2PJU4yeL .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tk2RlIOh0j {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-4.jpg");
}
.cid-tk2RlIOh0j .mbr-overlay {
  background: #efefef;
  background: linear-gradient(90deg, #efefef, #152246);
}
.cid-tk2RlIOh0j .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-tk2RlIOh0j .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-tk2RlIOh0j .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tk2RlIOh0j .mbr-text {
  color: #444444;
}
.cid-tk2RlIOh0j .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tk2RlIOh0j .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tk2RlIOh0j .card-title {
    text-align: center;
  }
  .cid-tk2RlIOh0j p.mbr-text,
  .cid-tk2RlIOh0j p.date {
    text-align: center;
  }
}
.cid-tk2KhbEoxH {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #e1e7e8;
}
@media (max-width: 767px) {
  .cid-tk2KhbEoxH .content {
    text-align: center;
  }
  .cid-tk2KhbEoxH .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tk2KhbEoxH .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tk2KhbEoxH .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tk2KhbEoxH .media-wrap img {
  height: 6rem;
}
.cid-tk2KhbEoxH .mbr-text {
  color: #8d97ad;
}
.cid-tk2KhbEoxH .p-title {
  font-size: 17px;
}
.cid-tk2KhbEoxH .p-title span {
  color: #111111;
}
.cid-tk2KhbEoxH .title-card {
  font-size: 1.3rem;
}
.cid-tk2KhbEoxH .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tk2KhbEoxH .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tk2KhbEoxH .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tk2KhbEoxH .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tk2KhbEoxH .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tk2KhbEoxH .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tk2KhbEoxH .copyright img {
  margin-right: 10px;
}
.cid-tk2KhbEoxH .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #152246;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tk2KhbEoxH .icon-transition span:hover {
  background-color: #76a4c6;
}
@media (max-width: 767px) {
  .cid-tk2KhbEoxH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tk2KhbEoxH .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tk2KhbEoxH .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tk2KhbEoxH H5 {
  color: #152246;
}
.cid-tk2WKC5NoQ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-tk2WKC5NoQ .nav-item,
.cid-tk2WKC5NoQ .nav-link,
.cid-tk2WKC5NoQ .navbar-caption {
  font-weight: normal;
}
.cid-tk2WKC5NoQ .nav-item:focus,
.cid-tk2WKC5NoQ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tk2WKC5NoQ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tk2WKC5NoQ .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tk2WKC5NoQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tk2WKC5NoQ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tk2WKC5NoQ .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tk2WKC5NoQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tk2WKC5NoQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tk2WKC5NoQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tk2WKC5NoQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tk2WKC5NoQ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #152246;
}
.cid-tk2WKC5NoQ .navbar.opened {
  transition: all .3s;
  background: #152246 !important;
}
.cid-tk2WKC5NoQ .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tk2WKC5NoQ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tk2WKC5NoQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tk2WKC5NoQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tk2WKC5NoQ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tk2WKC5NoQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tk2WKC5NoQ .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-tk2WKC5NoQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tk2WKC5NoQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tk2WKC5NoQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tk2WKC5NoQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tk2WKC5NoQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tk2WKC5NoQ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tk2WKC5NoQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tk2WKC5NoQ .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-tk2WKC5NoQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tk2WKC5NoQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tk2WKC5NoQ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tk2WKC5NoQ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tk2WKC5NoQ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tk2WKC5NoQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tk2WKC5NoQ .navbar.navbar-short {
  background: #152246 !important;
  min-height: 60px;
}
.cid-tk2WKC5NoQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tk2WKC5NoQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tk2WKC5NoQ .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-tk2WKC5NoQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tk2WKC5NoQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tk2WKC5NoQ .dropdown-item.active,
.cid-tk2WKC5NoQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tk2WKC5NoQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tk2WKC5NoQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tk2WKC5NoQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #152246;
}
.cid-tk2WKC5NoQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tk2WKC5NoQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tk2WKC5NoQ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tk2WKC5NoQ .navbar-buttons {
  text-align: center;
}
.cid-tk2WKC5NoQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tk2WKC5NoQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e1e7e8;
}
.cid-tk2WKC5NoQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tk2WKC5NoQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tk2WKC5NoQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tk2WKC5NoQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tk2WKC5NoQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tk2WKC5NoQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tk2WKC5NoQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tk2WKC5NoQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tk2WKC5NoQ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tk2WKC5NoQ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tk2WKC5NoQ .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tk2WKC5NoQ .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tk2WKC5NoQ .soc-item {
  margin: .5rem .3rem;
}
.cid-tk2WKC5NoQ .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tk2WKC5NoQ .navbar {
    height: 77px;
  }
  .cid-tk2WKC5NoQ .navbar.opened {
    height: auto;
  }
  .cid-tk2WKC5NoQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tk2WKCxTeS {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-5.jpg");
}
.cid-tk2WKCxTeS .mbr-overlay {
  background: #2bdc9d;
}
.cid-tk2WKCxTeS .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tk2YCO7l7X {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tk2YCO7l7X .mbr-text {
  color: #152246;
}
.cid-tk2WKDaqY3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e1e7e8;
}
@media (max-width: 767px) {
  .cid-tk2WKDaqY3 .content {
    text-align: center;
  }
  .cid-tk2WKDaqY3 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tk2WKDaqY3 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tk2WKDaqY3 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tk2WKDaqY3 .media-wrap img {
  height: 6rem;
}
.cid-tk2WKDaqY3 .mbr-text {
  color: #8d97ad;
}
.cid-tk2WKDaqY3 .p-title {
  font-size: 17px;
}
.cid-tk2WKDaqY3 .p-title span {
  color: #111111;
}
.cid-tk2WKDaqY3 .title-card {
  font-size: 1.3rem;
}
.cid-tk2WKDaqY3 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tk2WKDaqY3 .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tk2WKDaqY3 .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tk2WKDaqY3 .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tk2WKDaqY3 .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tk2WKDaqY3 .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tk2WKDaqY3 .copyright img {
  margin-right: 10px;
}
.cid-tk2WKDaqY3 .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #152246;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tk2WKDaqY3 .icon-transition span:hover {
  background-color: #76a4c6;
}
@media (max-width: 767px) {
  .cid-tk2WKDaqY3 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tk2WKDaqY3 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tk2WKDaqY3 .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tk2WKDaqY3 H5 {
  color: #3982d8;
}
.cid-tk2WKDaqY3 .p-title,
.cid-tk2WKDaqY3 .social-media {
  color: #152246;
}
.cid-tsy6hzrrFu .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-tsy6hzrrFu .nav-item,
.cid-tsy6hzrrFu .nav-link,
.cid-tsy6hzrrFu .navbar-caption {
  font-weight: normal;
}
.cid-tsy6hzrrFu .nav-item:focus,
.cid-tsy6hzrrFu .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tsy6hzrrFu .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tsy6hzrrFu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tsy6hzrrFu .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tsy6hzrrFu .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tsy6hzrrFu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tsy6hzrrFu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tsy6hzrrFu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tsy6hzrrFu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsy6hzrrFu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsy6hzrrFu .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #152246;
}
.cid-tsy6hzrrFu .navbar.opened {
  transition: all .3s;
  background: #152246 !important;
}
.cid-tsy6hzrrFu .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tsy6hzrrFu .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsy6hzrrFu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsy6hzrrFu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsy6hzrrFu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tsy6hzrrFu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsy6hzrrFu .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-tsy6hzrrFu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsy6hzrrFu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsy6hzrrFu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tsy6hzrrFu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsy6hzrrFu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsy6hzrrFu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tsy6hzrrFu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsy6hzrrFu .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-tsy6hzrrFu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tsy6hzrrFu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsy6hzrrFu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tsy6hzrrFu .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsy6hzrrFu .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tsy6hzrrFu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tsy6hzrrFu .navbar.navbar-short {
  background: #152246 !important;
  min-height: 60px;
}
.cid-tsy6hzrrFu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tsy6hzrrFu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tsy6hzrrFu .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-tsy6hzrrFu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsy6hzrrFu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsy6hzrrFu .dropdown-item.active,
.cid-tsy6hzrrFu .dropdown-item:active {
  background-color: transparent;
}
.cid-tsy6hzrrFu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsy6hzrrFu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsy6hzrrFu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #152246;
}
.cid-tsy6hzrrFu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsy6hzrrFu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsy6hzrrFu ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tsy6hzrrFu .navbar-buttons {
  text-align: center;
}
.cid-tsy6hzrrFu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsy6hzrrFu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e1e7e8;
}
.cid-tsy6hzrrFu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tsy6hzrrFu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tsy6hzrrFu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tsy6hzrrFu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tsy6hzrrFu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsy6hzrrFu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tsy6hzrrFu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tsy6hzrrFu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsy6hzrrFu .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tsy6hzrrFu a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsy6hzrrFu .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tsy6hzrrFu .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tsy6hzrrFu .soc-item {
  margin: .5rem .3rem;
}
.cid-tsy6hzrrFu .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsy6hzrrFu .navbar {
    height: 77px;
  }
  .cid-tsy6hzrrFu .navbar.opened {
    height: auto;
  }
  .cid-tsy6hzrrFu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsy6hzYNBp {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-5.jpg");
}
.cid-tsy6hzYNBp .mbr-overlay {
  background: #2bdc9d;
}
.cid-tsy6hzYNBp .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tsy8WYiyv4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tsy8WYiyv4 .mbr-iconfont {
  color: #8d97ad;
}
.cid-tsy8WYiyv4 .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-tsy8WYiyv4 .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-tsy8WYiyv4 .mbr-section-subtitle {
  color: #04367c;
}
.cid-tsy8WYiyv4 .card-title {
  margin-bottom: 0.3rem;
}
.cid-tsy8WYiyv4 .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tsy8WYiyv4 .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsy8WYiyv4 .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tsyaXNAdjD {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-tsyaXNAdjD .mbr-iconfont {
  color: #8d97ad;
}
.cid-tsyaXNAdjD .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-tsyaXNAdjD .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-tsyaXNAdjD .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tsyaXNAdjD .card-title {
  margin-bottom: 0.3rem;
}
.cid-tsyaXNAdjD .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tsyaXNAdjD .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsyaXNAdjD .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tsy6hAJVs0 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #e1e7e8;
}
@media (max-width: 767px) {
  .cid-tsy6hAJVs0 .content {
    text-align: center;
  }
  .cid-tsy6hAJVs0 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tsy6hAJVs0 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tsy6hAJVs0 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tsy6hAJVs0 .media-wrap img {
  height: 6rem;
}
.cid-tsy6hAJVs0 .mbr-text {
  color: #8d97ad;
}
.cid-tsy6hAJVs0 .p-title {
  font-size: 17px;
}
.cid-tsy6hAJVs0 .p-title span {
  color: #111111;
}
.cid-tsy6hAJVs0 .title-card {
  font-size: 1.3rem;
}
.cid-tsy6hAJVs0 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tsy6hAJVs0 .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tsy6hAJVs0 .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tsy6hAJVs0 .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tsy6hAJVs0 .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tsy6hAJVs0 .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsy6hAJVs0 .copyright img {
  margin-right: 10px;
}
.cid-tsy6hAJVs0 .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #152246;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tsy6hAJVs0 .icon-transition span:hover {
  background-color: #76a4c6;
}
@media (max-width: 767px) {
  .cid-tsy6hAJVs0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsy6hAJVs0 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tsy6hAJVs0 .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsy6hAJVs0 H5 {
  color: #152246;
}
.cid-tsydmMlHXP .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-tsydmMlHXP .nav-item,
.cid-tsydmMlHXP .nav-link,
.cid-tsydmMlHXP .navbar-caption {
  font-weight: normal;
}
.cid-tsydmMlHXP .nav-item:focus,
.cid-tsydmMlHXP .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tsydmMlHXP .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tsydmMlHXP .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tsydmMlHXP .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tsydmMlHXP .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tsydmMlHXP .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tsydmMlHXP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tsydmMlHXP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tsydmMlHXP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsydmMlHXP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsydmMlHXP .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #152246;
}
.cid-tsydmMlHXP .navbar.opened {
  transition: all .3s;
  background: #152246 !important;
}
.cid-tsydmMlHXP .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tsydmMlHXP .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsydmMlHXP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsydmMlHXP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsydmMlHXP .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tsydmMlHXP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsydmMlHXP .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-tsydmMlHXP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsydmMlHXP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsydmMlHXP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tsydmMlHXP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsydmMlHXP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsydmMlHXP .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tsydmMlHXP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsydmMlHXP .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-tsydmMlHXP .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tsydmMlHXP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsydmMlHXP .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tsydmMlHXP .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsydmMlHXP .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tsydmMlHXP .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tsydmMlHXP .navbar.navbar-short {
  background: #152246 !important;
  min-height: 60px;
}
.cid-tsydmMlHXP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tsydmMlHXP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tsydmMlHXP .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-tsydmMlHXP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsydmMlHXP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsydmMlHXP .dropdown-item.active,
.cid-tsydmMlHXP .dropdown-item:active {
  background-color: transparent;
}
.cid-tsydmMlHXP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsydmMlHXP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsydmMlHXP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #152246;
}
.cid-tsydmMlHXP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsydmMlHXP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsydmMlHXP ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tsydmMlHXP .navbar-buttons {
  text-align: center;
}
.cid-tsydmMlHXP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsydmMlHXP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e1e7e8;
}
.cid-tsydmMlHXP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tsydmMlHXP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tsydmMlHXP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tsydmMlHXP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tsydmMlHXP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsydmMlHXP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tsydmMlHXP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tsydmMlHXP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsydmMlHXP .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tsydmMlHXP a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsydmMlHXP .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tsydmMlHXP .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tsydmMlHXP .soc-item {
  margin: .5rem .3rem;
}
.cid-tsydmMlHXP .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsydmMlHXP .navbar {
    height: 77px;
  }
  .cid-tsydmMlHXP .navbar.opened {
    height: auto;
  }
  .cid-tsydmMlHXP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsydmN4x5V {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-5.jpg");
}
.cid-tsydmN4x5V .mbr-overlay {
  background: #2bdc9d;
}
.cid-tsydmN4x5V .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tsyUoPcZU9 {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tsyUoPcZU9 .mbr-text {
  color: #43263a;
}
.cid-tsydmPfhrE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #e1e7e8;
}
@media (max-width: 767px) {
  .cid-tsydmPfhrE .content {
    text-align: center;
  }
  .cid-tsydmPfhrE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tsydmPfhrE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tsydmPfhrE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tsydmPfhrE .media-wrap img {
  height: 6rem;
}
.cid-tsydmPfhrE .mbr-text {
  color: #8d97ad;
}
.cid-tsydmPfhrE .p-title {
  font-size: 17px;
}
.cid-tsydmPfhrE .p-title span {
  color: #111111;
}
.cid-tsydmPfhrE .title-card {
  font-size: 1.3rem;
}
.cid-tsydmPfhrE .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tsydmPfhrE .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tsydmPfhrE .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tsydmPfhrE .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tsydmPfhrE .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tsydmPfhrE .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsydmPfhrE .copyright img {
  margin-right: 10px;
}
.cid-tsydmPfhrE .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #152246;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tsydmPfhrE .icon-transition span:hover {
  background-color: #76a4c6;
}
@media (max-width: 767px) {
  .cid-tsydmPfhrE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsydmPfhrE .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tsydmPfhrE .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsydmPfhrE H5 {
  color: #152246;
}
.cid-tsyUH1Y6jF .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-tsyUH1Y6jF .nav-item,
.cid-tsyUH1Y6jF .nav-link,
.cid-tsyUH1Y6jF .navbar-caption {
  font-weight: normal;
}
.cid-tsyUH1Y6jF .nav-item:focus,
.cid-tsyUH1Y6jF .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tsyUH1Y6jF .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tsyUH1Y6jF .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tsyUH1Y6jF .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tsyUH1Y6jF .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tsyUH1Y6jF .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tsyUH1Y6jF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tsyUH1Y6jF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tsyUH1Y6jF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsyUH1Y6jF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsyUH1Y6jF .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #152246;
}
.cid-tsyUH1Y6jF .navbar.opened {
  transition: all .3s;
  background: #152246 !important;
}
.cid-tsyUH1Y6jF .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tsyUH1Y6jF .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsyUH1Y6jF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsyUH1Y6jF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsyUH1Y6jF .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tsyUH1Y6jF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsyUH1Y6jF .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-tsyUH1Y6jF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsyUH1Y6jF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsyUH1Y6jF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tsyUH1Y6jF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsyUH1Y6jF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsyUH1Y6jF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tsyUH1Y6jF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsyUH1Y6jF .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-tsyUH1Y6jF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tsyUH1Y6jF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsyUH1Y6jF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tsyUH1Y6jF .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsyUH1Y6jF .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tsyUH1Y6jF .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tsyUH1Y6jF .navbar.navbar-short {
  background: #152246 !important;
  min-height: 60px;
}
.cid-tsyUH1Y6jF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tsyUH1Y6jF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tsyUH1Y6jF .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-tsyUH1Y6jF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsyUH1Y6jF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsyUH1Y6jF .dropdown-item.active,
.cid-tsyUH1Y6jF .dropdown-item:active {
  background-color: transparent;
}
.cid-tsyUH1Y6jF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsyUH1Y6jF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsyUH1Y6jF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #152246;
}
.cid-tsyUH1Y6jF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsyUH1Y6jF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsyUH1Y6jF ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tsyUH1Y6jF .navbar-buttons {
  text-align: center;
}
.cid-tsyUH1Y6jF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsyUH1Y6jF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e1e7e8;
}
.cid-tsyUH1Y6jF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tsyUH1Y6jF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tsyUH1Y6jF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tsyUH1Y6jF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tsyUH1Y6jF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsyUH1Y6jF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tsyUH1Y6jF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tsyUH1Y6jF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsyUH1Y6jF .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tsyUH1Y6jF a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsyUH1Y6jF .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tsyUH1Y6jF .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tsyUH1Y6jF .soc-item {
  margin: .5rem .3rem;
}
.cid-tsyUH1Y6jF .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsyUH1Y6jF .navbar {
    height: 77px;
  }
  .cid-tsyUH1Y6jF .navbar.opened {
    height: auto;
  }
  .cid-tsyUH1Y6jF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsyUH2BFkl {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-5.jpg");
}
.cid-tsyUH2BFkl .mbr-overlay {
  background: #2bdc9d;
}
.cid-tsyUH2BFkl .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tsyUH2Xb17 {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tsyUH2Xb17 .mbr-text {
  color: #43263a;
}
.cid-tsyUH3aVjT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #e1e7e8;
}
@media (max-width: 767px) {
  .cid-tsyUH3aVjT .content {
    text-align: center;
  }
  .cid-tsyUH3aVjT .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tsyUH3aVjT .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tsyUH3aVjT .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tsyUH3aVjT .media-wrap img {
  height: 6rem;
}
.cid-tsyUH3aVjT .mbr-text {
  color: #8d97ad;
}
.cid-tsyUH3aVjT .p-title {
  font-size: 17px;
}
.cid-tsyUH3aVjT .p-title span {
  color: #111111;
}
.cid-tsyUH3aVjT .title-card {
  font-size: 1.3rem;
}
.cid-tsyUH3aVjT .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tsyUH3aVjT .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tsyUH3aVjT .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tsyUH3aVjT .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tsyUH3aVjT .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tsyUH3aVjT .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsyUH3aVjT .copyright img {
  margin-right: 10px;
}
.cid-tsyUH3aVjT .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #152246;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tsyUH3aVjT .icon-transition span:hover {
  background-color: #76a4c6;
}
@media (max-width: 767px) {
  .cid-tsyUH3aVjT .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsyUH3aVjT .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tsyUH3aVjT .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsyUH3aVjT H5 {
  color: #152246;
}
.cid-tsyUKMPHHb .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-tsyUKMPHHb .nav-item,
.cid-tsyUKMPHHb .nav-link,
.cid-tsyUKMPHHb .navbar-caption {
  font-weight: normal;
}
.cid-tsyUKMPHHb .nav-item:focus,
.cid-tsyUKMPHHb .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tsyUKMPHHb .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tsyUKMPHHb .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tsyUKMPHHb .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tsyUKMPHHb .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tsyUKMPHHb .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tsyUKMPHHb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tsyUKMPHHb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tsyUKMPHHb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsyUKMPHHb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsyUKMPHHb .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #152246;
}
.cid-tsyUKMPHHb .navbar.opened {
  transition: all .3s;
  background: #152246 !important;
}
.cid-tsyUKMPHHb .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tsyUKMPHHb .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsyUKMPHHb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsyUKMPHHb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsyUKMPHHb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tsyUKMPHHb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsyUKMPHHb .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-tsyUKMPHHb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsyUKMPHHb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsyUKMPHHb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tsyUKMPHHb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsyUKMPHHb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsyUKMPHHb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tsyUKMPHHb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsyUKMPHHb .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-tsyUKMPHHb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tsyUKMPHHb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsyUKMPHHb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tsyUKMPHHb .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsyUKMPHHb .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tsyUKMPHHb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tsyUKMPHHb .navbar.navbar-short {
  background: #152246 !important;
  min-height: 60px;
}
.cid-tsyUKMPHHb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tsyUKMPHHb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tsyUKMPHHb .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-tsyUKMPHHb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsyUKMPHHb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsyUKMPHHb .dropdown-item.active,
.cid-tsyUKMPHHb .dropdown-item:active {
  background-color: transparent;
}
.cid-tsyUKMPHHb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsyUKMPHHb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsyUKMPHHb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #152246;
}
.cid-tsyUKMPHHb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsyUKMPHHb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsyUKMPHHb ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tsyUKMPHHb .navbar-buttons {
  text-align: center;
}
.cid-tsyUKMPHHb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsyUKMPHHb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e1e7e8;
}
.cid-tsyUKMPHHb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tsyUKMPHHb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tsyUKMPHHb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tsyUKMPHHb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tsyUKMPHHb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsyUKMPHHb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tsyUKMPHHb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tsyUKMPHHb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsyUKMPHHb .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tsyUKMPHHb a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsyUKMPHHb .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tsyUKMPHHb .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tsyUKMPHHb .soc-item {
  margin: .5rem .3rem;
}
.cid-tsyUKMPHHb .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsyUKMPHHb .navbar {
    height: 77px;
  }
  .cid-tsyUKMPHHb .navbar.opened {
    height: auto;
  }
  .cid-tsyUKMPHHb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsyUKNhmQq {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-5.jpg");
}
.cid-tsyUKNhmQq .mbr-overlay {
  background: #2bdc9d;
}
.cid-tsyUKNhmQq .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tsyUKNL0y7 {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tsyUKNL0y7 .mbr-text {
  color: #43263a;
}
.cid-tsyUKO1KuS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #e1e7e8;
}
@media (max-width: 767px) {
  .cid-tsyUKO1KuS .content {
    text-align: center;
  }
  .cid-tsyUKO1KuS .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tsyUKO1KuS .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tsyUKO1KuS .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tsyUKO1KuS .media-wrap img {
  height: 6rem;
}
.cid-tsyUKO1KuS .mbr-text {
  color: #8d97ad;
}
.cid-tsyUKO1KuS .p-title {
  font-size: 17px;
}
.cid-tsyUKO1KuS .p-title span {
  color: #111111;
}
.cid-tsyUKO1KuS .title-card {
  font-size: 1.3rem;
}
.cid-tsyUKO1KuS .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tsyUKO1KuS .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tsyUKO1KuS .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tsyUKO1KuS .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tsyUKO1KuS .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tsyUKO1KuS .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsyUKO1KuS .copyright img {
  margin-right: 10px;
}
.cid-tsyUKO1KuS .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #152246;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tsyUKO1KuS .icon-transition span:hover {
  background-color: #76a4c6;
}
@media (max-width: 767px) {
  .cid-tsyUKO1KuS .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsyUKO1KuS .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tsyUKO1KuS .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsyUKO1KuS H5 {
  color: #152246;
}
.cid-tsyULQFbPB .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-tsyULQFbPB .nav-item,
.cid-tsyULQFbPB .nav-link,
.cid-tsyULQFbPB .navbar-caption {
  font-weight: normal;
}
.cid-tsyULQFbPB .nav-item:focus,
.cid-tsyULQFbPB .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tsyULQFbPB .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tsyULQFbPB .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tsyULQFbPB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tsyULQFbPB .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tsyULQFbPB .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tsyULQFbPB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tsyULQFbPB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tsyULQFbPB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsyULQFbPB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsyULQFbPB .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #152246;
}
.cid-tsyULQFbPB .navbar.opened {
  transition: all .3s;
  background: #152246 !important;
}
.cid-tsyULQFbPB .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tsyULQFbPB .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsyULQFbPB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsyULQFbPB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsyULQFbPB .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tsyULQFbPB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsyULQFbPB .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-tsyULQFbPB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsyULQFbPB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsyULQFbPB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tsyULQFbPB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsyULQFbPB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsyULQFbPB .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tsyULQFbPB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsyULQFbPB .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-tsyULQFbPB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tsyULQFbPB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsyULQFbPB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tsyULQFbPB .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsyULQFbPB .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tsyULQFbPB .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tsyULQFbPB .navbar.navbar-short {
  background: #152246 !important;
  min-height: 60px;
}
.cid-tsyULQFbPB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tsyULQFbPB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tsyULQFbPB .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-tsyULQFbPB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsyULQFbPB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsyULQFbPB .dropdown-item.active,
.cid-tsyULQFbPB .dropdown-item:active {
  background-color: transparent;
}
.cid-tsyULQFbPB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsyULQFbPB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsyULQFbPB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #152246;
}
.cid-tsyULQFbPB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsyULQFbPB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsyULQFbPB ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tsyULQFbPB .navbar-buttons {
  text-align: center;
}
.cid-tsyULQFbPB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsyULQFbPB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e1e7e8;
}
.cid-tsyULQFbPB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tsyULQFbPB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tsyULQFbPB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tsyULQFbPB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tsyULQFbPB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsyULQFbPB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tsyULQFbPB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tsyULQFbPB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsyULQFbPB .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tsyULQFbPB a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsyULQFbPB .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tsyULQFbPB .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tsyULQFbPB .soc-item {
  margin: .5rem .3rem;
}
.cid-tsyULQFbPB .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsyULQFbPB .navbar {
    height: 77px;
  }
  .cid-tsyULQFbPB .navbar.opened {
    height: auto;
  }
  .cid-tsyULQFbPB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsyULR3VrU {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-5.jpg");
}
.cid-tsyULR3VrU .mbr-overlay {
  background: #2bdc9d;
}
.cid-tsyULR3VrU .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tsyULRoLYt {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tsyULRoLYt .mbr-text {
  color: #43263a;
}
.cid-tsyULRDV9U {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #e1e7e8;
}
@media (max-width: 767px) {
  .cid-tsyULRDV9U .content {
    text-align: center;
  }
  .cid-tsyULRDV9U .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tsyULRDV9U .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tsyULRDV9U .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tsyULRDV9U .media-wrap img {
  height: 6rem;
}
.cid-tsyULRDV9U .mbr-text {
  color: #8d97ad;
}
.cid-tsyULRDV9U .p-title {
  font-size: 17px;
}
.cid-tsyULRDV9U .p-title span {
  color: #111111;
}
.cid-tsyULRDV9U .title-card {
  font-size: 1.3rem;
}
.cid-tsyULRDV9U .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tsyULRDV9U .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tsyULRDV9U .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tsyULRDV9U .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tsyULRDV9U .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tsyULRDV9U .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsyULRDV9U .copyright img {
  margin-right: 10px;
}
.cid-tsyULRDV9U .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #152246;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tsyULRDV9U .icon-transition span:hover {
  background-color: #76a4c6;
}
@media (max-width: 767px) {
  .cid-tsyULRDV9U .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsyULRDV9U .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tsyULRDV9U .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsyULRDV9U H5 {
  color: #152246;
}
.cid-tsyUMnCvrj .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-tsyUMnCvrj .nav-item,
.cid-tsyUMnCvrj .nav-link,
.cid-tsyUMnCvrj .navbar-caption {
  font-weight: normal;
}
.cid-tsyUMnCvrj .nav-item:focus,
.cid-tsyUMnCvrj .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tsyUMnCvrj .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tsyUMnCvrj .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tsyUMnCvrj .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tsyUMnCvrj .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tsyUMnCvrj .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tsyUMnCvrj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tsyUMnCvrj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tsyUMnCvrj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsyUMnCvrj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsyUMnCvrj .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #152246;
}
.cid-tsyUMnCvrj .navbar.opened {
  transition: all .3s;
  background: #152246 !important;
}
.cid-tsyUMnCvrj .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tsyUMnCvrj .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsyUMnCvrj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsyUMnCvrj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsyUMnCvrj .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tsyUMnCvrj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsyUMnCvrj .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-tsyUMnCvrj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsyUMnCvrj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsyUMnCvrj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tsyUMnCvrj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsyUMnCvrj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsyUMnCvrj .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tsyUMnCvrj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsyUMnCvrj .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-tsyUMnCvrj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tsyUMnCvrj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsyUMnCvrj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tsyUMnCvrj .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsyUMnCvrj .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tsyUMnCvrj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tsyUMnCvrj .navbar.navbar-short {
  background: #152246 !important;
  min-height: 60px;
}
.cid-tsyUMnCvrj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tsyUMnCvrj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tsyUMnCvrj .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-tsyUMnCvrj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsyUMnCvrj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsyUMnCvrj .dropdown-item.active,
.cid-tsyUMnCvrj .dropdown-item:active {
  background-color: transparent;
}
.cid-tsyUMnCvrj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsyUMnCvrj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsyUMnCvrj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #152246;
}
.cid-tsyUMnCvrj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsyUMnCvrj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsyUMnCvrj ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tsyUMnCvrj .navbar-buttons {
  text-align: center;
}
.cid-tsyUMnCvrj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsyUMnCvrj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e1e7e8;
}
.cid-tsyUMnCvrj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tsyUMnCvrj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tsyUMnCvrj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tsyUMnCvrj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tsyUMnCvrj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsyUMnCvrj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tsyUMnCvrj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tsyUMnCvrj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsyUMnCvrj .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tsyUMnCvrj a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsyUMnCvrj .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tsyUMnCvrj .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tsyUMnCvrj .soc-item {
  margin: .5rem .3rem;
}
.cid-tsyUMnCvrj .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsyUMnCvrj .navbar {
    height: 77px;
  }
  .cid-tsyUMnCvrj .navbar.opened {
    height: auto;
  }
  .cid-tsyUMnCvrj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsyUMnYLNO {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-5.jpg");
}
.cid-tsyUMnYLNO .mbr-overlay {
  background: #2bdc9d;
}
.cid-tsyUMnYLNO .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tsyUMokcS3 {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tsyUMokcS3 .mbr-text {
  color: #43263a;
}
.cid-tsyUMoxpsK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #e1e7e8;
}
@media (max-width: 767px) {
  .cid-tsyUMoxpsK .content {
    text-align: center;
  }
  .cid-tsyUMoxpsK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tsyUMoxpsK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tsyUMoxpsK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tsyUMoxpsK .media-wrap img {
  height: 6rem;
}
.cid-tsyUMoxpsK .mbr-text {
  color: #8d97ad;
}
.cid-tsyUMoxpsK .p-title {
  font-size: 17px;
}
.cid-tsyUMoxpsK .p-title span {
  color: #111111;
}
.cid-tsyUMoxpsK .title-card {
  font-size: 1.3rem;
}
.cid-tsyUMoxpsK .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tsyUMoxpsK .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tsyUMoxpsK .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tsyUMoxpsK .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tsyUMoxpsK .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tsyUMoxpsK .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsyUMoxpsK .copyright img {
  margin-right: 10px;
}
.cid-tsyUMoxpsK .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #152246;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tsyUMoxpsK .icon-transition span:hover {
  background-color: #76a4c6;
}
@media (max-width: 767px) {
  .cid-tsyUMoxpsK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsyUMoxpsK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tsyUMoxpsK .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsyUMoxpsK H5 {
  color: #152246;
}
.cid-tsyVKOeudU .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-tsyVKOeudU .nav-item,
.cid-tsyVKOeudU .nav-link,
.cid-tsyVKOeudU .navbar-caption {
  font-weight: normal;
}
.cid-tsyVKOeudU .nav-item:focus,
.cid-tsyVKOeudU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tsyVKOeudU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tsyVKOeudU .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tsyVKOeudU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tsyVKOeudU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tsyVKOeudU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tsyVKOeudU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tsyVKOeudU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tsyVKOeudU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsyVKOeudU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsyVKOeudU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #152246;
}
.cid-tsyVKOeudU .navbar.opened {
  transition: all .3s;
  background: #152246 !important;
}
.cid-tsyVKOeudU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tsyVKOeudU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsyVKOeudU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsyVKOeudU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsyVKOeudU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tsyVKOeudU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsyVKOeudU .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-tsyVKOeudU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsyVKOeudU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsyVKOeudU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tsyVKOeudU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsyVKOeudU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsyVKOeudU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tsyVKOeudU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsyVKOeudU .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-tsyVKOeudU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tsyVKOeudU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsyVKOeudU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tsyVKOeudU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsyVKOeudU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tsyVKOeudU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tsyVKOeudU .navbar.navbar-short {
  background: #152246 !important;
  min-height: 60px;
}
.cid-tsyVKOeudU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tsyVKOeudU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tsyVKOeudU .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-tsyVKOeudU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsyVKOeudU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsyVKOeudU .dropdown-item.active,
.cid-tsyVKOeudU .dropdown-item:active {
  background-color: transparent;
}
.cid-tsyVKOeudU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsyVKOeudU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsyVKOeudU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #152246;
}
.cid-tsyVKOeudU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsyVKOeudU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsyVKOeudU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tsyVKOeudU .navbar-buttons {
  text-align: center;
}
.cid-tsyVKOeudU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsyVKOeudU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e1e7e8;
}
.cid-tsyVKOeudU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tsyVKOeudU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tsyVKOeudU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tsyVKOeudU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tsyVKOeudU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsyVKOeudU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tsyVKOeudU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tsyVKOeudU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsyVKOeudU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tsyVKOeudU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsyVKOeudU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tsyVKOeudU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tsyVKOeudU .soc-item {
  margin: .5rem .3rem;
}
.cid-tsyVKOeudU .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsyVKOeudU .navbar {
    height: 77px;
  }
  .cid-tsyVKOeudU .navbar.opened {
    height: auto;
  }
  .cid-tsyVKOeudU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsyVKOLowD {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-5.jpg");
}
.cid-tsyVKOLowD .mbr-overlay {
  background: #2bdc9d;
}
.cid-tsyVKOLowD .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tsyVKP6HhW {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tsyVKP6HhW .mbr-text {
  color: #43263a;
}
.cid-tsyVKPm1c9 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #e1e7e8;
}
@media (max-width: 767px) {
  .cid-tsyVKPm1c9 .content {
    text-align: center;
  }
  .cid-tsyVKPm1c9 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tsyVKPm1c9 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tsyVKPm1c9 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tsyVKPm1c9 .media-wrap img {
  height: 6rem;
}
.cid-tsyVKPm1c9 .mbr-text {
  color: #8d97ad;
}
.cid-tsyVKPm1c9 .p-title {
  font-size: 17px;
}
.cid-tsyVKPm1c9 .p-title span {
  color: #111111;
}
.cid-tsyVKPm1c9 .title-card {
  font-size: 1.3rem;
}
.cid-tsyVKPm1c9 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tsyVKPm1c9 .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tsyVKPm1c9 .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tsyVKPm1c9 .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tsyVKPm1c9 .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tsyVKPm1c9 .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsyVKPm1c9 .copyright img {
  margin-right: 10px;
}
.cid-tsyVKPm1c9 .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #152246;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tsyVKPm1c9 .icon-transition span:hover {
  background-color: #76a4c6;
}
@media (max-width: 767px) {
  .cid-tsyVKPm1c9 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsyVKPm1c9 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tsyVKPm1c9 .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsyVKPm1c9 H5 {
  color: #152246;
}
