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: #1dc9cb !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !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: #2bdc9d !important;
  border-color: #2bdc9d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !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: #178a61 !important;
  color: #178a61 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #107172 !important;
  color: #107172 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !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: #2bdc9d !important;
}
.text-success {
  color: #1dc9cb !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !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: #178a61 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #107172 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !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: #1dc9cb;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.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: #bef5f6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.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: #b7b7b7;
}
/* 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: #2bdc9d !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-rzBaVzqjpS .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-rzBaVzqjpS .nav-item,
.cid-rzBaVzqjpS .nav-link,
.cid-rzBaVzqjpS .navbar-caption {
  font-weight: normal;
}
.cid-rzBaVzqjpS .nav-item:focus,
.cid-rzBaVzqjpS .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rzBaVzqjpS .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rzBaVzqjpS .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-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rzBaVzqjpS .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-rzBaVzqjpS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rzBaVzqjpS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rzBaVzqjpS .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #549fe2;
  background: none;
}
.cid-rzBaVzqjpS .navbar.opened {
  transition: all .3s;
  background: #549fe2 !important;
}
.cid-rzBaVzqjpS .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rzBaVzqjpS .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rzBaVzqjpS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rzBaVzqjpS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rzBaVzqjpS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-rzBaVzqjpS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rzBaVzqjpS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzBaVzqjpS .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-rzBaVzqjpS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzBaVzqjpS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rzBaVzqjpS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rzBaVzqjpS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rzBaVzqjpS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzBaVzqjpS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rzBaVzqjpS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzBaVzqjpS .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-rzBaVzqjpS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzBaVzqjpS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzBaVzqjpS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rzBaVzqjpS .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rzBaVzqjpS .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rzBaVzqjpS .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rzBaVzqjpS .navbar.navbar-short {
  background: #549fe2 !important;
  min-height: 60px;
}
.cid-rzBaVzqjpS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzBaVzqjpS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzBaVzqjpS .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-rzBaVzqjpS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rzBaVzqjpS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzBaVzqjpS .dropdown-item.active,
.cid-rzBaVzqjpS .dropdown-item:active {
  background-color: transparent;
}
.cid-rzBaVzqjpS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzBaVzqjpS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzBaVzqjpS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549fe2;
}
.cid-rzBaVzqjpS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rzBaVzqjpS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzBaVzqjpS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rzBaVzqjpS .navbar-buttons {
  text-align: center;
}
.cid-rzBaVzqjpS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rzBaVzqjpS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rzBaVzqjpS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzBaVzqjpS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzBaVzqjpS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzBaVzqjpS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzBaVzqjpS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzBaVzqjpS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzBaVzqjpS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzBaVzqjpS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzBaVzqjpS .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rzBaVzqjpS a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rzBaVzqjpS .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rzBaVzqjpS .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rzBaVzqjpS .soc-item {
  margin: .5rem .3rem;
}
.cid-rzBaVzqjpS .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-rzBaVzqjpS .navbar {
    height: 77px;
  }
  .cid-rzBaVzqjpS .navbar.opened {
    height: auto;
  }
  .cid-rzBaVzqjpS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qKSDBfAnnY {
  background-image: url("../../../assets/images/seaside-development-cut-2000x1000.jpg");
}
.cid-qKSDBfAnnY .mbr-overlay {
  background: #444444;
}
.cid-qKSDBfAnnY .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-qKSDBfAnnY .mbr-section-subtitle,
.cid-qKSDBfAnnY mbr-section-btn {
  color: #000000;
}
.cid-qKSDBfAnnY B {
  color: #333333;
}
.cid-qKSDBfAnnY H1 {
  color: #444444;
}
.cid-qKSEuwA5ym {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qKSEuwA5ym .card-text,
.cid-qKSEuwA5ym .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qKSEuwA5ym .main,
.cid-qKSEuwA5ym .main-reverse {
  border: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0;
  background: #ffffff;
}
.cid-qKSEuwA5ym .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qKSEuwA5ym .main-reverse {
  flex-direction: row-reverse;
}
.cid-qKSEuwA5ym .image-element {
  padding: 0;
  display: flex;
  justify-content: center;
}
.cid-qKSEuwA5ym .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qKSEuwA5ym .text-element {
  padding: 3rem 2rem;
}
.cid-qKSEuwA5ym .mbr-iconfont {
  font-size: 3rem;
  color: #188ef4;
}
.cid-qKSEuwA5ym .bottom-radius {
  overflow: hidden;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-qKSEuwA5ym .top-radius {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-qKSEuwA5ym .main-reverse {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-qKSEuwA5ym .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-qKSEuwA5ym .image-element,
  .cid-qKSEuwA5ym .text-element {
    margin-bottom: 0;
  }
  .cid-qKSEuwA5ym .main:first-child {
    padding-top: 0;
  }
}
.cid-qKSEuwA5ym .card-text,
.cid-qKSEuwA5ym .mbr-section-btn {
  color: #000000;
}
.cid-qKSEuwA5ym .mbr-title,
.cid-qKSEuwA5ym .card-img {
  color: #188ef4;
}
.cid-tTkwNzo6nb {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTkwNzo6nb .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-tTkwNzo6nb .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTkwNzo6nb .card-img img {
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tTkwNzo6nb .section-text,
.cid-tTkwNzo6nb .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-tTkwNzo6nb .section-text,
  .cid-tTkwNzo6nb .card-text,
  .cid-tTkwNzo6nb .card-title,
  .cid-tTkwNzo6nb .mbr-section-title {
    text-align: center;
  }
}
.cid-qKSHQzWdBf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qKSHQzWdBf .mbr-text {
  color: #000000;
}
.cid-qKSEVMzjQ3 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  overflow: hidden !important;
}
.cid-qKSEVMzjQ3 .mbr-section-subtitle {
  font-weight: 400;
}
.cid-qKSEVMzjQ3 .mbr-section-title {
  padding-bottom: 2rem;
  text-align: center;
}
.cid-qKSEVMzjQ3 .img-block {
  align-self: center;
}
.cid-qKSEVMzjQ3 .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-qKSEVMzjQ3 .mbr-form {
  margin-bottom: 3rem;
}
.cid-qKSEVMzjQ3 .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-qKSEVMzjQ3 a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-qKSEVMzjQ3 .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-qKSEVMzjQ3 .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-qKSEVMzjQ3 .mbr-subscribe .input-group-btn button,
.cid-qKSEVMzjQ3 .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-qKSEVMzjQ3 .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qKSEVMzjQ3 input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-qKSEVMzjQ3 .input-group-btn {
    width: 100%;
  }
  .cid-qKSEVMzjQ3 .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-qKSEVMzjQ3 .mbr-form {
    margin-bottom: 0;
  }
  .cid-qKSEVMzjQ3 .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-qKSEVMzjQ3 .input-group-btn a.btn {
    width: 100%;
  }
  .cid-qKSEVMzjQ3 .input-group-btn {
    width: calc(92%);
  }
  .cid-qKSEVMzjQ3 .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-qKSEVMzjQ3 .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-qKSEVMzjQ3 .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-qKSEVMzjQ3 .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-qKSEVMzjQ3 .input-group-btn button,
  .cid-qKSEVMzjQ3 .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-qKSEVMzjQ3 .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-qKSEVMzjQ3 .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-qKSEVMzjQ3 .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-qKSEVMzjQ3 .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-qKSEVMzjQ3 .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-qKSEVMzjQ3 .mbr-section-subtitle,
.cid-qKSEVMzjQ3 .mbr-section-btn {
  text-align: center;
}
.cid-tTjCx6vq0g {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #549fe2;
}
.cid-tTjCx6vq0g .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-tTjCx6vq0g .mbr-section-title {
  margin: 0;
}
.cid-tTjCx6vq0g .card-img {
  text-align: center;
}
.cid-tTjCx6vq0g .mbr-section-subtitle,
.cid-tTjCx6vq0g .mbr-text {
  color: #8d97ad;
}
.cid-tTjCx6vq0g .row-item {
  border-radius: .25rem;
  background: #ffffff;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 767px) {
  .cid-tTjCx6vq0g .card-img,
  .cid-tTjCx6vq0g .mbr-text,
  .cid-tTjCx6vq0g .mbr-card-title,
  .cid-tTjCx6vq0g .mbr-section-subtitle,
  .cid-tTjCx6vq0g .mbr-section-title,
  .cid-tTjCx6vq0g .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tTjCx6vq0g .row-item {
    margin-bottom: 2rem;
  }
}
.cid-tTjCx6vq0g .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTjCx6vq0g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTjCx6vq0g .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qKSGEV70WT {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qKSGEV70WT .mbr-section-title {
  margin: 0;
}
.cid-qKSGEV70WT .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-qKSGEV70WT .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-qKSGEV70WT .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-qKSGEV70WT .card1 {
  background: linear-gradient(45deg, #2bdc9d, #1dc9cb);
}
.cid-qKSGEV70WT .card2 {
  background: linear-gradient(45deg, #188ef4, #306de8);
}
.cid-qKSGEV70WT .card3 {
  background: linear-gradient(45deg, #ff4f7b, #ff695c);
}
.cid-qKSGEV70WT .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-qKSGEV70WT .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-qKSGEV70WT .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-qKSGEV70WT .mbr-section-btn {
  padding-top: 1rem;
}
.cid-qKSOR9qOwk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #549fe2;
}
@media (max-width: 767px) {
  .cid-qKSOR9qOwk .content {
    text-align: center;
  }
  .cid-qKSOR9qOwk .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qKSOR9qOwk .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qKSOR9qOwk .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qKSOR9qOwk .media-wrap img {
  height: 6rem;
}
.cid-qKSOR9qOwk .mbr-text {
  color: #8d97ad;
}
.cid-qKSOR9qOwk .p-title {
  font-size: 17px;
  color: #000000;
}
.cid-qKSOR9qOwk .p-title span {
  color: #111111;
}
.cid-qKSOR9qOwk .title-card {
  font-size: 1.3rem;
}
.cid-qKSOR9qOwk .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qKSOR9qOwk .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-qKSOR9qOwk .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-qKSOR9qOwk .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-qKSOR9qOwk .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-qKSOR9qOwk .copyright {
  display: flex;
  align-items: center;
}
.cid-qKSOR9qOwk .copyright img {
  margin-right: 10px;
}
.cid-qKSOR9qOwk .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #52e5e5;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qKSOR9qOwk .icon-transition span:hover {
  background-color: #1dc9cb;
}
@media (max-width: 767px) {
  .cid-qKSOR9qOwk .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qKSOR9qOwk .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-qKSOR9qOwk .footer-menu {
    justify-content: center;
  }
}
.cid-tTjZZSzhaa .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-tTjZZSzhaa .nav-item,
.cid-tTjZZSzhaa .nav-link,
.cid-tTjZZSzhaa .navbar-caption {
  font-weight: normal;
}
.cid-tTjZZSzhaa .nav-item:focus,
.cid-tTjZZSzhaa .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTjZZSzhaa .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tTjZZSzhaa .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-tTjZZSzhaa .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tTjZZSzhaa .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tTjZZSzhaa .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tTjZZSzhaa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tTjZZSzhaa .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-tTjZZSzhaa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTjZZSzhaa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTjZZSzhaa .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #549fe2;
  background: none;
}
.cid-tTjZZSzhaa .navbar.opened {
  transition: all .3s;
  background: #549fe2 !important;
}
.cid-tTjZZSzhaa .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tTjZZSzhaa .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTjZZSzhaa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTjZZSzhaa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTjZZSzhaa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tTjZZSzhaa .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tTjZZSzhaa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTjZZSzhaa .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-tTjZZSzhaa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTjZZSzhaa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTjZZSzhaa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTjZZSzhaa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTjZZSzhaa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTjZZSzhaa .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tTjZZSzhaa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTjZZSzhaa .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-tTjZZSzhaa .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tTjZZSzhaa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTjZZSzhaa .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tTjZZSzhaa .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tTjZZSzhaa .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTjZZSzhaa .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTjZZSzhaa .navbar.navbar-short {
  background: #549fe2 !important;
  min-height: 60px;
}
.cid-tTjZZSzhaa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tTjZZSzhaa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tTjZZSzhaa .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-tTjZZSzhaa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTjZZSzhaa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTjZZSzhaa .dropdown-item.active,
.cid-tTjZZSzhaa .dropdown-item:active {
  background-color: transparent;
}
.cid-tTjZZSzhaa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTjZZSzhaa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTjZZSzhaa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549fe2;
}
.cid-tTjZZSzhaa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTjZZSzhaa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTjZZSzhaa ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTjZZSzhaa .navbar-buttons {
  text-align: center;
}
.cid-tTjZZSzhaa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTjZZSzhaa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTjZZSzhaa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTjZZSzhaa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTjZZSzhaa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTjZZSzhaa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTjZZSzhaa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTjZZSzhaa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTjZZSzhaa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTjZZSzhaa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTjZZSzhaa .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tTjZZSzhaa a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tTjZZSzhaa .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tTjZZSzhaa .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tTjZZSzhaa .soc-item {
  margin: .5rem .3rem;
}
.cid-tTjZZSzhaa .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-tTjZZSzhaa .navbar {
    height: 77px;
  }
  .cid-tTjZZSzhaa .navbar.opened {
    height: auto;
  }
  .cid-tTjZZSzhaa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTk0eMopaL {
  padding-top: 75px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
}
.cid-tTk0eMopaL .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-tTk0eMopaL .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTk0eMopaL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTk0eMopaL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTk0eMopaL H1 {
  color: #000000;
}
.cid-tTjZZT7sg0 {
  background-image: url("../../../assets/images/mbr-1920x1282.jpg");
}
.cid-tTjZZT7sg0 .mbr-overlay {
  background: #444444;
}
.cid-tTjZZT7sg0 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTjZZT7sg0 .mbr-section-subtitle,
.cid-tTjZZT7sg0 mbr-section-btn {
  color: #000000;
}
.cid-tTjZZT7sg0 B {
  color: #333333;
}
.cid-tTjZZT7sg0 H1 {
  color: #549fe2;
}
.cid-tTkw6qbNQB {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTkw6qbNQB .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-tTkw6qbNQB .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTkw6qbNQB .card-img img {
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tTkw6qbNQB .section-text,
.cid-tTkw6qbNQB .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-tTkw6qbNQB .section-text,
  .cid-tTkw6qbNQB .card-text,
  .cid-tTkw6qbNQB .card-title,
  .cid-tTkw6qbNQB .mbr-section-title {
    text-align: center;
  }
}
.cid-tTkw25Onct {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #549fe2;
}
.cid-tTkw25Onct .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-tTkw25Onct .mbr-section-title {
  margin: 0;
}
.cid-tTkw25Onct .card-img {
  text-align: center;
}
.cid-tTkw25Onct .mbr-section-subtitle,
.cid-tTkw25Onct .mbr-text {
  color: #8d97ad;
}
.cid-tTkw25Onct .row-item {
  border-radius: .25rem;
  background: #ffffff;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 767px) {
  .cid-tTkw25Onct .card-img,
  .cid-tTkw25Onct .mbr-text,
  .cid-tTkw25Onct .mbr-card-title,
  .cid-tTkw25Onct .mbr-section-subtitle,
  .cid-tTkw25Onct .mbr-section-title,
  .cid-tTkw25Onct .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tTkw25Onct .row-item {
    margin-bottom: 2rem;
  }
}
.cid-tTkw25Onct .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkw25Onct .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkw25Onct .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tTkw25Onct .mbr-text {
  color: #000000;
}
.cid-tTkPi1nlVL {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTkPi1nlVL .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tTkPi1nlVL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkPi1nlVL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkPi1nlVL .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTkPiJRK1h {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTkPiJRK1h .mbr-text {
  color: #000000;
}
.cid-tTkPiJRK1h .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTkPiJRK1h .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTkPiJRK1h .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-tTkwrcYLkT {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tTkwrcYLkT .mbr-section-title {
  margin: 0;
}
.cid-tTkwrcYLkT .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-tTkwrcYLkT .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-tTkwrcYLkT .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tTkwrcYLkT .card1 {
  background: linear-gradient(45deg, #2bdc9d, #1dc9cb);
}
.cid-tTkwrcYLkT .card2 {
  background: linear-gradient(45deg, #188ef4, #306de8);
}
.cid-tTkwrcYLkT .card3 {
  background: linear-gradient(45deg, #ff4f7b, #ff695c);
}
.cid-tTkwrcYLkT .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-tTkwrcYLkT .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-tTkwrcYLkT .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-tTkwrcYLkT .mbr-section-btn {
  padding-top: 1rem;
}
.cid-tTkPWIibu0 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTkPWIibu0 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tTkPWIibu0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkPWIibu0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkPWIibu0 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTkPXpEB2X {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTkPXpEB2X .mbr-text {
  color: #000000;
}
.cid-tTkPXpEB2X .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTkPXpEB2X .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTkPXpEB2X .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-tTjZZTwVNr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTjZZTwVNr .card-text,
.cid-tTjZZTwVNr .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tTjZZTwVNr .main,
.cid-tTjZZTwVNr .main-reverse {
  border: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0;
  background: #ffffff;
}
.cid-tTjZZTwVNr .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tTjZZTwVNr .main-reverse {
  flex-direction: row-reverse;
}
.cid-tTjZZTwVNr .image-element {
  padding: 0;
  display: flex;
  justify-content: center;
}
.cid-tTjZZTwVNr .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tTjZZTwVNr .text-element {
  padding: 3rem 2rem;
}
.cid-tTjZZTwVNr .mbr-iconfont {
  font-size: 3rem;
  color: #188ef4;
}
.cid-tTjZZTwVNr .bottom-radius {
  overflow: hidden;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tTjZZTwVNr .top-radius {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tTjZZTwVNr .main-reverse {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-tTjZZTwVNr .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-tTjZZTwVNr .image-element,
  .cid-tTjZZTwVNr .text-element {
    margin-bottom: 0;
  }
  .cid-tTjZZTwVNr .main:first-child {
    padding-top: 0;
  }
}
.cid-tTjZZTwVNr .card-text,
.cid-tTjZZTwVNr .mbr-section-btn {
  color: #000000;
}
.cid-tTjZZTwVNr .mbr-title,
.cid-tTjZZTwVNr .card-img {
  color: #188ef4;
}
.cid-tTjZZU7vBT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTjZZU7vBT .mbr-text {
  color: #000000;
}
.cid-tTjZZUjESt {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  overflow: hidden !important;
}
.cid-tTjZZUjESt .mbr-section-subtitle {
  font-weight: 400;
}
.cid-tTjZZUjESt .mbr-section-title {
  padding-bottom: 2rem;
  text-align: center;
}
.cid-tTjZZUjESt .img-block {
  align-self: center;
}
.cid-tTjZZUjESt .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTjZZUjESt .mbr-form {
  margin-bottom: 3rem;
}
.cid-tTjZZUjESt .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-tTjZZUjESt a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-tTjZZUjESt .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-tTjZZUjESt .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-tTjZZUjESt .mbr-subscribe .input-group-btn button,
.cid-tTjZZUjESt .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-tTjZZUjESt .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tTjZZUjESt input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-tTjZZUjESt .input-group-btn {
    width: 100%;
  }
  .cid-tTjZZUjESt .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-tTjZZUjESt .mbr-form {
    margin-bottom: 0;
  }
  .cid-tTjZZUjESt .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-tTjZZUjESt .input-group-btn a.btn {
    width: 100%;
  }
  .cid-tTjZZUjESt .input-group-btn {
    width: calc(92%);
  }
  .cid-tTjZZUjESt .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-tTjZZUjESt .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-tTjZZUjESt .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-tTjZZUjESt .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-tTjZZUjESt .input-group-btn button,
  .cid-tTjZZUjESt .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-tTjZZUjESt .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-tTjZZUjESt .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tTjZZUjESt .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-tTjZZUjESt .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-tTjZZUjESt .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-tTjZZUjESt .mbr-section-subtitle,
.cid-tTjZZUjESt .mbr-section-btn {
  text-align: center;
}
.cid-tTkQtOIXAh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tTkQtOIXAh .mbr-section-subtitle {
  color: #000000;
}
.cid-tTkQtOIXAh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkQtOIXAh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkQtOIXAh .mbr-section-title {
  color: #000000;
}
.cid-tW4vQ3pXix {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #549fe2;
}
@media (max-width: 767px) {
  .cid-tW4vQ3pXix .content {
    text-align: center;
  }
  .cid-tW4vQ3pXix .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tW4vQ3pXix .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tW4vQ3pXix .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tW4vQ3pXix .media-wrap img {
  height: 6rem;
}
.cid-tW4vQ3pXix .mbr-text {
  color: #8d97ad;
}
.cid-tW4vQ3pXix .p-title {
  font-size: 17px;
  color: #000000;
}
.cid-tW4vQ3pXix .p-title span {
  color: #111111;
}
.cid-tW4vQ3pXix .title-card {
  font-size: 1.3rem;
}
.cid-tW4vQ3pXix .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tW4vQ3pXix .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tW4vQ3pXix .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tW4vQ3pXix .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tW4vQ3pXix .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tW4vQ3pXix .copyright {
  display: flex;
  align-items: center;
}
.cid-tW4vQ3pXix .copyright img {
  margin-right: 10px;
}
.cid-tW4vQ3pXix .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #52e5e5;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tW4vQ3pXix .icon-transition span:hover {
  background-color: #1dc9cb;
}
@media (max-width: 767px) {
  .cid-tW4vQ3pXix .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tW4vQ3pXix .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tW4vQ3pXix .footer-menu {
    justify-content: center;
  }
}
.cid-tTkiViZPA7 .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-tTkiViZPA7 .nav-item,
.cid-tTkiViZPA7 .nav-link,
.cid-tTkiViZPA7 .navbar-caption {
  font-weight: normal;
}
.cid-tTkiViZPA7 .nav-item:focus,
.cid-tTkiViZPA7 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTkiViZPA7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tTkiViZPA7 .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-tTkiViZPA7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tTkiViZPA7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tTkiViZPA7 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tTkiViZPA7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tTkiViZPA7 .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-tTkiViZPA7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTkiViZPA7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTkiViZPA7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #549fe2;
  background: none;
}
.cid-tTkiViZPA7 .navbar.opened {
  transition: all .3s;
  background: #549fe2 !important;
}
.cid-tTkiViZPA7 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tTkiViZPA7 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTkiViZPA7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTkiViZPA7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTkiViZPA7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tTkiViZPA7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tTkiViZPA7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTkiViZPA7 .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-tTkiViZPA7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTkiViZPA7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTkiViZPA7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTkiViZPA7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTkiViZPA7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTkiViZPA7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tTkiViZPA7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTkiViZPA7 .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-tTkiViZPA7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tTkiViZPA7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTkiViZPA7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tTkiViZPA7 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tTkiViZPA7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTkiViZPA7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTkiViZPA7 .navbar.navbar-short {
  background: #549fe2 !important;
  min-height: 60px;
}
.cid-tTkiViZPA7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tTkiViZPA7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tTkiViZPA7 .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-tTkiViZPA7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTkiViZPA7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTkiViZPA7 .dropdown-item.active,
.cid-tTkiViZPA7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tTkiViZPA7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTkiViZPA7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTkiViZPA7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549fe2;
}
.cid-tTkiViZPA7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTkiViZPA7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTkiViZPA7 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTkiViZPA7 .navbar-buttons {
  text-align: center;
}
.cid-tTkiViZPA7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTkiViZPA7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTkiViZPA7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTkiViZPA7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkiViZPA7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkiViZPA7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTkiViZPA7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkiViZPA7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTkiViZPA7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTkiViZPA7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkiViZPA7 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tTkiViZPA7 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tTkiViZPA7 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tTkiViZPA7 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tTkiViZPA7 .soc-item {
  margin: .5rem .3rem;
}
.cid-tTkiViZPA7 .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-tTkiViZPA7 .navbar {
    height: 77px;
  }
  .cid-tTkiViZPA7 .navbar.opened {
    height: auto;
  }
  .cid-tTkiViZPA7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTkiVjv8DB {
  padding-top: 75px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
}
.cid-tTkiVjv8DB .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-tTkiVjv8DB .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkiVjv8DB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkiVjv8DB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkiVjv8DB H1 {
  color: #000000;
}
.cid-tTkx4ggiqV {
  background-image: url("../../../assets/images/mbr-1920x1162.jpeg");
}
.cid-tTkx4ggiqV .mbr-overlay {
  background: #444444;
}
.cid-tTkx4ggiqV .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkx4ggiqV .mbr-section-subtitle,
.cid-tTkx4ggiqV mbr-section-btn {
  color: #f4f8fa;
}
.cid-tTkx4ggiqV B {
  color: #333333;
}
.cid-tTkx4ggiqV H1 {
  color: #549fe2;
}
.cid-tTkxOpviJ9 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f0ecd5;
}
.cid-tTkxOpviJ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkxOpviJ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkxOpviJ9 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tTkxOpviJ9 .container-fluid {
    padding: 0 20px;
  }
}
.cid-tTkxOpviJ9 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tTkxOpviJ9 .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tTkxOpviJ9 .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 50px;
  }
}
.cid-tTkxOpviJ9 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tTkxOpviJ9 .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-tTkxOpviJ9 .title-wrapper .mbr-section-btn {
    margin-top: 50px;
  }
}
.cid-tTkxOpviJ9 .mbr-section-title {
  color: #1d1d1d;
}
.cid-tTkxOpviJ9 .mbr-section-subtitle {
  color: #1d1d1d;
}
.cid-tTkymSupf0 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f0ecd5;
}
.cid-tTkymSupf0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkymSupf0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkymSupf0 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tTkymSupf0 .container-fluid {
    padding: 0 20px;
  }
}
.cid-tTkymSupf0 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tTkymSupf0 .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tTkymSupf0 .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 50px;
  }
}
.cid-tTkymSupf0 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tTkymSupf0 .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-tTkymSupf0 .title-wrapper .mbr-section-btn {
    margin-top: 50px;
  }
}
.cid-tTkymSupf0 .mbr-section-title {
  color: #1d1d1d;
}
.cid-tTkymSupf0 .mbr-section-subtitle {
  color: #1d1d1d;
}
.cid-tTkyL67SGb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTkyL67SGb .card-text,
.cid-tTkyL67SGb .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tTkyL67SGb .main,
.cid-tTkyL67SGb .main-reverse {
  border: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0;
  background: #ffffff;
}
.cid-tTkyL67SGb .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tTkyL67SGb .main-reverse {
  flex-direction: row-reverse;
}
.cid-tTkyL67SGb .image-element {
  padding: 0;
  display: flex;
  justify-content: center;
}
.cid-tTkyL67SGb .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tTkyL67SGb .text-element {
  padding: 3rem 2rem;
}
.cid-tTkyL67SGb .mbr-iconfont {
  font-size: 3rem;
  color: #188ef4;
}
.cid-tTkyL67SGb .bottom-radius {
  overflow: hidden;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tTkyL67SGb .top-radius {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tTkyL67SGb .main-reverse {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-tTkyL67SGb .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-tTkyL67SGb .image-element,
  .cid-tTkyL67SGb .text-element {
    margin-bottom: 0;
  }
  .cid-tTkyL67SGb .main:first-child {
    padding-top: 0;
  }
}
.cid-tTkyL67SGb .card-text,
.cid-tTkyL67SGb .mbr-section-btn {
  color: #000000;
}
.cid-tTkyL67SGb .mbr-title,
.cid-tTkyL67SGb .card-img {
  color: #188ef4;
}
.cid-tTkiVkIPPM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTkiVkIPPM .mbr-text {
  color: #000000;
}
.cid-tTkiVkUhwA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  overflow: hidden !important;
}
.cid-tTkiVkUhwA .mbr-section-subtitle {
  font-weight: 400;
}
.cid-tTkiVkUhwA .mbr-section-title {
  padding-bottom: 2rem;
  text-align: center;
}
.cid-tTkiVkUhwA .img-block {
  align-self: center;
}
.cid-tTkiVkUhwA .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTkiVkUhwA .mbr-form {
  margin-bottom: 3rem;
}
.cid-tTkiVkUhwA .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-tTkiVkUhwA a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-tTkiVkUhwA .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-tTkiVkUhwA .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-tTkiVkUhwA .mbr-subscribe .input-group-btn button,
.cid-tTkiVkUhwA .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-tTkiVkUhwA .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tTkiVkUhwA input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-tTkiVkUhwA .input-group-btn {
    width: 100%;
  }
  .cid-tTkiVkUhwA .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-tTkiVkUhwA .mbr-form {
    margin-bottom: 0;
  }
  .cid-tTkiVkUhwA .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-tTkiVkUhwA .input-group-btn a.btn {
    width: 100%;
  }
  .cid-tTkiVkUhwA .input-group-btn {
    width: calc(92%);
  }
  .cid-tTkiVkUhwA .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-tTkiVkUhwA .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-tTkiVkUhwA .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-tTkiVkUhwA .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-tTkiVkUhwA .input-group-btn button,
  .cid-tTkiVkUhwA .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-tTkiVkUhwA .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-tTkiVkUhwA .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tTkiVkUhwA .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-tTkiVkUhwA .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-tTkiVkUhwA .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-tTkiVkUhwA .mbr-section-subtitle,
.cid-tTkiVkUhwA .mbr-section-btn {
  text-align: center;
}
.cid-tW4vVVqghq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #549fe2;
}
@media (max-width: 767px) {
  .cid-tW4vVVqghq .content {
    text-align: center;
  }
  .cid-tW4vVVqghq .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tW4vVVqghq .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tW4vVVqghq .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tW4vVVqghq .media-wrap img {
  height: 6rem;
}
.cid-tW4vVVqghq .mbr-text {
  color: #8d97ad;
}
.cid-tW4vVVqghq .p-title {
  font-size: 17px;
  color: #000000;
}
.cid-tW4vVVqghq .p-title span {
  color: #111111;
}
.cid-tW4vVVqghq .title-card {
  font-size: 1.3rem;
}
.cid-tW4vVVqghq .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tW4vVVqghq .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tW4vVVqghq .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tW4vVVqghq .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tW4vVVqghq .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tW4vVVqghq .copyright {
  display: flex;
  align-items: center;
}
.cid-tW4vVVqghq .copyright img {
  margin-right: 10px;
}
.cid-tW4vVVqghq .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #52e5e5;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tW4vVVqghq .icon-transition span:hover {
  background-color: #1dc9cb;
}
@media (max-width: 767px) {
  .cid-tW4vVVqghq .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tW4vVVqghq .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tW4vVVqghq .footer-menu {
    justify-content: center;
  }
}
.cid-tTkj3BIlWc .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-tTkj3BIlWc .nav-item,
.cid-tTkj3BIlWc .nav-link,
.cid-tTkj3BIlWc .navbar-caption {
  font-weight: normal;
}
.cid-tTkj3BIlWc .nav-item:focus,
.cid-tTkj3BIlWc .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTkj3BIlWc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tTkj3BIlWc .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-tTkj3BIlWc .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tTkj3BIlWc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tTkj3BIlWc .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tTkj3BIlWc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tTkj3BIlWc .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-tTkj3BIlWc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTkj3BIlWc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTkj3BIlWc .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #549fe2;
  background: none;
}
.cid-tTkj3BIlWc .navbar.opened {
  transition: all .3s;
  background: #549fe2 !important;
}
.cid-tTkj3BIlWc .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tTkj3BIlWc .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTkj3BIlWc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTkj3BIlWc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTkj3BIlWc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tTkj3BIlWc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tTkj3BIlWc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTkj3BIlWc .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-tTkj3BIlWc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTkj3BIlWc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTkj3BIlWc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTkj3BIlWc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTkj3BIlWc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTkj3BIlWc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tTkj3BIlWc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTkj3BIlWc .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-tTkj3BIlWc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tTkj3BIlWc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTkj3BIlWc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tTkj3BIlWc .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tTkj3BIlWc .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTkj3BIlWc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTkj3BIlWc .navbar.navbar-short {
  background: #549fe2 !important;
  min-height: 60px;
}
.cid-tTkj3BIlWc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tTkj3BIlWc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tTkj3BIlWc .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-tTkj3BIlWc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTkj3BIlWc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTkj3BIlWc .dropdown-item.active,
.cid-tTkj3BIlWc .dropdown-item:active {
  background-color: transparent;
}
.cid-tTkj3BIlWc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTkj3BIlWc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTkj3BIlWc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549fe2;
}
.cid-tTkj3BIlWc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTkj3BIlWc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTkj3BIlWc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTkj3BIlWc .navbar-buttons {
  text-align: center;
}
.cid-tTkj3BIlWc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTkj3BIlWc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTkj3BIlWc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTkj3BIlWc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkj3BIlWc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkj3BIlWc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTkj3BIlWc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkj3BIlWc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTkj3BIlWc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTkj3BIlWc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkj3BIlWc .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tTkj3BIlWc a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tTkj3BIlWc .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tTkj3BIlWc .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tTkj3BIlWc .soc-item {
  margin: .5rem .3rem;
}
.cid-tTkj3BIlWc .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-tTkj3BIlWc .navbar {
    height: 77px;
  }
  .cid-tTkj3BIlWc .navbar.opened {
    height: auto;
  }
  .cid-tTkj3BIlWc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTkj3C8ois {
  padding-top: 75px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
}
.cid-tTkj3C8ois .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-tTkj3C8ois .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkj3C8ois .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkj3C8ois .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkj3C8ois H1 {
  color: #000000;
}
.cid-tTkj3CmV0p {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-1920x639.jpeg");
}
.cid-tTkj3CmV0p .mbr-overlay {
  background: #444444;
}
.cid-tTkj3CmV0p .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkj3CmV0p .mbr-section-subtitle,
.cid-tTkj3CmV0p mbr-section-btn {
  color: #000000;
}
.cid-tTkj3CmV0p B {
  color: #333333;
}
.cid-tTkj3CmV0p H1 {
  color: #549fe2;
}
.cid-tTkAwJNbCA {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #549fe2;
}
.cid-tTkAwJNbCA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkAwJNbCA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkAwJNbCA .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tTkAwJNbCA .container-fluid {
    padding: 0 20px;
  }
}
.cid-tTkAwJNbCA .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tTkAwJNbCA .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tTkAwJNbCA .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 50px;
  }
}
.cid-tTkAwJNbCA .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tTkAwJNbCA .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-tTkAwJNbCA .title-wrapper .mbr-section-btn {
    margin-top: 50px;
  }
}
.cid-tTkAwJNbCA .mbr-section-title {
  color: #1d1d1d;
}
.cid-tTkAwJNbCA .mbr-section-subtitle {
  color: #1d1d1d;
}
.cid-tTkAJkMUSB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5eeebb;
}
.cid-tTkAJkMUSB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkAJkMUSB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkAJkMUSB .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tTkAJkMUSB .container-fluid {
    padding: 0 20px;
  }
}
.cid-tTkAJkMUSB .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tTkAJkMUSB .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tTkAJkMUSB .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 50px;
  }
}
.cid-tTkAJkMUSB .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tTkAJkMUSB .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-tTkAJkMUSB .title-wrapper .mbr-section-btn {
    margin-top: 50px;
  }
}
.cid-tTkAJkMUSB .mbr-section-title {
  color: #1d1d1d;
}
.cid-tTkAJkMUSB .mbr-section-subtitle {
  color: #1d1d1d;
}
.cid-tTkAZAS6bq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f0ecd5;
}
.cid-tTkAZAS6bq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkAZAS6bq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkAZAS6bq .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tTkAZAS6bq .container-fluid {
    padding: 0 20px;
  }
}
.cid-tTkAZAS6bq .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tTkAZAS6bq .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tTkAZAS6bq .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 50px;
  }
}
.cid-tTkAZAS6bq .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tTkAZAS6bq .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-tTkAZAS6bq .title-wrapper .mbr-section-btn {
    margin-top: 50px;
  }
}
.cid-tTkAZAS6bq .mbr-section-title {
  color: #1d1d1d;
}
.cid-tTkAZAS6bq .mbr-section-subtitle {
  color: #1d1d1d;
}
.cid-tTkBvogBld {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fbdce3;
}
.cid-tTkBvogBld .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkBvogBld .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkBvogBld .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tTkBvogBld .container-fluid {
    padding: 0 20px;
  }
}
.cid-tTkBvogBld .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tTkBvogBld .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tTkBvogBld .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 50px;
  }
}
.cid-tTkBvogBld .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tTkBvogBld .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-tTkBvogBld .title-wrapper .mbr-section-btn {
    margin-top: 50px;
  }
}
.cid-tTkBvogBld .mbr-section-title {
  color: #1d1d1d;
}
.cid-tTkBvogBld .mbr-section-subtitle {
  color: #1d1d1d;
}
.cid-tTkGuOzS82 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTkGuOzS82 .card-text,
.cid-tTkGuOzS82 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tTkGuOzS82 .main,
.cid-tTkGuOzS82 .main-reverse {
  border: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0;
  background: #ffffff;
}
.cid-tTkGuOzS82 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tTkGuOzS82 .main-reverse {
  flex-direction: row-reverse;
}
.cid-tTkGuOzS82 .image-element {
  padding: 0;
  display: flex;
  justify-content: center;
}
.cid-tTkGuOzS82 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tTkGuOzS82 .text-element {
  padding: 3rem 2rem;
}
.cid-tTkGuOzS82 .mbr-iconfont {
  font-size: 3rem;
  color: #188ef4;
}
.cid-tTkGuOzS82 .bottom-radius {
  overflow: hidden;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tTkGuOzS82 .top-radius {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tTkGuOzS82 .main-reverse {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-tTkGuOzS82 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-tTkGuOzS82 .image-element,
  .cid-tTkGuOzS82 .text-element {
    margin-bottom: 0;
  }
  .cid-tTkGuOzS82 .main:first-child {
    padding-top: 0;
  }
}
.cid-tTkGuOzS82 .card-text,
.cid-tTkGuOzS82 .mbr-section-btn {
  color: #000000;
}
.cid-tTkGuOzS82 .mbr-title,
.cid-tTkGuOzS82 .card-img {
  color: #188ef4;
}
.cid-tTkD16YErA {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTkD16YErA .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-tTkD16YErA .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTkD16YErA .card-img img {
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tTkD16YErA .section-text,
.cid-tTkD16YErA .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-tTkD16YErA .section-text,
  .cid-tTkD16YErA .card-text,
  .cid-tTkD16YErA .card-title,
  .cid-tTkD16YErA .mbr-section-title {
    text-align: center;
  }
}
.cid-tTkD00b2bV {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tTkD00b2bV .mbr-section-title {
  margin: 0;
}
.cid-tTkD00b2bV .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-tTkD00b2bV .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-tTkD00b2bV .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tTkD00b2bV .card1 {
  background: linear-gradient(45deg, #2bdc9d, #1dc9cb);
}
.cid-tTkD00b2bV .card2 {
  background: linear-gradient(45deg, #188ef4, #306de8);
}
.cid-tTkD00b2bV .card3 {
  background: linear-gradient(45deg, #ff4f7b, #ff695c);
}
.cid-tTkD00b2bV .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-tTkD00b2bV .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-tTkD00b2bV .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-tTkD00b2bV .mbr-section-btn {
  padding-top: 1rem;
}
.cid-tTkj3D7EdK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTkj3D7EdK .mbr-text {
  color: #000000;
}
.cid-tTkj3Dkr2b {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  overflow: hidden !important;
}
.cid-tTkj3Dkr2b .mbr-section-subtitle {
  font-weight: 400;
}
.cid-tTkj3Dkr2b .mbr-section-title {
  padding-bottom: 2rem;
  text-align: center;
}
.cid-tTkj3Dkr2b .img-block {
  align-self: center;
}
.cid-tTkj3Dkr2b .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTkj3Dkr2b .mbr-form {
  margin-bottom: 3rem;
}
.cid-tTkj3Dkr2b .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-tTkj3Dkr2b a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-tTkj3Dkr2b .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-tTkj3Dkr2b .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-tTkj3Dkr2b .mbr-subscribe .input-group-btn button,
.cid-tTkj3Dkr2b .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-tTkj3Dkr2b .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tTkj3Dkr2b input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-tTkj3Dkr2b .input-group-btn {
    width: 100%;
  }
  .cid-tTkj3Dkr2b .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-tTkj3Dkr2b .mbr-form {
    margin-bottom: 0;
  }
  .cid-tTkj3Dkr2b .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-tTkj3Dkr2b .input-group-btn a.btn {
    width: 100%;
  }
  .cid-tTkj3Dkr2b .input-group-btn {
    width: calc(92%);
  }
  .cid-tTkj3Dkr2b .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-tTkj3Dkr2b .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-tTkj3Dkr2b .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-tTkj3Dkr2b .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-tTkj3Dkr2b .input-group-btn button,
  .cid-tTkj3Dkr2b .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-tTkj3Dkr2b .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-tTkj3Dkr2b .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tTkj3Dkr2b .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-tTkj3Dkr2b .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-tTkj3Dkr2b .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-tTkj3Dkr2b .mbr-section-subtitle,
.cid-tTkj3Dkr2b .mbr-section-btn {
  text-align: center;
}
.cid-tW4vZfVMyK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #549fe2;
}
@media (max-width: 767px) {
  .cid-tW4vZfVMyK .content {
    text-align: center;
  }
  .cid-tW4vZfVMyK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tW4vZfVMyK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tW4vZfVMyK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tW4vZfVMyK .media-wrap img {
  height: 6rem;
}
.cid-tW4vZfVMyK .mbr-text {
  color: #8d97ad;
}
.cid-tW4vZfVMyK .p-title {
  font-size: 17px;
  color: #000000;
}
.cid-tW4vZfVMyK .p-title span {
  color: #111111;
}
.cid-tW4vZfVMyK .title-card {
  font-size: 1.3rem;
}
.cid-tW4vZfVMyK .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tW4vZfVMyK .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tW4vZfVMyK .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tW4vZfVMyK .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tW4vZfVMyK .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tW4vZfVMyK .copyright {
  display: flex;
  align-items: center;
}
.cid-tW4vZfVMyK .copyright img {
  margin-right: 10px;
}
.cid-tW4vZfVMyK .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #52e5e5;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tW4vZfVMyK .icon-transition span:hover {
  background-color: #1dc9cb;
}
@media (max-width: 767px) {
  .cid-tW4vZfVMyK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tW4vZfVMyK .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tW4vZfVMyK .footer-menu {
    justify-content: center;
  }
}
.cid-tTkjkZggRg .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-tTkjkZggRg .nav-item,
.cid-tTkjkZggRg .nav-link,
.cid-tTkjkZggRg .navbar-caption {
  font-weight: normal;
}
.cid-tTkjkZggRg .nav-item:focus,
.cid-tTkjkZggRg .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTkjkZggRg .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tTkjkZggRg .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-tTkjkZggRg .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tTkjkZggRg .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tTkjkZggRg .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tTkjkZggRg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tTkjkZggRg .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-tTkjkZggRg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTkjkZggRg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTkjkZggRg .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #549fe2;
  background: none;
}
.cid-tTkjkZggRg .navbar.opened {
  transition: all .3s;
  background: #549fe2 !important;
}
.cid-tTkjkZggRg .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tTkjkZggRg .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTkjkZggRg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTkjkZggRg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTkjkZggRg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tTkjkZggRg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tTkjkZggRg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTkjkZggRg .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-tTkjkZggRg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTkjkZggRg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTkjkZggRg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTkjkZggRg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTkjkZggRg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTkjkZggRg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tTkjkZggRg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTkjkZggRg .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-tTkjkZggRg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tTkjkZggRg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTkjkZggRg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tTkjkZggRg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tTkjkZggRg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTkjkZggRg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTkjkZggRg .navbar.navbar-short {
  background: #549fe2 !important;
  min-height: 60px;
}
.cid-tTkjkZggRg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tTkjkZggRg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tTkjkZggRg .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-tTkjkZggRg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTkjkZggRg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTkjkZggRg .dropdown-item.active,
.cid-tTkjkZggRg .dropdown-item:active {
  background-color: transparent;
}
.cid-tTkjkZggRg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTkjkZggRg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTkjkZggRg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549fe2;
}
.cid-tTkjkZggRg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTkjkZggRg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTkjkZggRg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTkjkZggRg .navbar-buttons {
  text-align: center;
}
.cid-tTkjkZggRg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTkjkZggRg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTkjkZggRg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTkjkZggRg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkjkZggRg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkjkZggRg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTkjkZggRg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkjkZggRg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTkjkZggRg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTkjkZggRg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkjkZggRg .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tTkjkZggRg a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tTkjkZggRg .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tTkjkZggRg .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tTkjkZggRg .soc-item {
  margin: .5rem .3rem;
}
.cid-tTkjkZggRg .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-tTkjkZggRg .navbar {
    height: 77px;
  }
  .cid-tTkjkZggRg .navbar.opened {
    height: auto;
  }
  .cid-tTkjkZggRg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTkjkZN9Or {
  padding-top: 75px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
}
.cid-tTkjkZN9Or .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-tTkjkZN9Or .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkjkZN9Or .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkjkZN9Or .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkjkZN9Or H1 {
  color: #000000;
}
.cid-tTkjl04NM1 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-tTkjl04NM1 .mbr-overlay {
  background: #444444;
}
.cid-tTkjl04NM1 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkjl04NM1 .mbr-section-subtitle,
.cid-tTkjl04NM1 mbr-section-btn {
  color: #ffffff;
}
.cid-tTkjl04NM1 B {
  color: #333333;
}
.cid-tTkjl04NM1 H1 {
  color: #ffffff;
}
.cid-tTkMPtxoeZ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTkMPtxoeZ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tTkMPtxoeZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkMPtxoeZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkMPtxoeZ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTkMMWM7ZA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTkMMWM7ZA .mbr-text {
  color: #000000;
}
.cid-tTkMMWM7ZA .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTkMMWM7ZA .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTkMMWM7ZA .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-tTkNGFTpbR {
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpeg");
}
.cid-tTkNGFTpbR .mbr-overlay {
  background: #444444;
}
.cid-tTkNGFTpbR .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkNGFTpbR .mbr-section-subtitle,
.cid-tTkNGFTpbR mbr-section-btn {
  color: #000000;
}
.cid-tTkNGFTpbR B {
  color: #333333;
}
.cid-tTkNGFTpbR H1 {
  color: #f4f8fa;
}
.cid-tTkOdMucSS {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTkOdMucSS .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tTkOdMucSS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkOdMucSS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkOdMucSS .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTkOb2Npef {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTkOb2Npef .mbr-text {
  color: #000000;
}
.cid-tTkOb2Npef .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTkOb2Npef .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTkOb2Npef .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-tTkKAL5lL3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTkKAL5lL3 .card-text,
.cid-tTkKAL5lL3 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tTkKAL5lL3 .main,
.cid-tTkKAL5lL3 .main-reverse {
  border: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0;
  background: #ffffff;
}
.cid-tTkKAL5lL3 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tTkKAL5lL3 .main-reverse {
  flex-direction: row-reverse;
}
.cid-tTkKAL5lL3 .image-element {
  padding: 0;
  display: flex;
  justify-content: center;
}
.cid-tTkKAL5lL3 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tTkKAL5lL3 .text-element {
  padding: 3rem 2rem;
}
.cid-tTkKAL5lL3 .mbr-iconfont {
  font-size: 3rem;
  color: #188ef4;
}
.cid-tTkKAL5lL3 .bottom-radius {
  overflow: hidden;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tTkKAL5lL3 .top-radius {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tTkKAL5lL3 .main-reverse {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-tTkKAL5lL3 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-tTkKAL5lL3 .image-element,
  .cid-tTkKAL5lL3 .text-element {
    margin-bottom: 0;
  }
  .cid-tTkKAL5lL3 .main:first-child {
    padding-top: 0;
  }
}
.cid-tTkKAL5lL3 .card-text,
.cid-tTkKAL5lL3 .mbr-section-btn {
  color: #000000;
}
.cid-tTkKAL5lL3 .mbr-title,
.cid-tTkKAL5lL3 .card-img {
  color: #188ef4;
}
.cid-tTkjl0TH8t {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTkjl0TH8t .mbr-text {
  color: #000000;
}
.cid-tTkjl14oLG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  overflow: hidden !important;
}
.cid-tTkjl14oLG .mbr-section-subtitle {
  font-weight: 400;
}
.cid-tTkjl14oLG .mbr-section-title {
  padding-bottom: 2rem;
  text-align: center;
}
.cid-tTkjl14oLG .img-block {
  align-self: center;
}
.cid-tTkjl14oLG .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTkjl14oLG .mbr-form {
  margin-bottom: 3rem;
}
.cid-tTkjl14oLG .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-tTkjl14oLG a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-tTkjl14oLG .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-tTkjl14oLG .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-tTkjl14oLG .mbr-subscribe .input-group-btn button,
.cid-tTkjl14oLG .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-tTkjl14oLG .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tTkjl14oLG input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-tTkjl14oLG .input-group-btn {
    width: 100%;
  }
  .cid-tTkjl14oLG .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-tTkjl14oLG .mbr-form {
    margin-bottom: 0;
  }
  .cid-tTkjl14oLG .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-tTkjl14oLG .input-group-btn a.btn {
    width: 100%;
  }
  .cid-tTkjl14oLG .input-group-btn {
    width: calc(92%);
  }
  .cid-tTkjl14oLG .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-tTkjl14oLG .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-tTkjl14oLG .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-tTkjl14oLG .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-tTkjl14oLG .input-group-btn button,
  .cid-tTkjl14oLG .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-tTkjl14oLG .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-tTkjl14oLG .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tTkjl14oLG .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-tTkjl14oLG .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-tTkjl14oLG .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-tTkjl14oLG .mbr-section-subtitle,
.cid-tTkjl14oLG .mbr-section-btn {
  text-align: center;
}
.cid-tW4w2bmz4X {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #549fe2;
}
@media (max-width: 767px) {
  .cid-tW4w2bmz4X .content {
    text-align: center;
  }
  .cid-tW4w2bmz4X .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tW4w2bmz4X .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tW4w2bmz4X .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tW4w2bmz4X .media-wrap img {
  height: 6rem;
}
.cid-tW4w2bmz4X .mbr-text {
  color: #8d97ad;
}
.cid-tW4w2bmz4X .p-title {
  font-size: 17px;
  color: #000000;
}
.cid-tW4w2bmz4X .p-title span {
  color: #111111;
}
.cid-tW4w2bmz4X .title-card {
  font-size: 1.3rem;
}
.cid-tW4w2bmz4X .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tW4w2bmz4X .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tW4w2bmz4X .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tW4w2bmz4X .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tW4w2bmz4X .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tW4w2bmz4X .copyright {
  display: flex;
  align-items: center;
}
.cid-tW4w2bmz4X .copyright img {
  margin-right: 10px;
}
.cid-tW4w2bmz4X .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #52e5e5;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tW4w2bmz4X .icon-transition span:hover {
  background-color: #1dc9cb;
}
@media (max-width: 767px) {
  .cid-tW4w2bmz4X .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tW4w2bmz4X .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tW4w2bmz4X .footer-menu {
    justify-content: center;
  }
}
.cid-tTkjsGpczc .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-tTkjsGpczc .nav-item,
.cid-tTkjsGpczc .nav-link,
.cid-tTkjsGpczc .navbar-caption {
  font-weight: normal;
}
.cid-tTkjsGpczc .nav-item:focus,
.cid-tTkjsGpczc .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTkjsGpczc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tTkjsGpczc .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-tTkjsGpczc .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tTkjsGpczc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tTkjsGpczc .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tTkjsGpczc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tTkjsGpczc .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-tTkjsGpczc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTkjsGpczc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTkjsGpczc .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #549fe2;
  background: none;
}
.cid-tTkjsGpczc .navbar.opened {
  transition: all .3s;
  background: #549fe2 !important;
}
.cid-tTkjsGpczc .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tTkjsGpczc .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTkjsGpczc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTkjsGpczc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTkjsGpczc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tTkjsGpczc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tTkjsGpczc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTkjsGpczc .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-tTkjsGpczc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTkjsGpczc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTkjsGpczc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTkjsGpczc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTkjsGpczc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTkjsGpczc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tTkjsGpczc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTkjsGpczc .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-tTkjsGpczc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tTkjsGpczc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTkjsGpczc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tTkjsGpczc .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tTkjsGpczc .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTkjsGpczc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTkjsGpczc .navbar.navbar-short {
  background: #549fe2 !important;
  min-height: 60px;
}
.cid-tTkjsGpczc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tTkjsGpczc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tTkjsGpczc .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-tTkjsGpczc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTkjsGpczc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTkjsGpczc .dropdown-item.active,
.cid-tTkjsGpczc .dropdown-item:active {
  background-color: transparent;
}
.cid-tTkjsGpczc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTkjsGpczc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTkjsGpczc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549fe2;
}
.cid-tTkjsGpczc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTkjsGpczc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTkjsGpczc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTkjsGpczc .navbar-buttons {
  text-align: center;
}
.cid-tTkjsGpczc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTkjsGpczc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTkjsGpczc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTkjsGpczc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkjsGpczc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkjsGpczc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTkjsGpczc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkjsGpczc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTkjsGpczc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTkjsGpczc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkjsGpczc .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tTkjsGpczc a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tTkjsGpczc .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tTkjsGpczc .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tTkjsGpczc .soc-item {
  margin: .5rem .3rem;
}
.cid-tTkjsGpczc .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-tTkjsGpczc .navbar {
    height: 77px;
  }
  .cid-tTkjsGpczc .navbar.opened {
    height: auto;
  }
  .cid-tTkjsGpczc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTkjsGUsFx {
  padding-top: 75px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
}
.cid-tTkjsGUsFx .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-tTkjsGUsFx .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkjsGUsFx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkjsGUsFx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkjsGUsFx H1 {
  color: #000000;
}
.cid-tTkjsHb2J0 {
  background-image: url("../../../assets/images/mbr-1920x1053.jpg");
}
.cid-tTkjsHb2J0 .mbr-overlay {
  background: #444444;
}
.cid-tTkjsHb2J0 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkjsHb2J0 .mbr-section-subtitle,
.cid-tTkjsHb2J0 mbr-section-btn {
  color: #ffffff;
}
.cid-tTkjsHb2J0 B {
  color: #333333;
}
.cid-tTkjsHb2J0 H1 {
  color: #ffffff;
}
.cid-tTkRAQuZ22 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTkRAQuZ22 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tTkRAQuZ22 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkRAQuZ22 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkRAQuZ22 .mbr-section-title {
  color: #000000;
}
.cid-tTpHU1Eg5q {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tTpHU1Eg5q .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpHU1Eg5q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpHU1Eg5q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpHU1Eg5q .mbr-section-title {
  color: #549fe2;
}
.cid-tTpIrBMB5f {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpIrBMB5f .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpIrBMB5f .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpIrBMB5f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpIrBMB5f .mbr-section-title {
  color: #549fe2;
}
.cid-tTkRLLOWV9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-8-1920x1280.jpg");
}
.cid-tTkRLLOWV9 .card {
  padding: 1rem 1rem 1rem 1rem;
}
.cid-tTkRLLOWV9 .card-title {
  padding: .5rem 1rem .5rem 4rem;
  margin-left: .5rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tTkRLLOWV9 .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-tTkRLLOWV9 .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-tTkRLLOWV9 .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tTkRLLOWV9 .card-text,
.cid-tTkRLLOWV9 .mbr-subtitle {
  color: #8d97ad;
}
.cid-tTkRLLOWV9 .card-sign {
  padding-top: .5rem;
}
.cid-tTkRLLOWV9 .underline .line {
  width: 5rem;
  height: 1px;
  background: #efefef;
  display: inline-block;
}
.cid-tTkRLLOWV9 .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tTkRLLOWV9 .card-title {
    text-align: center;
  }
  .cid-tTkRLLOWV9 p.mbr-text,
  .cid-tTkRLLOWV9 p.date {
    text-align: center;
  }
}
.cid-tTkRLLOWV9 .card-box {
  background: #f4f8fa;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tTkRLLOWV9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkRLLOWV9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkRLLOWV9 .card-title,
.cid-tTkRLLOWV9 .card-img {
  text-align: left;
}
.cid-tTpJhrrI83 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-8-1920x1280.jpg");
}
.cid-tTpJhrrI83 .card {
  padding: 1rem 1rem 1rem 1rem;
}
.cid-tTpJhrrI83 .card-title {
  padding: .5rem 1rem .5rem 4rem;
  margin-left: .5rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tTpJhrrI83 .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-tTpJhrrI83 .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-tTpJhrrI83 .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tTpJhrrI83 .card-text,
.cid-tTpJhrrI83 .mbr-subtitle {
  color: #8d97ad;
}
.cid-tTpJhrrI83 .card-sign {
  padding-top: .5rem;
}
.cid-tTpJhrrI83 .underline .line {
  width: 5rem;
  height: 1px;
  background: #efefef;
  display: inline-block;
}
.cid-tTpJhrrI83 .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tTpJhrrI83 .card-title {
    text-align: center;
  }
  .cid-tTpJhrrI83 p.mbr-text,
  .cid-tTpJhrrI83 p.date {
    text-align: center;
  }
}
.cid-tTpJhrrI83 .card-box {
  background: #f4f8fa;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tTpJhrrI83 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpJhrrI83 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpJhrrI83 .card-title,
.cid-tTpJhrrI83 .card-img {
  text-align: left;
}
.cid-tTpJwRJ3Gd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-8-1920x1280.jpg");
}
.cid-tTpJwRJ3Gd .card {
  padding: 1rem 1rem 1rem 1rem;
}
.cid-tTpJwRJ3Gd .card-title {
  padding: .5rem 1rem .5rem 4rem;
  margin-left: .5rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tTpJwRJ3Gd .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-tTpJwRJ3Gd .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-tTpJwRJ3Gd .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tTpJwRJ3Gd .card-text,
.cid-tTpJwRJ3Gd .mbr-subtitle {
  color: #8d97ad;
}
.cid-tTpJwRJ3Gd .card-sign {
  padding-top: .5rem;
}
.cid-tTpJwRJ3Gd .underline .line {
  width: 5rem;
  height: 1px;
  background: #efefef;
  display: inline-block;
}
.cid-tTpJwRJ3Gd .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tTpJwRJ3Gd .card-title {
    text-align: center;
  }
  .cid-tTpJwRJ3Gd p.mbr-text,
  .cid-tTpJwRJ3Gd p.date {
    text-align: center;
  }
}
.cid-tTpJwRJ3Gd .card-box {
  background: #f4f8fa;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tTpJwRJ3Gd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpJwRJ3Gd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpJwRJ3Gd .card-title,
.cid-tTpJwRJ3Gd .card-img {
  text-align: left;
}
.cid-tTpJxjXcKT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-8-1920x1280.jpg");
}
.cid-tTpJxjXcKT .card {
  padding: 1rem 1rem 1rem 1rem;
}
.cid-tTpJxjXcKT .card-title {
  padding: .5rem 1rem .5rem 4rem;
  margin-left: .5rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tTpJxjXcKT .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-tTpJxjXcKT .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-tTpJxjXcKT .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tTpJxjXcKT .card-text,
.cid-tTpJxjXcKT .mbr-subtitle {
  color: #8d97ad;
}
.cid-tTpJxjXcKT .card-sign {
  padding-top: .5rem;
}
.cid-tTpJxjXcKT .underline .line {
  width: 5rem;
  height: 1px;
  background: #efefef;
  display: inline-block;
}
.cid-tTpJxjXcKT .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tTpJxjXcKT .card-title {
    text-align: center;
  }
  .cid-tTpJxjXcKT p.mbr-text,
  .cid-tTpJxjXcKT p.date {
    text-align: center;
  }
}
.cid-tTpJxjXcKT .card-box {
  background: #f4f8fa;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tTpJxjXcKT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpJxjXcKT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpJxjXcKT .card-title,
.cid-tTpJxjXcKT .card-img {
  text-align: left;
}
.cid-tTpP78xtAf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-8-1920x1280.jpg");
}
.cid-tTpP78xtAf .card {
  padding: 1rem 1rem 1rem 1rem;
}
.cid-tTpP78xtAf .card-title {
  padding: .5rem 1rem .5rem 4rem;
  margin-left: .5rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tTpP78xtAf .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-tTpP78xtAf .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-tTpP78xtAf .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tTpP78xtAf .card-text,
.cid-tTpP78xtAf .mbr-subtitle {
  color: #8d97ad;
}
.cid-tTpP78xtAf .card-sign {
  padding-top: .5rem;
}
.cid-tTpP78xtAf .underline .line {
  width: 5rem;
  height: 1px;
  background: #efefef;
  display: inline-block;
}
.cid-tTpP78xtAf .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tTpP78xtAf .card-title {
    text-align: center;
  }
  .cid-tTpP78xtAf p.mbr-text,
  .cid-tTpP78xtAf p.date {
    text-align: center;
  }
}
.cid-tTpP78xtAf .card-box {
  background: #f4f8fa;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tTpP78xtAf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpP78xtAf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpP78xtAf .card-title,
.cid-tTpP78xtAf .card-img {
  text-align: left;
}
.cid-tTpPV7ftVZ {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #549fe2;
}
.cid-tTpPV7ftVZ .container-fluid {
  padding: 0 5rem;
}
.cid-tTpPV7ftVZ .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTpPV7ftVZ .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-tTpPV7ftVZ .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-tTpPV7ftVZ .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tTpPV7ftVZ .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tTpPV7ftVZ .container-fluid {
    padding: 0 1rem;
  }
  .cid-tTpPV7ftVZ .mbr-figure {
    margin-top: 1rem;
  }
  .cid-tTpPV7ftVZ .mbr-section-title {
    text-align: center !important;
  }
  .cid-tTpPV7ftVZ .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-tTpPV7ftVZ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tTpPV7ftVZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpPV7ftVZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkjsI8SBB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTkjsI8SBB .mbr-text {
  color: #000000;
}
.cid-tTkjsInV9p {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  overflow: hidden !important;
}
.cid-tTkjsInV9p .mbr-section-subtitle {
  font-weight: 400;
}
.cid-tTkjsInV9p .mbr-section-title {
  padding-bottom: 2rem;
  text-align: center;
}
.cid-tTkjsInV9p .img-block {
  align-self: center;
}
.cid-tTkjsInV9p .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTkjsInV9p .mbr-form {
  margin-bottom: 3rem;
}
.cid-tTkjsInV9p .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-tTkjsInV9p a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-tTkjsInV9p .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-tTkjsInV9p .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-tTkjsInV9p .mbr-subscribe .input-group-btn button,
.cid-tTkjsInV9p .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-tTkjsInV9p .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tTkjsInV9p input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-tTkjsInV9p .input-group-btn {
    width: 100%;
  }
  .cid-tTkjsInV9p .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-tTkjsInV9p .mbr-form {
    margin-bottom: 0;
  }
  .cid-tTkjsInV9p .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-tTkjsInV9p .input-group-btn a.btn {
    width: 100%;
  }
  .cid-tTkjsInV9p .input-group-btn {
    width: calc(92%);
  }
  .cid-tTkjsInV9p .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-tTkjsInV9p .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-tTkjsInV9p .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-tTkjsInV9p .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-tTkjsInV9p .input-group-btn button,
  .cid-tTkjsInV9p .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-tTkjsInV9p .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-tTkjsInV9p .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tTkjsInV9p .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-tTkjsInV9p .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-tTkjsInV9p .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-tTkjsInV9p .mbr-section-subtitle,
.cid-tTkjsInV9p .mbr-section-btn {
  text-align: center;
}
.cid-tW4w7vbIrA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #549fe2;
}
@media (max-width: 767px) {
  .cid-tW4w7vbIrA .content {
    text-align: center;
  }
  .cid-tW4w7vbIrA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tW4w7vbIrA .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tW4w7vbIrA .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tW4w7vbIrA .media-wrap img {
  height: 6rem;
}
.cid-tW4w7vbIrA .mbr-text {
  color: #8d97ad;
}
.cid-tW4w7vbIrA .p-title {
  font-size: 17px;
  color: #000000;
}
.cid-tW4w7vbIrA .p-title span {
  color: #111111;
}
.cid-tW4w7vbIrA .title-card {
  font-size: 1.3rem;
}
.cid-tW4w7vbIrA .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tW4w7vbIrA .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tW4w7vbIrA .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tW4w7vbIrA .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tW4w7vbIrA .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tW4w7vbIrA .copyright {
  display: flex;
  align-items: center;
}
.cid-tW4w7vbIrA .copyright img {
  margin-right: 10px;
}
.cid-tW4w7vbIrA .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #52e5e5;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tW4w7vbIrA .icon-transition span:hover {
  background-color: #1dc9cb;
}
@media (max-width: 767px) {
  .cid-tW4w7vbIrA .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tW4w7vbIrA .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tW4w7vbIrA .footer-menu {
    justify-content: center;
  }
}
.cid-tTkjzKBFjV .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-tTkjzKBFjV .nav-item,
.cid-tTkjzKBFjV .nav-link,
.cid-tTkjzKBFjV .navbar-caption {
  font-weight: normal;
}
.cid-tTkjzKBFjV .nav-item:focus,
.cid-tTkjzKBFjV .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTkjzKBFjV .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tTkjzKBFjV .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-tTkjzKBFjV .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tTkjzKBFjV .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tTkjzKBFjV .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tTkjzKBFjV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tTkjzKBFjV .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-tTkjzKBFjV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTkjzKBFjV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTkjzKBFjV .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #549fe2;
  background: none;
}
.cid-tTkjzKBFjV .navbar.opened {
  transition: all .3s;
  background: #549fe2 !important;
}
.cid-tTkjzKBFjV .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tTkjzKBFjV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTkjzKBFjV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTkjzKBFjV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTkjzKBFjV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tTkjzKBFjV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tTkjzKBFjV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTkjzKBFjV .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-tTkjzKBFjV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTkjzKBFjV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTkjzKBFjV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTkjzKBFjV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTkjzKBFjV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTkjzKBFjV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tTkjzKBFjV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTkjzKBFjV .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-tTkjzKBFjV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tTkjzKBFjV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTkjzKBFjV .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tTkjzKBFjV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tTkjzKBFjV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTkjzKBFjV .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTkjzKBFjV .navbar.navbar-short {
  background: #549fe2 !important;
  min-height: 60px;
}
.cid-tTkjzKBFjV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tTkjzKBFjV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tTkjzKBFjV .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-tTkjzKBFjV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTkjzKBFjV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTkjzKBFjV .dropdown-item.active,
.cid-tTkjzKBFjV .dropdown-item:active {
  background-color: transparent;
}
.cid-tTkjzKBFjV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTkjzKBFjV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTkjzKBFjV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549fe2;
}
.cid-tTkjzKBFjV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTkjzKBFjV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTkjzKBFjV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTkjzKBFjV .navbar-buttons {
  text-align: center;
}
.cid-tTkjzKBFjV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTkjzKBFjV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTkjzKBFjV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTkjzKBFjV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkjzKBFjV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkjzKBFjV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTkjzKBFjV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkjzKBFjV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTkjzKBFjV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTkjzKBFjV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkjzKBFjV .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tTkjzKBFjV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tTkjzKBFjV .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tTkjzKBFjV .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tTkjzKBFjV .soc-item {
  margin: .5rem .3rem;
}
.cid-tTkjzKBFjV .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-tTkjzKBFjV .navbar {
    height: 77px;
  }
  .cid-tTkjzKBFjV .navbar.opened {
    height: auto;
  }
  .cid-tTkjzKBFjV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTkjzL2fOQ {
  padding-top: 75px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
}
.cid-tTkjzL2fOQ .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-tTkjzL2fOQ .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkjzL2fOQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkjzL2fOQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkjzL2fOQ H1 {
  color: #000000;
}
.cid-tTkjzLhs52 {
  background-image: url("../../../assets/images/seaside-development-cut-2000x1000.jpeg");
}
.cid-tTkjzLhs52 .mbr-overlay {
  background: #444444;
}
.cid-tTkjzLhs52 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkjzLhs52 .mbr-section-subtitle,
.cid-tTkjzLhs52 mbr-section-btn {
  color: #000000;
}
.cid-tTkjzLhs52 B {
  color: #333333;
}
.cid-tTkjzLhs52 H1 {
  color: #549fe2;
}
.cid-tTlaKJ7El8 {
  background-image: url("../../../assets/images/mbr-1920x692.jpg");
}
.cid-tTlaKJ7El8 .mbr-overlay {
  background: #444444;
}
.cid-tTlaKJ7El8 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTlaKJ7El8 .mbr-section-subtitle,
.cid-tTlaKJ7El8 mbr-section-btn {
  color: #000000;
}
.cid-tTlaKJ7El8 B {
  color: #333333;
}
.cid-tTlaKJ7El8 H1 {
  color: #f4f8fa;
}
.cid-tTlbcfEPKp {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-tTlbcfEPKp .card {
  padding: 1rem 1rem 1rem 1rem;
}
.cid-tTlbcfEPKp .card-title {
  padding: .5rem 1rem .5rem 6.5rem;
  margin-left: -2rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tTlbcfEPKp .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-tTlbcfEPKp .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-tTlbcfEPKp .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tTlbcfEPKp .card-text,
.cid-tTlbcfEPKp .mbr-subtitle {
  color: #8d97ad;
}
.cid-tTlbcfEPKp .card-sign {
  padding-top: .5rem;
}
.cid-tTlbcfEPKp .underline .line {
  width: 5rem;
  height: 1px;
  background: #efefef;
  display: inline-block;
}
.cid-tTlbcfEPKp .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tTlbcfEPKp .card-title {
    text-align: center;
  }
  .cid-tTlbcfEPKp p.mbr-text,
  .cid-tTlbcfEPKp p.date {
    text-align: center;
  }
}
.cid-tTlbcfEPKp .card-box {
  background: #ffffff;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tTlbcfEPKp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTlbcfEPKp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTlbG38SZ8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-tTlbG38SZ8 .card {
  padding: 1rem 1rem 1rem 1rem;
}
.cid-tTlbG38SZ8 .card-title {
  padding: .5rem 1rem .5rem 6.5rem;
  margin-left: -2rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tTlbG38SZ8 .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-tTlbG38SZ8 .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-tTlbG38SZ8 .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tTlbG38SZ8 .card-text,
.cid-tTlbG38SZ8 .mbr-subtitle {
  color: #8d97ad;
}
.cid-tTlbG38SZ8 .card-sign {
  padding-top: .5rem;
}
.cid-tTlbG38SZ8 .underline .line {
  width: 5rem;
  height: 1px;
  background: #efefef;
  display: inline-block;
}
.cid-tTlbG38SZ8 .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tTlbG38SZ8 .card-title {
    text-align: center;
  }
  .cid-tTlbG38SZ8 p.mbr-text,
  .cid-tTlbG38SZ8 p.date {
    text-align: center;
  }
}
.cid-tTlbG38SZ8 .card-box {
  background: #ffffff;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tTlbG38SZ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTlbG38SZ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTlbX4KbZj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-tTlbX4KbZj .card {
  padding: 1rem 1rem 1rem 1rem;
}
.cid-tTlbX4KbZj .card-title {
  padding: .5rem 1rem .5rem 6.5rem;
  margin-left: -2rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tTlbX4KbZj .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-tTlbX4KbZj .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-tTlbX4KbZj .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tTlbX4KbZj .card-text,
.cid-tTlbX4KbZj .mbr-subtitle {
  color: #8d97ad;
}
.cid-tTlbX4KbZj .card-sign {
  padding-top: .5rem;
}
.cid-tTlbX4KbZj .underline .line {
  width: 5rem;
  height: 1px;
  background: #efefef;
  display: inline-block;
}
.cid-tTlbX4KbZj .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tTlbX4KbZj .card-title {
    text-align: center;
  }
  .cid-tTlbX4KbZj p.mbr-text,
  .cid-tTlbX4KbZj p.date {
    text-align: center;
  }
}
.cid-tTlbX4KbZj .card-box {
  background: #ffffff;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tTlbX4KbZj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTlbX4KbZj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTldYl9onD {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(45deg, #2bdc9d, #51aafa);
}
.cid-tTldYl9onD .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTldYl9onD .carousel-item.active,
.cid-tTldYl9onD .carousel-item-next,
.cid-tTldYl9onD .carousel-item-prev {
  display: flex;
}
.cid-tTldYl9onD .carousel-controls a {
  transition: opacity .5s;
  font-size: 2rem;
  width: 20%;
}
.cid-tTldYl9onD .carousel-controls a span {
  position: absolute;
  top: 45%;
  font-size: 1.2rem;
  padding: 15px;
  border-radius: 50%;
  color: #000000;
  background: #ffffff;
  opacity: .9;
}
.cid-tTldYl9onD .carousel-controls a:hover span {
  opacity: 1;
}
.cid-tTldYl9onD .user_image {
  width: 100px;
  height: 100px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  margin: 1rem auto 1rem auto;
  display: flex;
}
.cid-tTldYl9onD .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tTldYl9onD .mbr-iconfont {
  font-size: 3rem;
  position: absolute;
  opacity: 0.3;
  color: #f4f8fa;
}
.cid-tTldYl9onD .mbr-iconfont.left-top {
  top: 0;
  left: 0;
}
.cid-tTldYl9onD .mbr-iconfont.right-bottom {
  bottom: 1rem;
  right: 0;
}
.cid-tTldYl9onD .user_text {
  color: #767676;
  position: relative;
}
@media (min-width: 768px) {
  .cid-tTldYl9onD .user_text p {
    padding: 1rem 4rem;
  }
}
@media (max-width: 230px) {
  .cid-tTldYl9onD .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tTldYl9onD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTldYl9onD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTmcN6Arto {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(45deg, #2bdc9d, #51aafa);
}
.cid-tTmcN6Arto .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTmcN6Arto .carousel-item.active,
.cid-tTmcN6Arto .carousel-item-next,
.cid-tTmcN6Arto .carousel-item-prev {
  display: flex;
}
.cid-tTmcN6Arto .carousel-controls a {
  transition: opacity .5s;
  font-size: 2rem;
  width: 20%;
}
.cid-tTmcN6Arto .carousel-controls a span {
  position: absolute;
  top: 45%;
  font-size: 1.2rem;
  padding: 15px;
  border-radius: 50%;
  color: #000000;
  background: #ffffff;
  opacity: .9;
}
.cid-tTmcN6Arto .carousel-controls a:hover span {
  opacity: 1;
}
.cid-tTmcN6Arto .user_image {
  width: 100px;
  height: 100px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  margin: 1rem auto 1rem auto;
  display: flex;
}
.cid-tTmcN6Arto .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tTmcN6Arto .mbr-iconfont {
  font-size: 3rem;
  position: absolute;
  opacity: 0.3;
  color: #f4f8fa;
}
.cid-tTmcN6Arto .mbr-iconfont.left-top {
  top: 0;
  left: 0;
}
.cid-tTmcN6Arto .mbr-iconfont.right-bottom {
  bottom: 1rem;
  right: 0;
}
.cid-tTmcN6Arto .user_text {
  color: #767676;
  position: relative;
}
@media (min-width: 768px) {
  .cid-tTmcN6Arto .user_text p {
    padding: 1rem 4rem;
  }
}
@media (max-width: 230px) {
  .cid-tTmcN6Arto .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tTmcN6Arto .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTmcN6Arto .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTmHGg6Ln5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tTmHGg6Ln5 .mbr-section-subtitle {
  color: #000000;
}
.cid-tTmHGg6Ln5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTmHGg6Ln5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTmMX4H6vq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTmMX4H6vq .card-text,
.cid-tTmMX4H6vq .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tTmMX4H6vq .main,
.cid-tTmMX4H6vq .main-reverse {
  border: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0;
  background: #ffffff;
}
.cid-tTmMX4H6vq .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tTmMX4H6vq .main-reverse {
  flex-direction: row-reverse;
}
.cid-tTmMX4H6vq .image-element {
  padding: 0;
  display: flex;
  justify-content: center;
}
.cid-tTmMX4H6vq .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tTmMX4H6vq .text-element {
  padding: 3rem 2rem;
}
.cid-tTmMX4H6vq .mbr-iconfont {
  font-size: 3rem;
  color: #188ef4;
}
.cid-tTmMX4H6vq .bottom-radius {
  overflow: hidden;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tTmMX4H6vq .top-radius {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tTmMX4H6vq .main-reverse {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-tTmMX4H6vq .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-tTmMX4H6vq .image-element,
  .cid-tTmMX4H6vq .text-element {
    margin-bottom: 0;
  }
  .cid-tTmMX4H6vq .main:first-child {
    padding-top: 0;
  }
}
.cid-tTmMX4H6vq .card-text,
.cid-tTmMX4H6vq .mbr-section-btn {
  color: #000000;
}
.cid-tTmMX4H6vq .mbr-title,
.cid-tTmMX4H6vq .card-img {
  color: #188ef4;
}
.cid-tTkjzM8gCO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTkjzM8gCO .mbr-text {
  color: #000000;
}
.cid-tTkjzMlZMX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  overflow: hidden !important;
}
.cid-tTkjzMlZMX .mbr-section-subtitle {
  font-weight: 400;
}
.cid-tTkjzMlZMX .mbr-section-title {
  padding-bottom: 2rem;
  text-align: center;
}
.cid-tTkjzMlZMX .img-block {
  align-self: center;
}
.cid-tTkjzMlZMX .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTkjzMlZMX .mbr-form {
  margin-bottom: 3rem;
}
.cid-tTkjzMlZMX .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-tTkjzMlZMX a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-tTkjzMlZMX .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-tTkjzMlZMX .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-tTkjzMlZMX .mbr-subscribe .input-group-btn button,
.cid-tTkjzMlZMX .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-tTkjzMlZMX .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tTkjzMlZMX input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-tTkjzMlZMX .input-group-btn {
    width: 100%;
  }
  .cid-tTkjzMlZMX .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-tTkjzMlZMX .mbr-form {
    margin-bottom: 0;
  }
  .cid-tTkjzMlZMX .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-tTkjzMlZMX .input-group-btn a.btn {
    width: 100%;
  }
  .cid-tTkjzMlZMX .input-group-btn {
    width: calc(92%);
  }
  .cid-tTkjzMlZMX .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-tTkjzMlZMX .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-tTkjzMlZMX .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-tTkjzMlZMX .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-tTkjzMlZMX .input-group-btn button,
  .cid-tTkjzMlZMX .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-tTkjzMlZMX .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-tTkjzMlZMX .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tTkjzMlZMX .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-tTkjzMlZMX .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-tTkjzMlZMX .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-tTkjzMlZMX .mbr-section-subtitle,
.cid-tTkjzMlZMX .mbr-section-btn {
  text-align: center;
}
.cid-tTmN5xvppQ {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTmN5xvppQ .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-tTmN5xvppQ .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTmN5xvppQ .card-img img {
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tTmN5xvppQ .section-text,
.cid-tTmN5xvppQ .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-tTmN5xvppQ .section-text,
  .cid-tTmN5xvppQ .card-text,
  .cid-tTmN5xvppQ .card-title,
  .cid-tTmN5xvppQ .mbr-section-title {
    text-align: center;
  }
}
.cid-tTmN6q5G9t {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #549fe2;
}
.cid-tTmN6q5G9t .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-tTmN6q5G9t .mbr-section-title {
  margin: 0;
}
.cid-tTmN6q5G9t .card-img {
  text-align: center;
}
.cid-tTmN6q5G9t .mbr-section-subtitle,
.cid-tTmN6q5G9t .mbr-text {
  color: #8d97ad;
}
.cid-tTmN6q5G9t .row-item {
  border-radius: .25rem;
  background: #ffffff;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 767px) {
  .cid-tTmN6q5G9t .card-img,
  .cid-tTmN6q5G9t .mbr-text,
  .cid-tTmN6q5G9t .mbr-card-title,
  .cid-tTmN6q5G9t .mbr-section-subtitle,
  .cid-tTmN6q5G9t .mbr-section-title,
  .cid-tTmN6q5G9t .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tTmN6q5G9t .row-item {
    margin-bottom: 2rem;
  }
}
.cid-tTmN6q5G9t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTmN6q5G9t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTmN6q5G9t .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tTmN6q5G9t .mbr-text {
  color: #000000;
}
.cid-tTmNaGrxZ9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tTmNaGrxZ9 .mbr-section-title {
  margin: 0;
}
.cid-tTmNaGrxZ9 .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-tTmNaGrxZ9 .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-tTmNaGrxZ9 .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tTmNaGrxZ9 .card1 {
  background: linear-gradient(45deg, #2bdc9d, #1dc9cb);
}
.cid-tTmNaGrxZ9 .card2 {
  background: linear-gradient(45deg, #188ef4, #306de8);
}
.cid-tTmNaGrxZ9 .card3 {
  background: linear-gradient(45deg, #ff4f7b, #ff695c);
}
.cid-tTmNaGrxZ9 .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-tTmNaGrxZ9 .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-tTmNaGrxZ9 .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-tTmNaGrxZ9 .mbr-section-btn {
  padding-top: 1rem;
}
.cid-tW4wbp3Zfh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #549fe2;
}
@media (max-width: 767px) {
  .cid-tW4wbp3Zfh .content {
    text-align: center;
  }
  .cid-tW4wbp3Zfh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tW4wbp3Zfh .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tW4wbp3Zfh .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tW4wbp3Zfh .media-wrap img {
  height: 6rem;
}
.cid-tW4wbp3Zfh .mbr-text {
  color: #8d97ad;
}
.cid-tW4wbp3Zfh .p-title {
  font-size: 17px;
  color: #000000;
}
.cid-tW4wbp3Zfh .p-title span {
  color: #111111;
}
.cid-tW4wbp3Zfh .title-card {
  font-size: 1.3rem;
}
.cid-tW4wbp3Zfh .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tW4wbp3Zfh .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tW4wbp3Zfh .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tW4wbp3Zfh .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tW4wbp3Zfh .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tW4wbp3Zfh .copyright {
  display: flex;
  align-items: center;
}
.cid-tW4wbp3Zfh .copyright img {
  margin-right: 10px;
}
.cid-tW4wbp3Zfh .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #52e5e5;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tW4wbp3Zfh .icon-transition span:hover {
  background-color: #1dc9cb;
}
@media (max-width: 767px) {
  .cid-tW4wbp3Zfh .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tW4wbp3Zfh .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tW4wbp3Zfh .footer-menu {
    justify-content: center;
  }
}
.cid-tTkjGUuAwE .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-tTkjGUuAwE .nav-item,
.cid-tTkjGUuAwE .nav-link,
.cid-tTkjGUuAwE .navbar-caption {
  font-weight: normal;
}
.cid-tTkjGUuAwE .nav-item:focus,
.cid-tTkjGUuAwE .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTkjGUuAwE .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tTkjGUuAwE .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-tTkjGUuAwE .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tTkjGUuAwE .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tTkjGUuAwE .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tTkjGUuAwE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tTkjGUuAwE .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-tTkjGUuAwE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTkjGUuAwE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTkjGUuAwE .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #549fe2;
  background: none;
}
.cid-tTkjGUuAwE .navbar.opened {
  transition: all .3s;
  background: #549fe2 !important;
}
.cid-tTkjGUuAwE .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tTkjGUuAwE .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTkjGUuAwE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTkjGUuAwE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTkjGUuAwE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tTkjGUuAwE .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tTkjGUuAwE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTkjGUuAwE .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-tTkjGUuAwE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTkjGUuAwE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTkjGUuAwE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTkjGUuAwE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTkjGUuAwE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTkjGUuAwE .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tTkjGUuAwE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTkjGUuAwE .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-tTkjGUuAwE .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tTkjGUuAwE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTkjGUuAwE .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tTkjGUuAwE .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tTkjGUuAwE .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTkjGUuAwE .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTkjGUuAwE .navbar.navbar-short {
  background: #549fe2 !important;
  min-height: 60px;
}
.cid-tTkjGUuAwE .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tTkjGUuAwE .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tTkjGUuAwE .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-tTkjGUuAwE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTkjGUuAwE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTkjGUuAwE .dropdown-item.active,
.cid-tTkjGUuAwE .dropdown-item:active {
  background-color: transparent;
}
.cid-tTkjGUuAwE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTkjGUuAwE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTkjGUuAwE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549fe2;
}
.cid-tTkjGUuAwE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTkjGUuAwE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTkjGUuAwE ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTkjGUuAwE .navbar-buttons {
  text-align: center;
}
.cid-tTkjGUuAwE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTkjGUuAwE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTkjGUuAwE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTkjGUuAwE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkjGUuAwE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkjGUuAwE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTkjGUuAwE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkjGUuAwE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTkjGUuAwE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTkjGUuAwE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkjGUuAwE .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tTkjGUuAwE a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tTkjGUuAwE .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tTkjGUuAwE .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tTkjGUuAwE .soc-item {
  margin: .5rem .3rem;
}
.cid-tTkjGUuAwE .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-tTkjGUuAwE .navbar {
    height: 77px;
  }
  .cid-tTkjGUuAwE .navbar.opened {
    height: auto;
  }
  .cid-tTkjGUuAwE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTkjGV0Uza {
  padding-top: 75px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
}
.cid-tTkjGV0Uza .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-tTkjGV0Uza .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkjGV0Uza .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkjGV0Uza .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkjGV0Uza H1 {
  color: #000000;
}
.cid-tTkjGVhxsz {
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tTkjGVhxsz .mbr-overlay {
  background: #444444;
}
.cid-tTkjGVhxsz .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkjGVhxsz .mbr-section-subtitle,
.cid-tTkjGVhxsz mbr-section-btn {
  color: #000000;
}
.cid-tTkjGVhxsz B {
  color: #333333;
}
.cid-tTkjGVhxsz H1 {
  color: #f4f8fa;
}
.cid-tTmSWsYXW9 {
  background-color: #f6f6f6 !important;
  border: 18px solid #f6f6f6;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-tTmSWsYXW9 {
    border: 8px solid #f6f6f6;
    margin-top: -8px;
  }
}
.cid-tTmSWsYXW9 .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-tTmSWsYXW9 section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-tTmSWsYXW9 .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tTmSWsYXW9 .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTmSWsYXW9 .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tTmSWsYXW9 .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-tTmSWsYXW9 .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tTmSWsYXW9 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tTmSWsYXW9 .title-wrapper .image-wrapper {
  margin-top: 72px;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tTmSWsYXW9 .title-wrapper .image-wrapper {
    height: auto;
    margin-top: 30px;
  }
}
.cid-tTmSWsYXW9 .title-wrapper .image-wrapper img {
  height: 450px;
  width: 80%;
  object-fit: cover;
  border-radius: 1.2em;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-tTmSWsYXW9 .title-wrapper .image-wrapper img {
    height: 300px;
    width: 100%;
    margin: 0;
  }
}
.cid-tTmSWsYXW9 .title-wrapper .mbr-section-btn {
  margin-top: 30px;
}
.cid-tTmSWsYXW9 .mbr-section-title {
  color: #ed2c03;
}
.cid-tTmSWsYXW9 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tTmSWsYXW9 .mbr-section-title,
.cid-tTmSWsYXW9 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tTmSkwR5Dh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTmSkwR5Dh .mbr-text {
  color: #000000;
}
.cid-tTmSkwR5Dh .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTmSkwR5Dh .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTmSkwR5Dh .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-tTmTY1OTZH {
  background-color: #f6f6f6 !important;
  border: 18px solid #f6f6f6;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-tTmTY1OTZH {
    border: 8px solid #f6f6f6;
    margin-top: -8px;
  }
}
.cid-tTmTY1OTZH .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-tTmTY1OTZH section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-tTmTY1OTZH .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tTmTY1OTZH .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTmTY1OTZH .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tTmTY1OTZH .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-tTmTY1OTZH .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tTmTY1OTZH .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tTmTY1OTZH .title-wrapper .image-wrapper {
  margin-top: 72px;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tTmTY1OTZH .title-wrapper .image-wrapper {
    height: auto;
    margin-top: 30px;
  }
}
.cid-tTmTY1OTZH .title-wrapper .image-wrapper img {
  height: 450px;
  width: 80%;
  object-fit: cover;
  border-radius: 1.2em;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-tTmTY1OTZH .title-wrapper .image-wrapper img {
    height: 300px;
    width: 100%;
    margin: 0;
  }
}
.cid-tTmTY1OTZH .title-wrapper .mbr-section-btn {
  margin-top: 30px;
}
.cid-tTmTY1OTZH .mbr-section-title {
  color: #ed2c03;
}
.cid-tTmTY1OTZH .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tTmTY1OTZH .mbr-section-title,
.cid-tTmTY1OTZH .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tTmTYFXOXQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTmTYFXOXQ .mbr-text {
  color: #000000;
}
.cid-tTmTYFXOXQ .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTmTYFXOXQ .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTmTYFXOXQ .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-tTmU1WkVU5 {
  background-color: #f6f6f6 !important;
  border: 18px solid #f6f6f6;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-tTmU1WkVU5 {
    border: 8px solid #f6f6f6;
    margin-top: -8px;
  }
}
.cid-tTmU1WkVU5 .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-tTmU1WkVU5 section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-tTmU1WkVU5 .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tTmU1WkVU5 .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTmU1WkVU5 .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tTmU1WkVU5 .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-tTmU1WkVU5 .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tTmU1WkVU5 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tTmU1WkVU5 .title-wrapper .image-wrapper {
  margin-top: 72px;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tTmU1WkVU5 .title-wrapper .image-wrapper {
    height: auto;
    margin-top: 30px;
  }
}
.cid-tTmU1WkVU5 .title-wrapper .image-wrapper img {
  height: 450px;
  width: 80%;
  object-fit: cover;
  border-radius: 1.2em;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-tTmU1WkVU5 .title-wrapper .image-wrapper img {
    height: 300px;
    width: 100%;
    margin: 0;
  }
}
.cid-tTmU1WkVU5 .title-wrapper .mbr-section-btn {
  margin-top: 30px;
}
.cid-tTmU1WkVU5 .mbr-section-title {
  color: #ed2c03;
}
.cid-tTmU1WkVU5 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tTmU1WkVU5 .mbr-section-title,
.cid-tTmU1WkVU5 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tTmU2qTve8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTmU2qTve8 .mbr-text {
  color: #000000;
}
.cid-tTmU2qTve8 .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTmU2qTve8 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTmU2qTve8 .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-tTmNwZZMZG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTmNwZZMZG .card-text,
.cid-tTmNwZZMZG .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tTmNwZZMZG .main,
.cid-tTmNwZZMZG .main-reverse {
  border: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0;
  background: #ffffff;
}
.cid-tTmNwZZMZG .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tTmNwZZMZG .main-reverse {
  flex-direction: row-reverse;
}
.cid-tTmNwZZMZG .image-element {
  padding: 0;
  display: flex;
  justify-content: center;
}
.cid-tTmNwZZMZG .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tTmNwZZMZG .text-element {
  padding: 3rem 2rem;
}
.cid-tTmNwZZMZG .mbr-iconfont {
  font-size: 3rem;
  color: #188ef4;
}
.cid-tTmNwZZMZG .bottom-radius {
  overflow: hidden;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tTmNwZZMZG .top-radius {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tTmNwZZMZG .main-reverse {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-tTmNwZZMZG .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-tTmNwZZMZG .image-element,
  .cid-tTmNwZZMZG .text-element {
    margin-bottom: 0;
  }
  .cid-tTmNwZZMZG .main:first-child {
    padding-top: 0;
  }
}
.cid-tTmNwZZMZG .card-text,
.cid-tTmNwZZMZG .mbr-section-btn {
  color: #000000;
}
.cid-tTmNwZZMZG .mbr-title,
.cid-tTmNwZZMZG .card-img {
  color: #188ef4;
}
.cid-tTkjGW9eNl {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTkjGW9eNl .mbr-text {
  color: #000000;
}
.cid-tTkjGWpty0 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  overflow: hidden !important;
}
.cid-tTkjGWpty0 .mbr-section-subtitle {
  font-weight: 400;
}
.cid-tTkjGWpty0 .mbr-section-title {
  padding-bottom: 2rem;
  text-align: center;
}
.cid-tTkjGWpty0 .img-block {
  align-self: center;
}
.cid-tTkjGWpty0 .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTkjGWpty0 .mbr-form {
  margin-bottom: 3rem;
}
.cid-tTkjGWpty0 .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-tTkjGWpty0 a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-tTkjGWpty0 .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-tTkjGWpty0 .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-tTkjGWpty0 .mbr-subscribe .input-group-btn button,
.cid-tTkjGWpty0 .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-tTkjGWpty0 .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tTkjGWpty0 input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-tTkjGWpty0 .input-group-btn {
    width: 100%;
  }
  .cid-tTkjGWpty0 .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-tTkjGWpty0 .mbr-form {
    margin-bottom: 0;
  }
  .cid-tTkjGWpty0 .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-tTkjGWpty0 .input-group-btn a.btn {
    width: 100%;
  }
  .cid-tTkjGWpty0 .input-group-btn {
    width: calc(92%);
  }
  .cid-tTkjGWpty0 .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-tTkjGWpty0 .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-tTkjGWpty0 .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-tTkjGWpty0 .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-tTkjGWpty0 .input-group-btn button,
  .cid-tTkjGWpty0 .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-tTkjGWpty0 .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-tTkjGWpty0 .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tTkjGWpty0 .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-tTkjGWpty0 .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-tTkjGWpty0 .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-tTkjGWpty0 .mbr-section-subtitle,
.cid-tTkjGWpty0 .mbr-section-btn {
  text-align: center;
}
.cid-tTmNpqWhFU {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTmNpqWhFU .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-tTmNpqWhFU .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTmNpqWhFU .card-img img {
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tTmNpqWhFU .section-text,
.cid-tTmNpqWhFU .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-tTmNpqWhFU .section-text,
  .cid-tTmNpqWhFU .card-text,
  .cid-tTmNpqWhFU .card-title,
  .cid-tTmNpqWhFU .mbr-section-title {
    text-align: center;
  }
}
.cid-tTmNoAtyXa {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #549fe2;
}
.cid-tTmNoAtyXa .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-tTmNoAtyXa .mbr-section-title {
  margin: 0;
}
.cid-tTmNoAtyXa .card-img {
  text-align: center;
}
.cid-tTmNoAtyXa .mbr-section-subtitle,
.cid-tTmNoAtyXa .mbr-text {
  color: #8d97ad;
}
.cid-tTmNoAtyXa .row-item {
  border-radius: .25rem;
  background: #ffffff;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 767px) {
  .cid-tTmNoAtyXa .card-img,
  .cid-tTmNoAtyXa .mbr-text,
  .cid-tTmNoAtyXa .mbr-card-title,
  .cid-tTmNoAtyXa .mbr-section-subtitle,
  .cid-tTmNoAtyXa .mbr-section-title,
  .cid-tTmNoAtyXa .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tTmNoAtyXa .row-item {
    margin-bottom: 2rem;
  }
}
.cid-tTmNoAtyXa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTmNoAtyXa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTmNoAtyXa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tTmNoAtyXa .mbr-text {
  color: #000000;
}
.cid-tTmNmgQFvM {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tTmNmgQFvM .mbr-section-title {
  margin: 0;
}
.cid-tTmNmgQFvM .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-tTmNmgQFvM .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-tTmNmgQFvM .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tTmNmgQFvM .card1 {
  background: linear-gradient(45deg, #2bdc9d, #1dc9cb);
}
.cid-tTmNmgQFvM .card2 {
  background: linear-gradient(45deg, #188ef4, #306de8);
}
.cid-tTmNmgQFvM .card3 {
  background: linear-gradient(45deg, #ff4f7b, #ff695c);
}
.cid-tTmNmgQFvM .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-tTmNmgQFvM .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-tTmNmgQFvM .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-tTmNmgQFvM .mbr-section-btn {
  padding-top: 1rem;
}
.cid-tW4whY5YLM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #549fe2;
}
@media (max-width: 767px) {
  .cid-tW4whY5YLM .content {
    text-align: center;
  }
  .cid-tW4whY5YLM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tW4whY5YLM .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tW4whY5YLM .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tW4whY5YLM .media-wrap img {
  height: 6rem;
}
.cid-tW4whY5YLM .mbr-text {
  color: #8d97ad;
}
.cid-tW4whY5YLM .p-title {
  font-size: 17px;
  color: #000000;
}
.cid-tW4whY5YLM .p-title span {
  color: #111111;
}
.cid-tW4whY5YLM .title-card {
  font-size: 1.3rem;
}
.cid-tW4whY5YLM .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tW4whY5YLM .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tW4whY5YLM .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tW4whY5YLM .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tW4whY5YLM .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tW4whY5YLM .copyright {
  display: flex;
  align-items: center;
}
.cid-tW4whY5YLM .copyright img {
  margin-right: 10px;
}
.cid-tW4whY5YLM .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #52e5e5;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tW4whY5YLM .icon-transition span:hover {
  background-color: #1dc9cb;
}
@media (max-width: 767px) {
  .cid-tW4whY5YLM .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tW4whY5YLM .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tW4whY5YLM .footer-menu {
    justify-content: center;
  }
}
.cid-tTkjMr3GXV .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-tTkjMr3GXV .nav-item,
.cid-tTkjMr3GXV .nav-link,
.cid-tTkjMr3GXV .navbar-caption {
  font-weight: normal;
}
.cid-tTkjMr3GXV .nav-item:focus,
.cid-tTkjMr3GXV .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTkjMr3GXV .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tTkjMr3GXV .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-tTkjMr3GXV .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tTkjMr3GXV .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tTkjMr3GXV .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tTkjMr3GXV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tTkjMr3GXV .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-tTkjMr3GXV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTkjMr3GXV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTkjMr3GXV .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #549fe2;
  background: none;
}
.cid-tTkjMr3GXV .navbar.opened {
  transition: all .3s;
  background: #549fe2 !important;
}
.cid-tTkjMr3GXV .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tTkjMr3GXV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTkjMr3GXV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTkjMr3GXV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTkjMr3GXV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tTkjMr3GXV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tTkjMr3GXV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTkjMr3GXV .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-tTkjMr3GXV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTkjMr3GXV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTkjMr3GXV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTkjMr3GXV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTkjMr3GXV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTkjMr3GXV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tTkjMr3GXV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTkjMr3GXV .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-tTkjMr3GXV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tTkjMr3GXV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTkjMr3GXV .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tTkjMr3GXV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tTkjMr3GXV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTkjMr3GXV .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTkjMr3GXV .navbar.navbar-short {
  background: #549fe2 !important;
  min-height: 60px;
}
.cid-tTkjMr3GXV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tTkjMr3GXV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tTkjMr3GXV .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-tTkjMr3GXV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTkjMr3GXV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTkjMr3GXV .dropdown-item.active,
.cid-tTkjMr3GXV .dropdown-item:active {
  background-color: transparent;
}
.cid-tTkjMr3GXV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTkjMr3GXV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTkjMr3GXV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549fe2;
}
.cid-tTkjMr3GXV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTkjMr3GXV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTkjMr3GXV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTkjMr3GXV .navbar-buttons {
  text-align: center;
}
.cid-tTkjMr3GXV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTkjMr3GXV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTkjMr3GXV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTkjMr3GXV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkjMr3GXV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkjMr3GXV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTkjMr3GXV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkjMr3GXV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTkjMr3GXV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTkjMr3GXV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkjMr3GXV .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tTkjMr3GXV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tTkjMr3GXV .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tTkjMr3GXV .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tTkjMr3GXV .soc-item {
  margin: .5rem .3rem;
}
.cid-tTkjMr3GXV .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-tTkjMr3GXV .navbar {
    height: 77px;
  }
  .cid-tTkjMr3GXV .navbar.opened {
    height: auto;
  }
  .cid-tTkjMr3GXV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTkjMrEqVp {
  padding-top: 75px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
}
.cid-tTkjMrEqVp .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-tTkjMrEqVp .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkjMrEqVp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkjMrEqVp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkjMrEqVp H1 {
  color: #000000;
}
.cid-tTkjMrYI5v {
  background-image: url("../../../assets/images/mbr-1920x1282.jpg");
}
.cid-tTkjMrYI5v .mbr-overlay {
  background: #444444;
}
.cid-tTkjMrYI5v .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkjMrYI5v .mbr-section-subtitle,
.cid-tTkjMrYI5v mbr-section-btn {
  color: #000000;
}
.cid-tTkjMrYI5v B {
  color: #333333;
}
.cid-tTkjMrYI5v H1 {
  color: #549fe2;
}
.cid-tTmZahV5T5 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTmZahV5T5 .mbr-section-subtitle {
  color: #000000;
}
.cid-tTmZahV5T5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTmZahV5T5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTmZahV5T5 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTn2iWo9C5 {
  background-color: #ffffff;
}
.cid-tTn2iWo9C5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTn2iWo9C5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTn2iWo9C5 img {
  width: 100%;
  height: 100%;
  margin-bottom: 2rem;
  object-fit: cover;
  border: 2px dashed #2bdc9d;
  border-radius: 8px;
}
.cid-tTn2iWo9C5 .img-wide {
  height: 50%;
}
.cid-tTn2iWo9C5 .img-big {
  height: 100%;
}
.cid-tTmZf2APFR {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTmZf2APFR .mbr-text {
  color: #000000;
}
.cid-tTmZf2APFR .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTmZf2APFR .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTmZf2APFR .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-tTn2dgBxtE {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTn2dgBxtE .mbr-section-subtitle {
  color: #000000;
}
.cid-tTn2dgBxtE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTn2dgBxtE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTn2dgBxtE .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTmZ1tOIZn {
  background-color: #ffffff;
}
.cid-tTmZ1tOIZn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTmZ1tOIZn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTmZ1tOIZn img {
  width: 100%;
  height: 100%;
  margin-bottom: 2rem;
  object-fit: cover;
  border: 2px dashed #2bdc9d;
  border-radius: 8px;
}
.cid-tTmZ1tOIZn .img-wide {
  height: 50%;
}
.cid-tTmZ1tOIZn .img-big {
  height: 100%;
}
.cid-tTn468Ix6Q {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTn468Ix6Q .mbr-text {
  color: #000000;
}
.cid-tTn468Ix6Q .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTn468Ix6Q .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTn468Ix6Q .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-tTn5zP6tgY {
  background-color: #ffffff;
}
.cid-tTn5zP6tgY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTn5zP6tgY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTn5zP6tgY img {
  width: 100%;
  height: 100%;
  margin-bottom: 2rem;
  object-fit: cover;
  border: 2px dashed #2bdc9d;
  border-radius: 8px;
}
.cid-tTn5zP6tgY .img-wide {
  height: 50%;
}
.cid-tTn5zP6tgY .img-big {
  height: 100%;
}
.cid-tTn4SwBdGs {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tTn4SwBdGs .mbr-section-subtitle {
  color: #000000;
}
.cid-tTn4SwBdGs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTn4SwBdGs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkjMtfjNo {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  overflow: hidden !important;
}
.cid-tTkjMtfjNo .mbr-section-subtitle {
  font-weight: 400;
}
.cid-tTkjMtfjNo .mbr-section-title {
  padding-bottom: 2rem;
  text-align: center;
}
.cid-tTkjMtfjNo .img-block {
  align-self: center;
}
.cid-tTkjMtfjNo .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTkjMtfjNo .mbr-form {
  margin-bottom: 3rem;
}
.cid-tTkjMtfjNo .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-tTkjMtfjNo a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-tTkjMtfjNo .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-tTkjMtfjNo .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-tTkjMtfjNo .mbr-subscribe .input-group-btn button,
.cid-tTkjMtfjNo .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-tTkjMtfjNo .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tTkjMtfjNo input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-tTkjMtfjNo .input-group-btn {
    width: 100%;
  }
  .cid-tTkjMtfjNo .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-tTkjMtfjNo .mbr-form {
    margin-bottom: 0;
  }
  .cid-tTkjMtfjNo .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-tTkjMtfjNo .input-group-btn a.btn {
    width: 100%;
  }
  .cid-tTkjMtfjNo .input-group-btn {
    width: calc(92%);
  }
  .cid-tTkjMtfjNo .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-tTkjMtfjNo .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-tTkjMtfjNo .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-tTkjMtfjNo .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-tTkjMtfjNo .input-group-btn button,
  .cid-tTkjMtfjNo .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-tTkjMtfjNo .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-tTkjMtfjNo .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tTkjMtfjNo .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-tTkjMtfjNo .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-tTkjMtfjNo .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-tTkjMtfjNo .mbr-section-subtitle,
.cid-tTkjMtfjNo .mbr-section-btn {
  text-align: center;
}
.cid-tW4wlgpDDx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #549fe2;
}
@media (max-width: 767px) {
  .cid-tW4wlgpDDx .content {
    text-align: center;
  }
  .cid-tW4wlgpDDx .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tW4wlgpDDx .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tW4wlgpDDx .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tW4wlgpDDx .media-wrap img {
  height: 6rem;
}
.cid-tW4wlgpDDx .mbr-text {
  color: #8d97ad;
}
.cid-tW4wlgpDDx .p-title {
  font-size: 17px;
  color: #000000;
}
.cid-tW4wlgpDDx .p-title span {
  color: #111111;
}
.cid-tW4wlgpDDx .title-card {
  font-size: 1.3rem;
}
.cid-tW4wlgpDDx .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tW4wlgpDDx .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tW4wlgpDDx .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tW4wlgpDDx .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tW4wlgpDDx .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tW4wlgpDDx .copyright {
  display: flex;
  align-items: center;
}
.cid-tW4wlgpDDx .copyright img {
  margin-right: 10px;
}
.cid-tW4wlgpDDx .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #52e5e5;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tW4wlgpDDx .icon-transition span:hover {
  background-color: #1dc9cb;
}
@media (max-width: 767px) {
  .cid-tW4wlgpDDx .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tW4wlgpDDx .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tW4wlgpDDx .footer-menu {
    justify-content: center;
  }
}
.cid-tTkjRr8fx2 .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-tTkjRr8fx2 .nav-item,
.cid-tTkjRr8fx2 .nav-link,
.cid-tTkjRr8fx2 .navbar-caption {
  font-weight: normal;
}
.cid-tTkjRr8fx2 .nav-item:focus,
.cid-tTkjRr8fx2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTkjRr8fx2 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tTkjRr8fx2 .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-tTkjRr8fx2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tTkjRr8fx2 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tTkjRr8fx2 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tTkjRr8fx2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tTkjRr8fx2 .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-tTkjRr8fx2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTkjRr8fx2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTkjRr8fx2 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #549fe2;
  background: none;
}
.cid-tTkjRr8fx2 .navbar.opened {
  transition: all .3s;
  background: #549fe2 !important;
}
.cid-tTkjRr8fx2 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tTkjRr8fx2 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTkjRr8fx2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTkjRr8fx2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTkjRr8fx2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tTkjRr8fx2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tTkjRr8fx2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTkjRr8fx2 .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-tTkjRr8fx2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTkjRr8fx2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTkjRr8fx2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTkjRr8fx2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTkjRr8fx2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTkjRr8fx2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tTkjRr8fx2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTkjRr8fx2 .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-tTkjRr8fx2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tTkjRr8fx2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTkjRr8fx2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tTkjRr8fx2 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tTkjRr8fx2 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTkjRr8fx2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTkjRr8fx2 .navbar.navbar-short {
  background: #549fe2 !important;
  min-height: 60px;
}
.cid-tTkjRr8fx2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tTkjRr8fx2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tTkjRr8fx2 .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-tTkjRr8fx2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTkjRr8fx2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTkjRr8fx2 .dropdown-item.active,
.cid-tTkjRr8fx2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tTkjRr8fx2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTkjRr8fx2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTkjRr8fx2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549fe2;
}
.cid-tTkjRr8fx2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTkjRr8fx2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTkjRr8fx2 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTkjRr8fx2 .navbar-buttons {
  text-align: center;
}
.cid-tTkjRr8fx2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTkjRr8fx2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTkjRr8fx2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTkjRr8fx2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkjRr8fx2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkjRr8fx2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTkjRr8fx2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkjRr8fx2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTkjRr8fx2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTkjRr8fx2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkjRr8fx2 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tTkjRr8fx2 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tTkjRr8fx2 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tTkjRr8fx2 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tTkjRr8fx2 .soc-item {
  margin: .5rem .3rem;
}
.cid-tTkjRr8fx2 .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-tTkjRr8fx2 .navbar {
    height: 77px;
  }
  .cid-tTkjRr8fx2 .navbar.opened {
    height: auto;
  }
  .cid-tTkjRr8fx2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTkjRrHFTL {
  padding-top: 75px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
}
.cid-tTkjRrHFTL .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-tTkjRrHFTL .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkjRrHFTL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkjRrHFTL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkjRrHFTL H1 {
  color: #000000;
}
.cid-tTp1yz5Zb3 {
  background-image: url("../../../assets/images/mbr-1920x1282.jpeg");
}
.cid-tTp1yz5Zb3 .mbr-overlay {
  background: #444444;
}
.cid-tTp1yz5Zb3 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTp1yz5Zb3 .mbr-section-subtitle,
.cid-tTp1yz5Zb3 mbr-section-btn {
  color: #000000;
}
.cid-tTp1yz5Zb3 B {
  color: #333333;
}
.cid-tTp1yz5Zb3 H1 {
  color: #549fe2;
}
.cid-tTkjRs1wcn {
  background-image: url("../../../assets/images/mbr-2-1920x1012.jpeg");
}
.cid-tTkjRs1wcn .mbr-overlay {
  background: #444444;
}
.cid-tTkjRs1wcn .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkjRs1wcn .mbr-section-subtitle,
.cid-tTkjRs1wcn mbr-section-btn {
  color: #000000;
}
.cid-tTkjRs1wcn B {
  color: #333333;
}
.cid-tTkjRs1wcn H1 {
  color: #ffffff;
}
.cid-tTp2KyMZG4 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTp2KyMZG4 .mbr-section-subtitle {
  color: #000000;
}
.cid-tTp2KyMZG4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTp2KyMZG4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTp2KyMZG4 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tToZ62yJUi {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #549fe2;
}
.cid-tToZ62yJUi .container-fluid {
  padding: 0 5rem;
}
.cid-tToZ62yJUi .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tToZ62yJUi .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-tToZ62yJUi .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-tToZ62yJUi .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tToZ62yJUi .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tToZ62yJUi .container-fluid {
    padding: 0 1rem;
  }
  .cid-tToZ62yJUi .mbr-figure {
    margin-top: 1rem;
  }
  .cid-tToZ62yJUi .mbr-section-title {
    text-align: center !important;
  }
  .cid-tToZ62yJUi .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-tToZ62yJUi .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tToZ62yJUi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tToZ62yJUi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTp3KmAQKY {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #549fe2;
}
.cid-tTp3KmAQKY .container-fluid {
  padding: 0 5rem;
}
.cid-tTp3KmAQKY .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTp3KmAQKY .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-tTp3KmAQKY .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-tTp3KmAQKY .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tTp3KmAQKY .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tTp3KmAQKY .container-fluid {
    padding: 0 1rem;
  }
  .cid-tTp3KmAQKY .mbr-figure {
    margin-top: 1rem;
  }
  .cid-tTp3KmAQKY .mbr-section-title {
    text-align: center !important;
  }
  .cid-tTp3KmAQKY .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-tTp3KmAQKY .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tTp3KmAQKY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTp3KmAQKY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTp3KRQ0wC {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #549fe2;
}
.cid-tTp3KRQ0wC .container-fluid {
  padding: 0 5rem;
}
.cid-tTp3KRQ0wC .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTp3KRQ0wC .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-tTp3KRQ0wC .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-tTp3KRQ0wC .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tTp3KRQ0wC .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tTp3KRQ0wC .container-fluid {
    padding: 0 1rem;
  }
  .cid-tTp3KRQ0wC .mbr-figure {
    margin-top: 1rem;
  }
  .cid-tTp3KRQ0wC .mbr-section-title {
    text-align: center !important;
  }
  .cid-tTp3KRQ0wC .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-tTp3KRQ0wC .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tTp3KRQ0wC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTp3KRQ0wC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTp3Ll9aS3 {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #549fe2;
}
.cid-tTp3Ll9aS3 .container-fluid {
  padding: 0 5rem;
}
.cid-tTp3Ll9aS3 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTp3Ll9aS3 .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-tTp3Ll9aS3 .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-tTp3Ll9aS3 .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tTp3Ll9aS3 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tTp3Ll9aS3 .container-fluid {
    padding: 0 1rem;
  }
  .cid-tTp3Ll9aS3 .mbr-figure {
    margin-top: 1rem;
  }
  .cid-tTp3Ll9aS3 .mbr-section-title {
    text-align: center !important;
  }
  .cid-tTp3Ll9aS3 .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-tTp3Ll9aS3 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tTp3Ll9aS3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTp3Ll9aS3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTp3LNSsGo {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #549fe2;
}
.cid-tTp3LNSsGo .container-fluid {
  padding: 0 5rem;
}
.cid-tTp3LNSsGo .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTp3LNSsGo .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-tTp3LNSsGo .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-tTp3LNSsGo .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tTp3LNSsGo .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tTp3LNSsGo .container-fluid {
    padding: 0 1rem;
  }
  .cid-tTp3LNSsGo .mbr-figure {
    margin-top: 1rem;
  }
  .cid-tTp3LNSsGo .mbr-section-title {
    text-align: center !important;
  }
  .cid-tTp3LNSsGo .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-tTp3LNSsGo .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tTp3LNSsGo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTp3LNSsGo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTp3MeklF0 {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #549fe2;
}
.cid-tTp3MeklF0 .container-fluid {
  padding: 0 5rem;
}
.cid-tTp3MeklF0 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTp3MeklF0 .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-tTp3MeklF0 .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-tTp3MeklF0 .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tTp3MeklF0 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tTp3MeklF0 .container-fluid {
    padding: 0 1rem;
  }
  .cid-tTp3MeklF0 .mbr-figure {
    margin-top: 1rem;
  }
  .cid-tTp3MeklF0 .mbr-section-title {
    text-align: center !important;
  }
  .cid-tTp3MeklF0 .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-tTp3MeklF0 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tTp3MeklF0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTp3MeklF0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTp3MF6oek {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #549fe2;
}
.cid-tTp3MF6oek .container-fluid {
  padding: 0 5rem;
}
.cid-tTp3MF6oek .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTp3MF6oek .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-tTp3MF6oek .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-tTp3MF6oek .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tTp3MF6oek .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tTp3MF6oek .container-fluid {
    padding: 0 1rem;
  }
  .cid-tTp3MF6oek .mbr-figure {
    margin-top: 1rem;
  }
  .cid-tTp3MF6oek .mbr-section-title {
    text-align: center !important;
  }
  .cid-tTp3MF6oek .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-tTp3MF6oek .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tTp3MF6oek .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTp3MF6oek .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTp3N7gj5b {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #549fe2;
}
.cid-tTp3N7gj5b .container-fluid {
  padding: 0 5rem;
}
.cid-tTp3N7gj5b .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTp3N7gj5b .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-tTp3N7gj5b .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-tTp3N7gj5b .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tTp3N7gj5b .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tTp3N7gj5b .container-fluid {
    padding: 0 1rem;
  }
  .cid-tTp3N7gj5b .mbr-figure {
    margin-top: 1rem;
  }
  .cid-tTp3N7gj5b .mbr-section-title {
    text-align: center !important;
  }
  .cid-tTp3N7gj5b .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-tTp3N7gj5b .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tTp3N7gj5b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTp3N7gj5b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTp3NAqdG7 {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #549fe2;
}
.cid-tTp3NAqdG7 .container-fluid {
  padding: 0 5rem;
}
.cid-tTp3NAqdG7 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTp3NAqdG7 .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-tTp3NAqdG7 .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-tTp3NAqdG7 .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tTp3NAqdG7 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tTp3NAqdG7 .container-fluid {
    padding: 0 1rem;
  }
  .cid-tTp3NAqdG7 .mbr-figure {
    margin-top: 1rem;
  }
  .cid-tTp3NAqdG7 .mbr-section-title {
    text-align: center !important;
  }
  .cid-tTp3NAqdG7 .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-tTp3NAqdG7 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tTp3NAqdG7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTp3NAqdG7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTp3O5dnBj {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #549fe2;
}
.cid-tTp3O5dnBj .container-fluid {
  padding: 0 5rem;
}
.cid-tTp3O5dnBj .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTp3O5dnBj .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-tTp3O5dnBj .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-tTp3O5dnBj .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tTp3O5dnBj .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tTp3O5dnBj .container-fluid {
    padding: 0 1rem;
  }
  .cid-tTp3O5dnBj .mbr-figure {
    margin-top: 1rem;
  }
  .cid-tTp3O5dnBj .mbr-section-title {
    text-align: center !important;
  }
  .cid-tTp3O5dnBj .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-tTp3O5dnBj .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tTp3O5dnBj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTp3O5dnBj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkjRt3K1d {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTkjRt3K1d .mbr-text {
  color: #000000;
}
.cid-tTp9x4WBLV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTp9x4WBLV .mbr-text {
  color: #000000;
}
.cid-tTp9x4WBLV .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTp9x4WBLV .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTp9x4WBLV .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-tTpkdTtRqk {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tTpkdTtRqk .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpkdTtRqk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpkdTtRqk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkjRtg723 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  overflow: hidden !important;
}
.cid-tTkjRtg723 .mbr-section-subtitle {
  font-weight: 400;
}
.cid-tTkjRtg723 .mbr-section-title {
  padding-bottom: 2rem;
  text-align: center;
}
.cid-tTkjRtg723 .img-block {
  align-self: center;
}
.cid-tTkjRtg723 .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTkjRtg723 .mbr-form {
  margin-bottom: 3rem;
}
.cid-tTkjRtg723 .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-tTkjRtg723 a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-tTkjRtg723 .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-tTkjRtg723 .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-tTkjRtg723 .mbr-subscribe .input-group-btn button,
.cid-tTkjRtg723 .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-tTkjRtg723 .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tTkjRtg723 input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-tTkjRtg723 .input-group-btn {
    width: 100%;
  }
  .cid-tTkjRtg723 .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-tTkjRtg723 .mbr-form {
    margin-bottom: 0;
  }
  .cid-tTkjRtg723 .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-tTkjRtg723 .input-group-btn a.btn {
    width: 100%;
  }
  .cid-tTkjRtg723 .input-group-btn {
    width: calc(92%);
  }
  .cid-tTkjRtg723 .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-tTkjRtg723 .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-tTkjRtg723 .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-tTkjRtg723 .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-tTkjRtg723 .input-group-btn button,
  .cid-tTkjRtg723 .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-tTkjRtg723 .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-tTkjRtg723 .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tTkjRtg723 .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-tTkjRtg723 .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-tTkjRtg723 .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-tTkjRtg723 .mbr-section-subtitle,
.cid-tTkjRtg723 .mbr-section-btn {
  text-align: center;
}
.cid-tW4wo7oQCS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #549fe2;
}
@media (max-width: 767px) {
  .cid-tW4wo7oQCS .content {
    text-align: center;
  }
  .cid-tW4wo7oQCS .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tW4wo7oQCS .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tW4wo7oQCS .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tW4wo7oQCS .media-wrap img {
  height: 6rem;
}
.cid-tW4wo7oQCS .mbr-text {
  color: #8d97ad;
}
.cid-tW4wo7oQCS .p-title {
  font-size: 17px;
  color: #000000;
}
.cid-tW4wo7oQCS .p-title span {
  color: #111111;
}
.cid-tW4wo7oQCS .title-card {
  font-size: 1.3rem;
}
.cid-tW4wo7oQCS .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tW4wo7oQCS .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tW4wo7oQCS .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tW4wo7oQCS .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tW4wo7oQCS .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tW4wo7oQCS .copyright {
  display: flex;
  align-items: center;
}
.cid-tW4wo7oQCS .copyright img {
  margin-right: 10px;
}
.cid-tW4wo7oQCS .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #52e5e5;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tW4wo7oQCS .icon-transition span:hover {
  background-color: #1dc9cb;
}
@media (max-width: 767px) {
  .cid-tW4wo7oQCS .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tW4wo7oQCS .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tW4wo7oQCS .footer-menu {
    justify-content: center;
  }
}
.cid-tTkk0sGYqD .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-tTkk0sGYqD .nav-item,
.cid-tTkk0sGYqD .nav-link,
.cid-tTkk0sGYqD .navbar-caption {
  font-weight: normal;
}
.cid-tTkk0sGYqD .nav-item:focus,
.cid-tTkk0sGYqD .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTkk0sGYqD .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tTkk0sGYqD .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-tTkk0sGYqD .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tTkk0sGYqD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tTkk0sGYqD .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tTkk0sGYqD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tTkk0sGYqD .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-tTkk0sGYqD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTkk0sGYqD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTkk0sGYqD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #549fe2;
  background: none;
}
.cid-tTkk0sGYqD .navbar.opened {
  transition: all .3s;
  background: #549fe2 !important;
}
.cid-tTkk0sGYqD .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tTkk0sGYqD .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTkk0sGYqD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTkk0sGYqD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTkk0sGYqD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tTkk0sGYqD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tTkk0sGYqD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTkk0sGYqD .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-tTkk0sGYqD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTkk0sGYqD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTkk0sGYqD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTkk0sGYqD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTkk0sGYqD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTkk0sGYqD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tTkk0sGYqD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTkk0sGYqD .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-tTkk0sGYqD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tTkk0sGYqD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTkk0sGYqD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tTkk0sGYqD .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tTkk0sGYqD .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTkk0sGYqD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTkk0sGYqD .navbar.navbar-short {
  background: #549fe2 !important;
  min-height: 60px;
}
.cid-tTkk0sGYqD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tTkk0sGYqD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tTkk0sGYqD .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-tTkk0sGYqD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTkk0sGYqD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTkk0sGYqD .dropdown-item.active,
.cid-tTkk0sGYqD .dropdown-item:active {
  background-color: transparent;
}
.cid-tTkk0sGYqD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTkk0sGYqD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTkk0sGYqD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549fe2;
}
.cid-tTkk0sGYqD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTkk0sGYqD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTkk0sGYqD ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTkk0sGYqD .navbar-buttons {
  text-align: center;
}
.cid-tTkk0sGYqD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTkk0sGYqD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTkk0sGYqD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTkk0sGYqD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkk0sGYqD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkk0sGYqD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTkk0sGYqD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkk0sGYqD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTkk0sGYqD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTkk0sGYqD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkk0sGYqD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tTkk0sGYqD a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tTkk0sGYqD .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tTkk0sGYqD .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tTkk0sGYqD .soc-item {
  margin: .5rem .3rem;
}
.cid-tTkk0sGYqD .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-tTkk0sGYqD .navbar {
    height: 77px;
  }
  .cid-tTkk0sGYqD .navbar.opened {
    height: auto;
  }
  .cid-tTkk0sGYqD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTkk0ta8Z4 {
  padding-top: 75px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
}
.cid-tTkk0ta8Z4 .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-tTkk0ta8Z4 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkk0ta8Z4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkk0ta8Z4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkk0ta8Z4 H1 {
  color: #000000;
}
.cid-tTkk0tqVGl {
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(90deg, #549fe2, #549fe2);
}
.cid-tTkk0tqVGl .mbr-overlay {
  background: #444444;
}
.cid-tTkk0tqVGl .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkk0tqVGl .mbr-section-subtitle,
.cid-tTkk0tqVGl mbr-section-btn {
  color: #f4f8fa;
}
.cid-tTkk0tqVGl B {
  color: #333333;
}
.cid-tTkk0tqVGl H1 {
  color: #ffffff;
}
.cid-tTpytw3VRX {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpytw3VRX .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpytw3VRX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpytw3VRX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpytw3VRX .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpyuoQHgl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpyuoQHgl .mbr-text {
  color: #000000;
}
.cid-tTpyuoQHgl .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpyuoQHgl .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpyuoQHgl .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpyQY2I5A {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpyQY2I5A .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpyQY2I5A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpyQY2I5A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpyQY2I5A .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpyOQsUqJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpyOQsUqJ .mbr-text {
  color: #000000;
}
.cid-tTpyOQsUqJ .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpyOQsUqJ .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpyOQsUqJ .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpyRq0bgF {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpyRq0bgF .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpyRq0bgF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpyRq0bgF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpyRq0bgF .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpyPBcxbT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpyPBcxbT .mbr-text {
  color: #000000;
}
.cid-tTpyPBcxbT .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpyPBcxbT .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpyPBcxbT .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpyRVAU4V {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpyRVAU4V .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpyRVAU4V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpyRVAU4V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpyRVAU4V .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpyQfs1Yy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpyQfs1Yy .mbr-text {
  color: #000000;
}
.cid-tTpyQfs1Yy .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpyQfs1Yy .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpyQfs1Yy .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpzvOs6vX {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpzvOs6vX .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpzvOs6vX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpzvOs6vX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpzvOs6vX .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpzyOzYDO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpzyOzYDO .mbr-text {
  color: #000000;
}
.cid-tTpzyOzYDO .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpzyOzYDO .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpzyOzYDO .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpzxtAsxz {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpzxtAsxz .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpzxtAsxz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpzxtAsxz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpzxtAsxz .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpzy9l6kb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpzy9l6kb .mbr-text {
  color: #000000;
}
.cid-tTpzy9l6kb .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpzy9l6kb .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpzy9l6kb .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpzwXsxJd {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpzwXsxJd .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpzwXsxJd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpzwXsxJd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpzwXsxJd .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpzzr45bb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpzzr45bb .mbr-text {
  color: #000000;
}
.cid-tTpzzr45bb .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpzzr45bb .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpzzr45bb .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpzwvtHmp {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpzwvtHmp .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpzwvtHmp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpzwvtHmp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpzwvtHmp .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpzA075uq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpzA075uq .mbr-text {
  color: #000000;
}
.cid-tTpzA075uq .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpzA075uq .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpzA075uq .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpAo8579L {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpAo8579L .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpAo8579L .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpAo8579L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpAo8579L .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpAoOB1Ks {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpAoOB1Ks .mbr-text {
  color: #000000;
}
.cid-tTpAoOB1Ks .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpAoOB1Ks .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpAoOB1Ks .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTkk0uv9zQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  overflow: hidden !important;
}
.cid-tTkk0uv9zQ .mbr-section-subtitle {
  font-weight: 400;
}
.cid-tTkk0uv9zQ .mbr-section-title {
  padding-bottom: 2rem;
  text-align: center;
}
.cid-tTkk0uv9zQ .img-block {
  align-self: center;
}
.cid-tTkk0uv9zQ .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTkk0uv9zQ .mbr-form {
  margin-bottom: 3rem;
}
.cid-tTkk0uv9zQ .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-tTkk0uv9zQ a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-tTkk0uv9zQ .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-tTkk0uv9zQ .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-tTkk0uv9zQ .mbr-subscribe .input-group-btn button,
.cid-tTkk0uv9zQ .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-tTkk0uv9zQ .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tTkk0uv9zQ input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-tTkk0uv9zQ .input-group-btn {
    width: 100%;
  }
  .cid-tTkk0uv9zQ .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-tTkk0uv9zQ .mbr-form {
    margin-bottom: 0;
  }
  .cid-tTkk0uv9zQ .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-tTkk0uv9zQ .input-group-btn a.btn {
    width: 100%;
  }
  .cid-tTkk0uv9zQ .input-group-btn {
    width: calc(92%);
  }
  .cid-tTkk0uv9zQ .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-tTkk0uv9zQ .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-tTkk0uv9zQ .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-tTkk0uv9zQ .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-tTkk0uv9zQ .input-group-btn button,
  .cid-tTkk0uv9zQ .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-tTkk0uv9zQ .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-tTkk0uv9zQ .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tTkk0uv9zQ .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-tTkk0uv9zQ .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-tTkk0uv9zQ .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-tTkk0uv9zQ .mbr-section-subtitle,
.cid-tTkk0uv9zQ .mbr-section-btn {
  text-align: center;
}
.cid-tW4wFZnqcP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #549fe2;
}
@media (max-width: 767px) {
  .cid-tW4wFZnqcP .content {
    text-align: center;
  }
  .cid-tW4wFZnqcP .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tW4wFZnqcP .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tW4wFZnqcP .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tW4wFZnqcP .media-wrap img {
  height: 6rem;
}
.cid-tW4wFZnqcP .mbr-text {
  color: #8d97ad;
}
.cid-tW4wFZnqcP .p-title {
  font-size: 17px;
  color: #000000;
}
.cid-tW4wFZnqcP .p-title span {
  color: #111111;
}
.cid-tW4wFZnqcP .title-card {
  font-size: 1.3rem;
}
.cid-tW4wFZnqcP .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tW4wFZnqcP .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tW4wFZnqcP .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tW4wFZnqcP .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tW4wFZnqcP .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tW4wFZnqcP .copyright {
  display: flex;
  align-items: center;
}
.cid-tW4wFZnqcP .copyright img {
  margin-right: 10px;
}
.cid-tW4wFZnqcP .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #52e5e5;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tW4wFZnqcP .icon-transition span:hover {
  background-color: #1dc9cb;
}
@media (max-width: 767px) {
  .cid-tW4wFZnqcP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tW4wFZnqcP .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tW4wFZnqcP .footer-menu {
    justify-content: center;
  }
}
.cid-tTkk7AI2tm .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-tTkk7AI2tm .nav-item,
.cid-tTkk7AI2tm .nav-link,
.cid-tTkk7AI2tm .navbar-caption {
  font-weight: normal;
}
.cid-tTkk7AI2tm .nav-item:focus,
.cid-tTkk7AI2tm .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTkk7AI2tm .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tTkk7AI2tm .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-tTkk7AI2tm .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tTkk7AI2tm .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tTkk7AI2tm .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tTkk7AI2tm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tTkk7AI2tm .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-tTkk7AI2tm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTkk7AI2tm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTkk7AI2tm .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #549fe2;
  background: none;
}
.cid-tTkk7AI2tm .navbar.opened {
  transition: all .3s;
  background: #549fe2 !important;
}
.cid-tTkk7AI2tm .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tTkk7AI2tm .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTkk7AI2tm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTkk7AI2tm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTkk7AI2tm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tTkk7AI2tm .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tTkk7AI2tm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTkk7AI2tm .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-tTkk7AI2tm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTkk7AI2tm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTkk7AI2tm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTkk7AI2tm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTkk7AI2tm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTkk7AI2tm .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tTkk7AI2tm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTkk7AI2tm .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-tTkk7AI2tm .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tTkk7AI2tm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTkk7AI2tm .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tTkk7AI2tm .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tTkk7AI2tm .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTkk7AI2tm .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTkk7AI2tm .navbar.navbar-short {
  background: #549fe2 !important;
  min-height: 60px;
}
.cid-tTkk7AI2tm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tTkk7AI2tm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tTkk7AI2tm .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-tTkk7AI2tm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTkk7AI2tm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTkk7AI2tm .dropdown-item.active,
.cid-tTkk7AI2tm .dropdown-item:active {
  background-color: transparent;
}
.cid-tTkk7AI2tm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTkk7AI2tm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTkk7AI2tm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549fe2;
}
.cid-tTkk7AI2tm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTkk7AI2tm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTkk7AI2tm ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTkk7AI2tm .navbar-buttons {
  text-align: center;
}
.cid-tTkk7AI2tm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTkk7AI2tm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTkk7AI2tm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTkk7AI2tm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkk7AI2tm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkk7AI2tm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTkk7AI2tm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkk7AI2tm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTkk7AI2tm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTkk7AI2tm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkk7AI2tm .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tTkk7AI2tm a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tTkk7AI2tm .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tTkk7AI2tm .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tTkk7AI2tm .soc-item {
  margin: .5rem .3rem;
}
.cid-tTkk7AI2tm .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-tTkk7AI2tm .navbar {
    height: 77px;
  }
  .cid-tTkk7AI2tm .navbar.opened {
    height: auto;
  }
  .cid-tTkk7AI2tm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTkk7BfgvU {
  padding-top: 75px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
}
.cid-tTkk7BfgvU .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-tTkk7BfgvU .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkk7BfgvU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkk7BfgvU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkk7BfgvU H1 {
  color: #000000;
}
.cid-tTkk7BzUcY {
  background-image: url("../../../assets/images/mbr-7-1920x1280.jpg");
}
.cid-tTkk7BzUcY .mbr-overlay {
  background: #444444;
}
.cid-tTkk7BzUcY .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkk7BzUcY .mbr-section-subtitle,
.cid-tTkk7BzUcY mbr-section-btn {
  color: #000000;
}
.cid-tTkk7BzUcY B {
  color: #333333;
}
.cid-tTkk7BzUcY H1 {
  color: #549fe2;
}
.cid-tTpBOyVm2z {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpBOyVm2z .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpBOyVm2z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpBOyVm2z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpBOyVm2z .mbr-section-title {
  color: #549fe2;
}
.cid-tTpBbMjyZ7 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpBbMjyZ7 .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpBbMjyZ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpBbMjyZ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpBbMjyZ7 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpBgc826V {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpBgc826V .mbr-text {
  color: #000000;
}
.cid-tTpBgc826V .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpBgc826V .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpBgc826V .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpC2PGToV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpC2PGToV .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpC2PGToV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpC2PGToV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpC2PGToV .mbr-section-title {
  color: #549fe2;
}
.cid-tTpComLXlr {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpComLXlr .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpComLXlr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpComLXlr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpComLXlr .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpBhrocjU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpBhrocjU .mbr-text {
  color: #000000;
}
.cid-tTpBhrocjU .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpBhrocjU .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpBhrocjU .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpC3vlcoG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpC3vlcoG .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpC3vlcoG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpC3vlcoG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpC3vlcoG .mbr-section-title {
  color: #549fe2;
}
.cid-tTpBeZqa37 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpBeZqa37 .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpBeZqa37 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpBeZqa37 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpBeZqa37 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpCp40Ite {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpCp40Ite .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpCp40Ite .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpCp40Ite .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpCp40Ite .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpBi6QMLj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpBi6QMLj .mbr-text {
  color: #000000;
}
.cid-tTpBi6QMLj .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpBi6QMLj .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpBi6QMLj .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpC4PCLTV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpC4PCLTV .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpC4PCLTV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpC4PCLTV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpC4PCLTV .mbr-section-title {
  color: #549fe2;
}
.cid-tTpBfu2EOz {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpBfu2EOz .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpBfu2EOz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpBfu2EOz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpBfu2EOz .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpBiGYjOg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpBiGYjOg .mbr-text {
  color: #000000;
}
.cid-tTpBiGYjOg .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpBiGYjOg .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpBiGYjOg .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpC5wTmav {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpC5wTmav .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpC5wTmav .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpC5wTmav .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpC5wTmav .mbr-section-title {
  color: #549fe2;
}
.cid-tTpBetKDyu {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpBetKDyu .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpBetKDyu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpBetKDyu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpBetKDyu .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpBjjzNfl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpBjjzNfl .mbr-text {
  color: #000000;
}
.cid-tTpBjjzNfl .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpBjjzNfl .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpBjjzNfl .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpC65NueY {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpC65NueY .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpC65NueY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpC65NueY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpC65NueY .mbr-section-title {
  color: #549fe2;
}
.cid-tTpBdzwY03 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpBdzwY03 .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpBdzwY03 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpBdzwY03 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpBdzwY03 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpBk0zo4u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpBk0zo4u .mbr-text {
  color: #000000;
}
.cid-tTpBk0zo4u .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpBk0zo4u .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpBk0zo4u .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpC6zWsgN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpC6zWsgN .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpC6zWsgN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpC6zWsgN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpC6zWsgN .mbr-section-title {
  color: #549fe2;
}
.cid-tTpBcJBavp {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpBcJBavp .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpBcJBavp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpBcJBavp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpBcJBavp .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpBkBp4Qs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpBkBp4Qs .mbr-text {
  color: #000000;
}
.cid-tTpBkBp4Qs .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpBkBp4Qs .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpBkBp4Qs .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpC7aFLoo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpC7aFLoo .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpC7aFLoo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpC7aFLoo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpC7aFLoo .mbr-section-title {
  color: #549fe2;
}
.cid-tTpBbmygVd {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpBbmygVd .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpBbmygVd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpBbmygVd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpBbmygVd .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpBlbQZ8t {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpBlbQZ8t .mbr-text {
  color: #000000;
}
.cid-tTpBlbQZ8t .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpBlbQZ8t .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpBlbQZ8t .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpC7G3XpZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpC7G3XpZ .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpC7G3XpZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpC7G3XpZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpC7G3XpZ .mbr-section-title {
  color: #549fe2;
}
.cid-tTpBawNWpa {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpBawNWpa .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpBawNWpa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpBawNWpa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpBawNWpa .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpBlFjYis {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpBlFjYis .mbr-text {
  color: #000000;
}
.cid-tTpBlFjYis .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpBlFjYis .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpBlFjYis .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTpDUr6qNs {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpDUr6qNs .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpDUr6qNs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpDUr6qNs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpDUr6qNs .mbr-section-title {
  color: #549fe2;
}
.cid-tTpE0mh2es {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTpE0mh2es .mbr-section-subtitle {
  color: #000000;
}
.cid-tTpE0mh2es .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpE0mh2es .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpE0mh2es .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTpE1dSEJC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTpE1dSEJC .mbr-text {
  color: #000000;
}
.cid-tTpE1dSEJC .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tTpE1dSEJC .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tTpE1dSEJC .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff4f7b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tTkk7CFHab {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  overflow: hidden !important;
}
.cid-tTkk7CFHab .mbr-section-subtitle {
  font-weight: 400;
}
.cid-tTkk7CFHab .mbr-section-title {
  padding-bottom: 2rem;
  text-align: center;
}
.cid-tTkk7CFHab .img-block {
  align-self: center;
}
.cid-tTkk7CFHab .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTkk7CFHab .mbr-form {
  margin-bottom: 3rem;
}
.cid-tTkk7CFHab .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-tTkk7CFHab a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-tTkk7CFHab .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-tTkk7CFHab .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-tTkk7CFHab .mbr-subscribe .input-group-btn button,
.cid-tTkk7CFHab .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-tTkk7CFHab .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tTkk7CFHab input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-tTkk7CFHab .input-group-btn {
    width: 100%;
  }
  .cid-tTkk7CFHab .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-tTkk7CFHab .mbr-form {
    margin-bottom: 0;
  }
  .cid-tTkk7CFHab .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-tTkk7CFHab .input-group-btn a.btn {
    width: 100%;
  }
  .cid-tTkk7CFHab .input-group-btn {
    width: calc(92%);
  }
  .cid-tTkk7CFHab .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-tTkk7CFHab .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-tTkk7CFHab .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-tTkk7CFHab .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-tTkk7CFHab .input-group-btn button,
  .cid-tTkk7CFHab .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-tTkk7CFHab .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-tTkk7CFHab .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tTkk7CFHab .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-tTkk7CFHab .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-tTkk7CFHab .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-tTkk7CFHab .mbr-section-subtitle,
.cid-tTkk7CFHab .mbr-section-btn {
  text-align: center;
}
.cid-tW4wJJ2QpB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #549fe2;
}
@media (max-width: 767px) {
  .cid-tW4wJJ2QpB .content {
    text-align: center;
  }
  .cid-tW4wJJ2QpB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tW4wJJ2QpB .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tW4wJJ2QpB .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tW4wJJ2QpB .media-wrap img {
  height: 6rem;
}
.cid-tW4wJJ2QpB .mbr-text {
  color: #8d97ad;
}
.cid-tW4wJJ2QpB .p-title {
  font-size: 17px;
  color: #000000;
}
.cid-tW4wJJ2QpB .p-title span {
  color: #111111;
}
.cid-tW4wJJ2QpB .title-card {
  font-size: 1.3rem;
}
.cid-tW4wJJ2QpB .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tW4wJJ2QpB .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tW4wJJ2QpB .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tW4wJJ2QpB .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tW4wJJ2QpB .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tW4wJJ2QpB .copyright {
  display: flex;
  align-items: center;
}
.cid-tW4wJJ2QpB .copyright img {
  margin-right: 10px;
}
.cid-tW4wJJ2QpB .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #52e5e5;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tW4wJJ2QpB .icon-transition span:hover {
  background-color: #1dc9cb;
}
@media (max-width: 767px) {
  .cid-tW4wJJ2QpB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tW4wJJ2QpB .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tW4wJJ2QpB .footer-menu {
    justify-content: center;
  }
}
.cid-tTkkEQRLLY .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-tTkkEQRLLY .nav-item,
.cid-tTkkEQRLLY .nav-link,
.cid-tTkkEQRLLY .navbar-caption {
  font-weight: normal;
}
.cid-tTkkEQRLLY .nav-item:focus,
.cid-tTkkEQRLLY .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tTkkEQRLLY .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tTkkEQRLLY .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-tTkkEQRLLY .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tTkkEQRLLY .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tTkkEQRLLY .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tTkkEQRLLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tTkkEQRLLY .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-tTkkEQRLLY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTkkEQRLLY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTkkEQRLLY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #549fe2;
  background: none;
}
.cid-tTkkEQRLLY .navbar.opened {
  transition: all .3s;
  background: #549fe2 !important;
}
.cid-tTkkEQRLLY .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tTkkEQRLLY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTkkEQRLLY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTkkEQRLLY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTkkEQRLLY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tTkkEQRLLY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tTkkEQRLLY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTkkEQRLLY .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-tTkkEQRLLY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTkkEQRLLY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTkkEQRLLY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTkkEQRLLY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTkkEQRLLY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTkkEQRLLY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tTkkEQRLLY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTkkEQRLLY .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-tTkkEQRLLY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tTkkEQRLLY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTkkEQRLLY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tTkkEQRLLY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tTkkEQRLLY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTkkEQRLLY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTkkEQRLLY .navbar.navbar-short {
  background: #549fe2 !important;
  min-height: 60px;
}
.cid-tTkkEQRLLY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tTkkEQRLLY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tTkkEQRLLY .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-tTkkEQRLLY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTkkEQRLLY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTkkEQRLLY .dropdown-item.active,
.cid-tTkkEQRLLY .dropdown-item:active {
  background-color: transparent;
}
.cid-tTkkEQRLLY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTkkEQRLLY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTkkEQRLLY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549fe2;
}
.cid-tTkkEQRLLY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTkkEQRLLY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTkkEQRLLY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTkkEQRLLY .navbar-buttons {
  text-align: center;
}
.cid-tTkkEQRLLY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTkkEQRLLY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTkkEQRLLY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTkkEQRLLY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkkEQRLLY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTkkEQRLLY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTkkEQRLLY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkkEQRLLY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTkkEQRLLY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTkkEQRLLY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTkkEQRLLY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tTkkEQRLLY a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tTkkEQRLLY .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tTkkEQRLLY .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tTkkEQRLLY .soc-item {
  margin: .5rem .3rem;
}
.cid-tTkkEQRLLY .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-tTkkEQRLLY .navbar {
    height: 77px;
  }
  .cid-tTkkEQRLLY .navbar.opened {
    height: auto;
  }
  .cid-tTkkEQRLLY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTkkERjnG0 {
  padding-top: 75px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
}
.cid-tTkkERjnG0 .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-tTkkERjnG0 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkkERjnG0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkkERjnG0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkkERjnG0 H1 {
  color: #000000;
}
.cid-tTps7LDIpe {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTps7LDIpe .mbr-section-subtitle {
  color: #000000;
}
.cid-tTps7LDIpe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTps7LDIpe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTps7LDIpe .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tTkkERDKTG {
  background-image: url("../../../assets/images/mbr-1920x1339.jpg");
}
.cid-tTkkERDKTG .mbr-overlay {
  background: #444444;
}
.cid-tTkkERDKTG .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTkkERDKTG .mbr-section-subtitle,
.cid-tTkkERDKTG mbr-section-btn {
  color: #ffffff;
}
.cid-tTkkERDKTG B {
  color: #333333;
}
.cid-tTkkERDKTG H1 {
  color: #ffffff;
}
.cid-tTppNXhPqB {
  background-image: url("../../../assets/images/background1.jpg");
  display: flex;
  flex-direction: column;
}
.cid-tTppNXhPqB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTppNXhPqB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTppNXhPqB .container-fluid {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.cid-tTppNXhPqB .row {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.cid-tTppNXhPqB .col-text {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
  padding: 50px !important;
  background-image: url("../../../assets/images/1.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1399px) {
  .cid-tTppNXhPqB .col-text {
    padding: 30px !important;
  }
}
@media (max-width: 991px) {
  .cid-tTppNXhPqB .col-text {
    border-radius: 12px;
  }
}
@media (max-width: 767px) {
  .cid-tTppNXhPqB .col-text {
    padding: 12px !important;
  }
}
.cid-tTppNXhPqB .col-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.2;
}
.cid-tTppNXhPqB .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  margin: 0 !important;
}
.cid-tTppNXhPqB .mbr-section-btn .btn {
  width: calc(50% - 12px) !important;
  border-radius: 100px;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-tTppNXhPqB .mbr-section-btn .btn {
    width: 100% !important;
    border-radius: 12px;
  }
}
.cid-tTppNXhPqB .center-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto 0;
}
.cid-tTppNXhPqB .mbr-section-title {
  position: relative;
  width: 100%;
  color: #e3ebf3;
}
.cid-tTppNXhPqB .subtitle-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 575px) {
  .cid-tTppNXhPqB .subtitle-wrap {
    margin-top: 20px;
  }
}
.cid-tTppNXhPqB .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  transition: .3s all;
}
@media (max-width: 575px) {
  .cid-tTppNXhPqB .iconfont-wrapper {
    display: none;
  }
}
.cid-tTppNXhPqB .iconfont-wrapper .mbr-iconfont {
  font-size: 22px;
  color: #e3ebf3;
  margin-bottom: 0;
}
.cid-tTppNXhPqB .mbr-section-subtitle {
  color: #e3ebf3;
}
.cid-tTppNXhPqB .list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #e3ebf3;
}
@media (max-width: 991px) {
  .cid-tTppNXhPqB .list {
    flex-direction: column;
    align-items: flex-end;
  }
}
.cid-tTppNXhPqB .list li {
  width: auto;
  color: inherit;
  margin: 0 ;
}
@media (max-width: 991px) {
  .cid-tTppNXhPqB .list li {
    position: relative;
    padding-bottom: 8px;
  }
  .cid-tTppNXhPqB .list li:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
  }
}
.cid-tTppNXhPqB .list a {
  position: relative;
  color: inherit;
}
.cid-tTppNXhPqB a.text-white:hover {
  color: #ff4f7b !important;
}
.cid-tTpqMeCUOc {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-tTpqMeCUOc .main-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tTpqMeCUOc .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-tTpqMeCUOc .content-panel {
  padding: 2rem;
  background-color: #549fe2;
  border-radius: .25rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tTpqMeCUOc .content-block {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-tTpqMeCUOc .form-group,
  .cid-tTpqMeCUOc .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-tTpqMeCUOc .form-control {
  border-radius: .25rem !important;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
}
.cid-tTpqMeCUOc textarea.form-control {
  min-height: 170px;
}
@media (max-width: 768px) {
  .cid-tTpqMeCUOc .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tTpqMeCUOc .text-block {
    margin-bottom: 2rem;
  }
}
.cid-tTpqMeCUOc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpqMeCUOc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTppuSVnTl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tTppuSVnTl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTppuSVnTl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTppuSVnTl .google-map {
  height: 35rem;
  position: relative;
}
.cid-tTppuSVnTl .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tTppuSVnTl .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tTppuSVnTl .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tTppuSVnTl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tTppuSVnTl .mbr-section-title {
  color: #00004c;
}
.cid-tTkkESHicX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  overflow: hidden !important;
}
.cid-tTkkESHicX .mbr-section-subtitle {
  font-weight: 400;
}
.cid-tTkkESHicX .mbr-section-title {
  padding-bottom: 2rem;
  text-align: center;
}
.cid-tTkkESHicX .img-block {
  align-self: center;
}
.cid-tTkkESHicX .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tTkkESHicX .mbr-form {
  margin-bottom: 3rem;
}
.cid-tTkkESHicX .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-tTkkESHicX a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-tTkkESHicX .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-tTkkESHicX .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-tTkkESHicX .mbr-subscribe .input-group-btn button,
.cid-tTkkESHicX .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-tTkkESHicX .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tTkkESHicX input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-tTkkESHicX .input-group-btn {
    width: 100%;
  }
  .cid-tTkkESHicX .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-tTkkESHicX .mbr-form {
    margin-bottom: 0;
  }
  .cid-tTkkESHicX .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-tTkkESHicX .input-group-btn a.btn {
    width: 100%;
  }
  .cid-tTkkESHicX .input-group-btn {
    width: calc(92%);
  }
  .cid-tTkkESHicX .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-tTkkESHicX .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-tTkkESHicX .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-tTkkESHicX .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-tTkkESHicX .input-group-btn button,
  .cid-tTkkESHicX .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-tTkkESHicX .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-tTkkESHicX .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tTkkESHicX .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-tTkkESHicX .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-tTkkESHicX .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-tTkkESHicX .mbr-section-subtitle,
.cid-tTkkESHicX .mbr-section-btn {
  text-align: center;
}
.cid-tW4wtyPAp3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #549fe2;
}
@media (max-width: 767px) {
  .cid-tW4wtyPAp3 .content {
    text-align: center;
  }
  .cid-tW4wtyPAp3 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tW4wtyPAp3 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tW4wtyPAp3 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tW4wtyPAp3 .media-wrap img {
  height: 6rem;
}
.cid-tW4wtyPAp3 .mbr-text {
  color: #8d97ad;
}
.cid-tW4wtyPAp3 .p-title {
  font-size: 17px;
  color: #000000;
}
.cid-tW4wtyPAp3 .p-title span {
  color: #111111;
}
.cid-tW4wtyPAp3 .title-card {
  font-size: 1.3rem;
}
.cid-tW4wtyPAp3 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tW4wtyPAp3 .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tW4wtyPAp3 .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tW4wtyPAp3 .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tW4wtyPAp3 .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tW4wtyPAp3 .copyright {
  display: flex;
  align-items: center;
}
.cid-tW4wtyPAp3 .copyright img {
  margin-right: 10px;
}
.cid-tW4wtyPAp3 .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #52e5e5;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tW4wtyPAp3 .icon-transition span:hover {
  background-color: #1dc9cb;
}
@media (max-width: 767px) {
  .cid-tW4wtyPAp3 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tW4wtyPAp3 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tW4wtyPAp3 .footer-menu {
    justify-content: center;
  }
}
.cid-tToZBunFeN .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-tToZBunFeN .nav-item,
.cid-tToZBunFeN .nav-link,
.cid-tToZBunFeN .navbar-caption {
  font-weight: normal;
}
.cid-tToZBunFeN .nav-item:focus,
.cid-tToZBunFeN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tToZBunFeN .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tToZBunFeN .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-tToZBunFeN .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tToZBunFeN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tToZBunFeN .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tToZBunFeN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tToZBunFeN .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-tToZBunFeN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tToZBunFeN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tToZBunFeN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #549fe2;
  background: none;
}
.cid-tToZBunFeN .navbar.opened {
  transition: all .3s;
  background: #549fe2 !important;
}
.cid-tToZBunFeN .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tToZBunFeN .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tToZBunFeN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tToZBunFeN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tToZBunFeN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tToZBunFeN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tToZBunFeN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tToZBunFeN .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-tToZBunFeN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tToZBunFeN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tToZBunFeN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tToZBunFeN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tToZBunFeN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tToZBunFeN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tToZBunFeN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tToZBunFeN .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-tToZBunFeN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tToZBunFeN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tToZBunFeN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tToZBunFeN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tToZBunFeN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tToZBunFeN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tToZBunFeN .navbar.navbar-short {
  background: #549fe2 !important;
  min-height: 60px;
}
.cid-tToZBunFeN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tToZBunFeN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tToZBunFeN .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-tToZBunFeN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tToZBunFeN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tToZBunFeN .dropdown-item.active,
.cid-tToZBunFeN .dropdown-item:active {
  background-color: transparent;
}
.cid-tToZBunFeN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tToZBunFeN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tToZBunFeN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549fe2;
}
.cid-tToZBunFeN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tToZBunFeN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tToZBunFeN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tToZBunFeN .navbar-buttons {
  text-align: center;
}
.cid-tToZBunFeN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tToZBunFeN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tToZBunFeN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tToZBunFeN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tToZBunFeN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tToZBunFeN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tToZBunFeN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tToZBunFeN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tToZBunFeN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tToZBunFeN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tToZBunFeN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tToZBunFeN a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tToZBunFeN .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tToZBunFeN .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tToZBunFeN .soc-item {
  margin: .5rem .3rem;
}
.cid-tToZBunFeN .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-tToZBunFeN .navbar {
    height: 77px;
  }
  .cid-tToZBunFeN .navbar.opened {
    height: auto;
  }
  .cid-tToZBunFeN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tToZBwpBiG {
  padding-top: 75px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
}
.cid-tToZBwpBiG .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-tToZBwpBiG .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tToZBwpBiG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tToZBwpBiG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tToZBwpBiG H1 {
  color: #000000;
}
.cid-tTp0UWYUek {
  background-image: url("../../../assets/images/mbr-1920x1282.jpeg");
}
.cid-tTp0UWYUek .mbr-overlay {
  background: #444444;
}
.cid-tTp0UWYUek .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tTp0UWYUek .mbr-section-subtitle,
.cid-tTp0UWYUek mbr-section-btn {
  color: #000000;
}
.cid-tTp0UWYUek B {
  color: #333333;
}
.cid-tTp0UWYUek H1 {
  color: #549fe2;
}
.cid-tTp2f8Mk1L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #549fe2;
}
.cid-tTp2f8Mk1L .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTp2f8Mk1L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTp2f8Mk1L .row {
  justify-content: center;
}
.cid-tTp2f8Mk1L .mbr-form {
  padding: 40px 45px;
}
@media (max-width: 992px) {
  .cid-tTp2f8Mk1L .mbr-form {
    padding: 32px 24px;
  }
}
.cid-tTp2f8Mk1L .mbr-form .dragArea.row .mbr-section-title {
  margin-bottom: 11px;
}
.cid-tTp2f8Mk1L .mbr-form .dragArea.row .mbr-text {
  margin-bottom: 22px;
}
.cid-tTp2f8Mk1L .mbr-form .dragArea.row .form-group {
  margin-bottom: 25px !important;
}
.cid-tTp2f8Mk1L .mbr-form .dragArea.row .form-group .form-control-label {
  width: 100%;
  padding: 0 10px 5px 0;
  margin: 0;
}
.cid-tTp2f8Mk1L .mbr-form .dragArea.row .form-group .form-control {
  padding: 0 20px;
  background-color: #ffffff;
  min-height: 60px;
  border-radius: 100px;
  box-shadow: none;
  border: none !important;
}
.cid-tTp2f8Mk1L .mbr-form .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
}
.cid-tTp2f8Mk1L .mbr-form .dragArea.row .form-group .form-control:hover,
.cid-tTp2f8Mk1L .mbr-form .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-tTp2f8Mk1L .mbr-form .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin: 0;
}
.cid-tTp2f8Mk1L .mbr-form .dragArea.row .form-group .form-check .form-check-input {
  border-radius: 0;
  border: 2px solid #000000;
  background-color: transparent;
}
.cid-tTp2f8Mk1L .mbr-form .dragArea.row .form-group .form-check .form-check-label {
  width: 100%;
  padding-top: 4px;
}
.cid-tTp2f8Mk1L .mbr-form .dragArea.row .form-group textarea {
  padding: 10px 20px 0;
}
.cid-tTp2f8Mk1L .mbr-form .dragArea.row .mbr-section-btn {
  width: 100% !important;
}
.cid-tTp2f8Mk1L .mbr-form .dragArea.row .mbr-section-btn .btn {
  min-height: 54px;
}
.cid-tTp2f8Mk1L .mbr-section-title {
  color: #101511;
  text-align: center;
}
.cid-tTp2f8Mk1L .mbr-text {
  color: #6e716f;
  text-align: center;
}
.cid-tTp2f8Mk1L LABEL {
  color: #101511;
}
.cid-tTplarCapA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tTplarCapA .mbr-section-subtitle {
  color: #000000;
}
.cid-tTplarCapA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTplarCapA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTplarCapA .mbr-section-title {
  color: #549fe2;
}
.cid-tToZBDmIhW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tToZBDmIhW .mbr-text {
  color: #000000;
}
.cid-tToZBEToUz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  overflow: hidden !important;
}
.cid-tToZBEToUz .mbr-section-subtitle {
  font-weight: 400;
}
.cid-tToZBEToUz .mbr-section-title {
  padding-bottom: 2rem;
  text-align: center;
}
.cid-tToZBEToUz .img-block {
  align-self: center;
}
.cid-tToZBEToUz .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-tToZBEToUz .mbr-form {
  margin-bottom: 3rem;
}
.cid-tToZBEToUz .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-tToZBEToUz a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-tToZBEToUz .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-tToZBEToUz .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-tToZBEToUz .mbr-subscribe .input-group-btn button,
.cid-tToZBEToUz .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-tToZBEToUz .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tToZBEToUz input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-tToZBEToUz .input-group-btn {
    width: 100%;
  }
  .cid-tToZBEToUz .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-tToZBEToUz .mbr-form {
    margin-bottom: 0;
  }
  .cid-tToZBEToUz .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-tToZBEToUz .input-group-btn a.btn {
    width: 100%;
  }
  .cid-tToZBEToUz .input-group-btn {
    width: calc(92%);
  }
  .cid-tToZBEToUz .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-tToZBEToUz .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-tToZBEToUz .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-tToZBEToUz .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-tToZBEToUz .input-group-btn button,
  .cid-tToZBEToUz .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-tToZBEToUz .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-tToZBEToUz .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tToZBEToUz .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-tToZBEToUz .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-tToZBEToUz .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-tToZBEToUz .mbr-section-subtitle,
.cid-tToZBEToUz .mbr-section-btn {
  text-align: center;
}
.cid-tW4wqQ4pA1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #549fe2;
}
@media (max-width: 767px) {
  .cid-tW4wqQ4pA1 .content {
    text-align: center;
  }
  .cid-tW4wqQ4pA1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tW4wqQ4pA1 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tW4wqQ4pA1 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tW4wqQ4pA1 .media-wrap img {
  height: 6rem;
}
.cid-tW4wqQ4pA1 .mbr-text {
  color: #8d97ad;
}
.cid-tW4wqQ4pA1 .p-title {
  font-size: 17px;
  color: #000000;
}
.cid-tW4wqQ4pA1 .p-title span {
  color: #111111;
}
.cid-tW4wqQ4pA1 .title-card {
  font-size: 1.3rem;
}
.cid-tW4wqQ4pA1 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tW4wqQ4pA1 .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tW4wqQ4pA1 .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tW4wqQ4pA1 .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tW4wqQ4pA1 .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tW4wqQ4pA1 .copyright {
  display: flex;
  align-items: center;
}
.cid-tW4wqQ4pA1 .copyright img {
  margin-right: 10px;
}
.cid-tW4wqQ4pA1 .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #52e5e5;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tW4wqQ4pA1 .icon-transition span:hover {
  background-color: #1dc9cb;
}
@media (max-width: 767px) {
  .cid-tW4wqQ4pA1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tW4wqQ4pA1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tW4wqQ4pA1 .footer-menu {
    justify-content: center;
  }
}
