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: #006999 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #fd4f06 !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: #006999 !important;
  border-color: #006999 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #00354d !important;
  border-color: #00354d !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #00354d !important;
  border-color: #00354d !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: #fd4f06 !important;
  border-color: #fd4f06 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #b53701 !important;
  border-color: #b53701 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b53701 !important;
  border-color: #b53701 !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: #002333 !important;
  color: #002333 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #006999 !important;
  border-color: #006999 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #006999 !important;
  border-color: #006999 !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: #9c2f01 !important;
  color: #9c2f01 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #fd4f06 !important;
  border-color: #fd4f06 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #fd4f06 !important;
  border-color: #fd4f06 !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: #006999 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #fd4f06 !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: #002333 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #9c2f01 !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: #006999;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #fd4f06;
}
.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: #1ab7ff;
}
.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: #ffded0;
}
/* Scroll to top button*/
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #fd4f06;
}
#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: #fd4f06;
}
.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-rWEg2lhHpU .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-rWEg2lhHpU .nav-item,
.cid-rWEg2lhHpU .nav-link,
.cid-rWEg2lhHpU .navbar-caption {
  font-weight: normal;
}
.cid-rWEg2lhHpU .nav-item:focus,
.cid-rWEg2lhHpU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rWEg2lhHpU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rWEg2lhHpU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rWEg2lhHpU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rWEg2lhHpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWEg2lhHpU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rWEg2lhHpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWEg2lhHpU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rWEg2lhHpU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rWEg2lhHpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWEg2lhHpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rWEg2lhHpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWEg2lhHpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rWEg2lhHpU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rWEg2lhHpU .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWEg2lhHpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWEg2lhHpU .dropdown-item.active,
.cid-rWEg2lhHpU .dropdown-item:active {
  background-color: transparent;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rWEg2lhHpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWEg2lhHpU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWEg2lhHpU .navbar-buttons {
  text-align: center;
}
.cid-rWEg2lhHpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWEg2lhHpU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWEg2lhHpU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rWEg2lhHpU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rWEg2lhHpU .soc-item {
  margin: .5rem .3rem;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar {
    height: 77px;
  }
  .cid-rWEg2lhHpU .navbar.opened {
    height: auto;
  }
  .cid-rWEg2lhHpU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYaVKTrHBo {
  overflow-x: hidden !important;
}
.cid-rYaVKTrHBo,
.cid-rYaVKTrHBo .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 225px;
}
.cid-rYaVKTrHBo .mbr-section-title {
  color: #ffffff;
}
.cid-rYaVKTrHBo .mbr-section-title span {
  color: #ff4f7b;
}
.cid-rYaVKTrHBo .mbr-text {
  color: #f4f8fa;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-rYaVKTrHBo .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 22s !important;
  animation-duration: 22s;
  background-image: url("../../../assets/images/chef-units-ready-to-go-1920x1277.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-rYaVKTrHBo .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-rYaVKTrHBo .mbr-overlay {
  z-index: 1;
}
.cid-rYaVKTrHBo .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sx54vajeCw {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sx54vajeCw .container-fluid {
  padding: 0 3rem;
}
.cid-sx54vajeCw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ff4f7b, #2bdc9d);
  display: inline-block;
}
.cid-sx54vajeCw .card {
  display: block;
}
.cid-sx54vajeCw .card .card-wrapper {
  height: 1%;
}
.cid-sx54vajeCw .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-sx54vajeCw .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sx54vajeCw .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sx54vajeCw .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx54vajeCw .prices {
  color: #ffffff;
}
.cid-sx54vajeCw .oldPrice {
  text-decoration: line-through;
}
.cid-sx54vajeCw .oldPrice,
.cid-sx54vajeCw .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-sx54vajeCw .container-fluid {
    padding: 0 1rem;
  }
  .cid-sx54vajeCw .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sx54vajeCw .mbr-section-title,
.cid-sx54vajeCw .underline {
  color: #fd4f06;
  text-align: center;
}
.cid-sx54vajeCw .mbr-section-subtitle {
  color: #837f7f;
  text-align: center;
}
.cid-sx54vajeCw .mbr-text,
.cid-sx54vajeCw .mbr-section-btn {
  color: #444444;
}
.cid-sx54vajeCw .prices,
.cid-sx54vajeCw .mbr-section-btn {
  color: #cccccc;
  text-align: center;
}
.cid-sx54vajeCw .prices,
.cid-sx54vajeCw .mbr-section-btn P {
  text-align: center;
}
.cid-sRcQRGmuIB {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sRcQRGmuIB .container-fluid {
  padding: 0 3rem;
}
.cid-sRcQRGmuIB .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ff4f7b, #2bdc9d);
  display: inline-block;
}
.cid-sRcQRGmuIB .card {
  display: block;
}
.cid-sRcQRGmuIB .card .card-wrapper {
  height: 1%;
}
.cid-sRcQRGmuIB .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-sRcQRGmuIB .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sRcQRGmuIB .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sRcQRGmuIB .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sRcQRGmuIB .prices {
  color: #ffffff;
}
.cid-sRcQRGmuIB .oldPrice {
  text-decoration: line-through;
}
.cid-sRcQRGmuIB .oldPrice,
.cid-sRcQRGmuIB .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-sRcQRGmuIB .container-fluid {
    padding: 0 1rem;
  }
  .cid-sRcQRGmuIB .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sRcQRGmuIB .mbr-section-title,
.cid-sRcQRGmuIB .underline {
  color: #fd4f06;
  text-align: center;
}
.cid-sRcQRGmuIB .mbr-section-subtitle {
  color: #837f7f;
  text-align: center;
}
.cid-sRcQRGmuIB .mbr-text,
.cid-sRcQRGmuIB .mbr-section-btn {
  color: #444444;
}
.cid-sRcQRGmuIB .prices,
.cid-sRcQRGmuIB .mbr-section-btn {
  color: #cccccc;
}
.cid-sx5r3gBRNa {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sx5r3gBRNa .container-fluid {
  padding: 0 3rem;
}
.cid-sx5r3gBRNa .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ff4f7b, #2bdc9d);
  display: inline-block;
}
.cid-sx5r3gBRNa .card {
  display: block;
}
.cid-sx5r3gBRNa .card .card-wrapper {
  height: 1%;
}
.cid-sx5r3gBRNa .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-sx5r3gBRNa .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sx5r3gBRNa .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sx5r3gBRNa .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx5r3gBRNa .prices {
  color: #ffffff;
}
.cid-sx5r3gBRNa .oldPrice {
  text-decoration: line-through;
}
.cid-sx5r3gBRNa .oldPrice,
.cid-sx5r3gBRNa .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-sx5r3gBRNa .container-fluid {
    padding: 0 1rem;
  }
  .cid-sx5r3gBRNa .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sx5r3gBRNa .mbr-section-title,
.cid-sx5r3gBRNa .underline {
  color: #fd4f06;
  text-align: center;
}
.cid-sx5r3gBRNa .mbr-section-subtitle {
  color: #837f7f;
  text-align: center;
}
.cid-sx5r3gBRNa .mbr-text,
.cid-sx5r3gBRNa .mbr-section-btn {
  color: #444444;
}
.cid-sx5r3gBRNa .prices,
.cid-sx5r3gBRNa .mbr-section-btn {
  color: #cccccc;
}
.cid-rYkTqdfcSE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYkTqdfcSE .container-fluid {
  padding: 0 3rem;
}
.cid-rYkTqdfcSE .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ff4f7b, #2bdc9d);
  display: inline-block;
}
.cid-rYkTqdfcSE .card {
  display: block;
}
.cid-rYkTqdfcSE .card .card-wrapper {
  height: 1%;
}
.cid-rYkTqdfcSE .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-rYkTqdfcSE .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rYkTqdfcSE .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rYkTqdfcSE .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rYkTqdfcSE .prices {
  color: #ffffff;
}
.cid-rYkTqdfcSE .oldPrice {
  text-decoration: line-through;
}
.cid-rYkTqdfcSE .oldPrice,
.cid-rYkTqdfcSE .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-rYkTqdfcSE .container-fluid {
    padding: 0 1rem;
  }
  .cid-rYkTqdfcSE .text-row {
    padding-bottom: 1rem;
  }
}
.cid-rYkTqdfcSE .mbr-section-title,
.cid-rYkTqdfcSE .underline {
  color: #fd4f06;
  text-align: center;
}
.cid-rYkTqdfcSE .mbr-section-subtitle {
  color: #837f7f;
  text-align: center;
}
.cid-rYkTqdfcSE .mbr-text,
.cid-rYkTqdfcSE .mbr-section-btn {
  color: #444444;
}
.cid-rYkTqdfcSE .prices,
.cid-rYkTqdfcSE .mbr-section-btn {
  color: #cccccc;
  text-align: center;
}
.cid-rYkTqdfcSE .prices,
.cid-rYkTqdfcSE .mbr-section-btn P {
  text-align: center;
}
.cid-rYlIMwjxU1 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rYlIMwjxU1 .container-fluid {
  padding: 0 3rem;
}
.cid-rYlIMwjxU1 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ff4f7b, #2bdc9d);
  display: inline-block;
}
.cid-rYlIMwjxU1 .card {
  display: block;
}
.cid-rYlIMwjxU1 .card .card-wrapper {
  height: 1%;
}
.cid-rYlIMwjxU1 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-rYlIMwjxU1 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rYlIMwjxU1 .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rYlIMwjxU1 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rYlIMwjxU1 .prices {
  color: #ffffff;
}
.cid-rYlIMwjxU1 .oldPrice {
  text-decoration: line-through;
}
.cid-rYlIMwjxU1 .oldPrice,
.cid-rYlIMwjxU1 .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-rYlIMwjxU1 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rYlIMwjxU1 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-rYlIMwjxU1 .mbr-section-title,
.cid-rYlIMwjxU1 .underline {
  color: #fd4f06;
  text-align: center;
}
.cid-rYlIMwjxU1 .mbr-section-subtitle {
  color: #837f7f;
  text-align: center;
}
.cid-rYlIMwjxU1 .mbr-text,
.cid-rYlIMwjxU1 .mbr-section-btn {
  color: #444444;
}
.cid-rYlIMwjxU1 .prices,
.cid-rYlIMwjxU1 .mbr-section-btn {
  color: #cccccc;
}
.cid-rWEJKOipWR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .content {
    text-align: center;
  }
  .cid-rWEJKOipWR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR .logo-subtitle {
  color: #8d97ad;
}
.cid-rWEJKOipWR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWEJKOipWR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWEJKOipWR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWEJKOipWR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rWEJKOipWR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWEJKOipWR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWEJKOipWR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWEJKOipWR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWEJKOipWR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rWEJKOipWR .list-item {
  display: flex;
}
.cid-rWEJKOipWR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rWEJKOipWR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rWEJKOipWR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rWEJKOipWR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rWEJKOipWR .logo-subtitle,
.cid-rWEJKOipWR .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rWEJKOipWR .copyright > p {
  color: #ffffff;
}
.cid-rWEJKOipWR .column-title {
  color: #ffffff;
}
.cid-rWEJKOipWR P {
  color: #ffffff;
}
.cid-rWEJKOipWR .mbr-text {
  color: #ffffff;
}
.cid-rYDGDC8Mvm {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/banner-faq-chef-units-1440x410.jpg");
}
.cid-rYDGDC8Mvm .mbr-overlay {
  background: #444444;
}
.cid-rYDGDC8Mvm .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .nav-item,
.cid-rWEg2lhHpU .nav-link,
.cid-rWEg2lhHpU .navbar-caption {
  font-weight: normal;
}
.cid-rWEg2lhHpU .nav-item:focus,
.cid-rWEg2lhHpU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rWEg2lhHpU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rWEg2lhHpU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rWEg2lhHpU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rWEg2lhHpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWEg2lhHpU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rWEg2lhHpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWEg2lhHpU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rWEg2lhHpU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rWEg2lhHpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWEg2lhHpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rWEg2lhHpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWEg2lhHpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rWEg2lhHpU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rWEg2lhHpU .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWEg2lhHpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWEg2lhHpU .dropdown-item.active,
.cid-rWEg2lhHpU .dropdown-item:active {
  background-color: transparent;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rWEg2lhHpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWEg2lhHpU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWEg2lhHpU .navbar-buttons {
  text-align: center;
}
.cid-rWEg2lhHpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWEg2lhHpU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWEg2lhHpU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rWEg2lhHpU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rWEg2lhHpU .soc-item {
  margin: .5rem .3rem;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar {
    height: 77px;
  }
  .cid-rWEg2lhHpU .navbar.opened {
    height: auto;
  }
  .cid-rWEg2lhHpU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYHPcPxrx2 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYHPcPxrx2 h4 {
  display: flex;
  color: #232323;
}
.cid-rYHPcPxrx2 .panel-text {
  color: #000000;
  line-height: 1.7;
  padding: 5%;
}
.cid-rYHPcPxrx2 .wrap {
  display: flex;
}
.cid-rYHPcPxrx2 .icon {
  background: #fd4f06;
  min-width: 33px;
  min-height: 33px;
  border-radius: 100%;
  color: white!important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.cid-rYHPcPxrx2 img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-rYHPcPxrx2 .mbr-section-title {
  color: #006999;
  text-align: center;
}
.cid-rYHPcPxrx2 p {
  margin: 0;
}
.cid-rYHPcPxrx2 .card .card-header a.panel-title {
  background-color: none!important;
  margin-top: 0px!important;
}
.cid-rYHPcPxrx2 .mbr-section-subtitle {
  font-weight: 500;
  color: #fd4f06;
  text-align: center;
}
.cid-rYHPcPxrx2 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-rYHPcPxrx2 .panel-group {
  width: 100%;
}
.cid-rYHPcPxrx2 .panel-title {
  border-bottom: 1px solid #fd4f06;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-rYHPcPxrx2 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rYHPcPxrx2 .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rYHPcPxrx2 .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-rYHPcPxrx2 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rYHPcPxrx2 .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
}
.cid-rYHPcPxrx2 .card .panel-body {
  background: #efefef;
}
.cid-rYHPcPxrx2 .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-rYHPcPxrx2 .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-rYHPcPxrx2 .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-rYHPcPxrx2 .header-text,
.cid-rYHPcPxrx2 .sign {
  color: #232323;
  text-align: left;
}
.cid-rYHSxvsC0A {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYHSxvsC0A h4 {
  display: flex;
  color: #232323;
}
.cid-rYHSxvsC0A .panel-text {
  color: #000000;
  line-height: 1.7;
  padding: 5%;
}
.cid-rYHSxvsC0A .wrap {
  display: flex;
}
.cid-rYHSxvsC0A .icon {
  background: #fd4f06;
  min-width: 33px;
  min-height: 33px;
  border-radius: 100%;
  color: white!important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.cid-rYHSxvsC0A img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-rYHSxvsC0A .mbr-section-title {
  color: #006999;
  text-align: center;
}
.cid-rYHSxvsC0A p {
  margin: 0;
}
.cid-rYHSxvsC0A .card .card-header a.panel-title {
  background-color: none!important;
  margin-top: 0px!important;
}
.cid-rYHSxvsC0A .mbr-section-subtitle {
  font-weight: 500;
  color: #fd4f06;
  text-align: center;
}
.cid-rYHSxvsC0A .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-rYHSxvsC0A .panel-group {
  width: 100%;
}
.cid-rYHSxvsC0A .panel-title {
  border-bottom: 1px solid #fd4f06;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-rYHSxvsC0A .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rYHSxvsC0A .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rYHSxvsC0A .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-rYHSxvsC0A .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rYHSxvsC0A .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
}
.cid-rYHSxvsC0A .card .panel-body {
  background: #efefef;
}
.cid-rYHSxvsC0A .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-rYHSxvsC0A .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-rYHSxvsC0A .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-rYHSxvsC0A .header-text,
.cid-rYHSxvsC0A .sign {
  color: #232323;
  text-align: left;
}
.cid-sTTES10Kio {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sTTES10Kio h4 {
  display: flex;
  color: #232323;
}
.cid-sTTES10Kio .panel-text {
  color: #000000;
  line-height: 1.7;
  padding: 5%;
}
.cid-sTTES10Kio .wrap {
  display: flex;
}
.cid-sTTES10Kio .icon {
  background: #fd4f06;
  min-width: 33px;
  min-height: 33px;
  border-radius: 100%;
  color: white!important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.cid-sTTES10Kio img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-sTTES10Kio .mbr-section-title {
  color: #006999;
  text-align: center;
}
.cid-sTTES10Kio p {
  margin: 0;
}
.cid-sTTES10Kio .card .card-header a.panel-title {
  background-color: none!important;
  margin-top: 0px!important;
}
.cid-sTTES10Kio .mbr-section-subtitle {
  font-weight: 500;
  color: #fd4f06;
  text-align: center;
}
.cid-sTTES10Kio .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-sTTES10Kio .panel-group {
  width: 100%;
}
.cid-sTTES10Kio .panel-title {
  border-bottom: 1px solid #fd4f06;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-sTTES10Kio .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-sTTES10Kio .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sTTES10Kio .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-sTTES10Kio .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sTTES10Kio .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
}
.cid-sTTES10Kio .card .panel-body {
  background: #efefef;
}
.cid-sTTES10Kio .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sTTES10Kio .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-sTTES10Kio .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-sTTES10Kio .header-text,
.cid-sTTES10Kio .sign {
  color: #232323;
  text-align: left;
}
.cid-sx4NV12ug6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sx4NV12ug6 .card-wrapper {
  z-index: 3;
}
.cid-sx4NV12ug6 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sx4NV12ug6:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sx4NV12ug6 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sx4NV12ug6 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#custom-html-64 {
  /* Type valid CSS here */
}
#custom-html-64 div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
  background-color: #fd4f06;
}
#custom-html-64 p {
  font-size: 60px;
  color: #777;
}
.cid-rWEJKOipWR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .content {
    text-align: center;
  }
  .cid-rWEJKOipWR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR .logo-subtitle {
  color: #8d97ad;
}
.cid-rWEJKOipWR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWEJKOipWR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWEJKOipWR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWEJKOipWR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rWEJKOipWR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWEJKOipWR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWEJKOipWR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWEJKOipWR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWEJKOipWR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rWEJKOipWR .list-item {
  display: flex;
}
.cid-rWEJKOipWR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rWEJKOipWR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rWEJKOipWR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rWEJKOipWR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rWEJKOipWR .logo-subtitle,
.cid-rWEJKOipWR .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rWEJKOipWR .copyright > p {
  color: #ffffff;
}
.cid-rWEJKOipWR .column-title {
  color: #ffffff;
}
.cid-rWEJKOipWR P {
  color: #ffffff;
}
.cid-rWEJKOipWR .mbr-text {
  color: #ffffff;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .nav-item,
.cid-rWEg2lhHpU .nav-link,
.cid-rWEg2lhHpU .navbar-caption {
  font-weight: normal;
}
.cid-rWEg2lhHpU .nav-item:focus,
.cid-rWEg2lhHpU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rWEg2lhHpU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rWEg2lhHpU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rWEg2lhHpU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rWEg2lhHpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWEg2lhHpU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rWEg2lhHpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWEg2lhHpU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rWEg2lhHpU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rWEg2lhHpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWEg2lhHpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rWEg2lhHpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWEg2lhHpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rWEg2lhHpU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rWEg2lhHpU .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWEg2lhHpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWEg2lhHpU .dropdown-item.active,
.cid-rWEg2lhHpU .dropdown-item:active {
  background-color: transparent;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rWEg2lhHpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWEg2lhHpU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWEg2lhHpU .navbar-buttons {
  text-align: center;
}
.cid-rWEg2lhHpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWEg2lhHpU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWEg2lhHpU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rWEg2lhHpU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rWEg2lhHpU .soc-item {
  margin: .5rem .3rem;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar {
    height: 77px;
  }
  .cid-rWEg2lhHpU .navbar.opened {
    height: auto;
  }
  .cid-rWEg2lhHpU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYEAHtwqTb {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #52e5e5;
}
.cid-rYEAHtwqTb .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-rYEAHtwqTb .text-block {
  position: relative;
  z-index: 0;
}
.cid-rYEAHtwqTb .box {
  width: 25%;
  height: 40%;
  background: #000000;
  position: absolute;
  top: 4%;
}
.cid-rYEAHtwqTb .box {
  left: 20%;
}
.cid-rYEAHtwqTb .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-rYEAHtwqTb .mbr-section-text,
.cid-rYEAHtwqTb .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-rYEAHtwqTb .text-box {
    display: none;
  }
  .cid-rYEAHtwqTb .mbr-section-title,
  .cid-rYEAHtwqTb .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-rYEAHtwqTb .box {
    display: none;
  }
  .cid-rYEAHtwqTb .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-rYEAHtwqTb .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYEAHtwqTb .text-box {
    writing-mode: bt-rl;
  }
}
.cid-rYEAHtwqTb .mbr-section-text {
  color: #000000;
}
.cid-rYEAHtwqTb .mbr-section-title {
  color: #ffffff;
}
.cid-rYED1SbtmG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-rYEOlCs0d8 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYEOlCs0d8 .mbr-text,
.cid-rYEOlCs0d8 .mbr-section-subtitle {
  color: #767676;
}
.cid-rYEOlCs0d8 .card-title {
  color: #66458e;
}
.cid-rYEOlCs0d8 .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rYEOlCs0d8 .mbr-section-subtitle,
  .cid-rYEOlCs0d8 .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYEOlCs0d8 .card .card-img span {
    background: none;
  }
}
.cid-rYEOlCs0d8 .card-title,
.cid-rYEOlCs0d8 .card-img {
  color: #fd4f06;
}
.cid-rYEVfXXPCF {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYEVfXXPCF .mbr-text,
.cid-rYEVfXXPCF .mbr-section-subtitle {
  color: #767676;
}
.cid-rYEVfXXPCF .card-title {
  color: #66458e;
}
.cid-rYEVfXXPCF .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rYEVfXXPCF .mbr-section-subtitle,
  .cid-rYEVfXXPCF .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYEVfXXPCF .card .card-img span {
    background: none;
  }
}
.cid-rYEVfXXPCF .card-title,
.cid-rYEVfXXPCF .card-img {
  color: #006999;
}
.cid-rYF7PNdaXS {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-rYF7PNdaXS .mbr-section-title {
  letter-spacing: .1em;
}
.cid-rYF7PNdaXS .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-rYF7PNdaXS .card-img span {
  font-size: 100px;
}
.cid-rYF7PNdaXS .mbr-text,
.cid-rYF7PNdaXS .mbr-section-btn {
  color: #efefef;
}
.cid-rYF7PNdaXS .mbr-section-title,
.cid-rYF7PNdaXS .card-img {
  text-align: center;
}
.cid-rYFgM0xUsS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rYFgM0xUsS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rYFgM0xUsS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rYFgM0xUsS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rYFgM0xUsS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rYFgM0xUsS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-rYFgM0xUsS .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-rYFgM0xUsS .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-rYFgM0xUsS .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-rYFgM0xUsS .mbr-gallery-filter ul {
  display: block;
}
.cid-rYFgM0xUsS .mbr-gallery-filter ul li {
  position: relative;
}
.cid-rYFgM0xUsS .mbr-gallery-filter li.active .btn,
.cid-rYFgM0xUsS .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-rYFgM0xUsS .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-rYFgM0xUsS .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-rYFgM0xUsS .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-rYFgM0xUsS .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-rYFgM0xUsS .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-rYFgM0xUsS .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-rYFgM0xUsS .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-rYFgM0xUsS .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-rYFgM0xUsS .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-rYFgM0xUsS .icon-focus:before {
  content: '\e95e';
}
.cid-rYFgM0xUsS .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-rYFgM0xUsS .mbr-section-title {
  margin: 0;
}
.cid-rYFgM0xUsS .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-rYFgM0xUsS .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-rYFqTvKELk {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-rYFqTvKELk .mbr-section-title {
  letter-spacing: .1em;
}
.cid-rYFqTvKELk .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-rYFqTvKELk .card-img span {
  font-size: 100px;
}
.cid-rYFqTvKELk .mbr-text,
.cid-rYFqTvKELk .mbr-section-btn {
  color: #efefef;
}
.cid-rYFqTvKELk .mbr-section-title,
.cid-rYFqTvKELk .card-img {
  text-align: center;
}
.cid-rYFsz22ocN {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-rYFsz22ocN .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-rYFsz22ocN .mbr-section-title {
  margin: 0;
}
.cid-rYFsz22ocN .card-img {
  text-align: center;
}
.cid-rYFsz22ocN .mbr-section-subtitle,
.cid-rYFsz22ocN .mbr-text {
  color: #8d97ad;
}
.cid-rYFsz22ocN .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-rYFsz22ocN .card-img,
  .cid-rYFsz22ocN .mbr-text,
  .cid-rYFsz22ocN .mbr-card-title,
  .cid-rYFsz22ocN .mbr-section-subtitle,
  .cid-rYFsz22ocN .mbr-section-title,
  .cid-rYFsz22ocN .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-rYFsz22ocN .row-item {
    margin-bottom: 2rem;
  }
}
.cid-rYFxreENXJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #006999;
}
.cid-rYFxreENXJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rYFxreENXJ .mbr-section-title {
  color: #f4f8fa;
}
.cid-rWEJKOipWR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .content {
    text-align: center;
  }
  .cid-rWEJKOipWR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR .logo-subtitle {
  color: #8d97ad;
}
.cid-rWEJKOipWR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWEJKOipWR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWEJKOipWR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWEJKOipWR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rWEJKOipWR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWEJKOipWR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWEJKOipWR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWEJKOipWR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWEJKOipWR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rWEJKOipWR .list-item {
  display: flex;
}
.cid-rWEJKOipWR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rWEJKOipWR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rWEJKOipWR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rWEJKOipWR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rWEJKOipWR .logo-subtitle,
.cid-rWEJKOipWR .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rWEJKOipWR .copyright > p {
  color: #ffffff;
}
.cid-rWEJKOipWR .column-title {
  color: #ffffff;
}
.cid-rWEJKOipWR P {
  color: #ffffff;
}
.cid-rWEJKOipWR .mbr-text {
  color: #ffffff;
}
.cid-rYHXn5WlR6 .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-rYHXn5WlR6 .nav-item,
.cid-rYHXn5WlR6 .nav-link,
.cid-rYHXn5WlR6 .navbar-caption {
  font-weight: normal;
}
.cid-rYHXn5WlR6 .nav-item:focus,
.cid-rYHXn5WlR6 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rYHXn5WlR6 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rYHXn5WlR6 .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-rYHXn5WlR6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rYHXn5WlR6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rYHXn5WlR6 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rYHXn5WlR6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rYHXn5WlR6 .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-rYHXn5WlR6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rYHXn5WlR6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rYHXn5WlR6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rYHXn5WlR6 .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rYHXn5WlR6 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rYHXn5WlR6 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rYHXn5WlR6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rYHXn5WlR6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rYHXn5WlR6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rYHXn5WlR6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rYHXn5WlR6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rYHXn5WlR6 .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-rYHXn5WlR6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rYHXn5WlR6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rYHXn5WlR6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rYHXn5WlR6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rYHXn5WlR6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rYHXn5WlR6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rYHXn5WlR6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rYHXn5WlR6 .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-rYHXn5WlR6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rYHXn5WlR6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rYHXn5WlR6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rYHXn5WlR6 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rYHXn5WlR6 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rYHXn5WlR6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rYHXn5WlR6 .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rYHXn5WlR6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rYHXn5WlR6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rYHXn5WlR6 .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-rYHXn5WlR6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rYHXn5WlR6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rYHXn5WlR6 .dropdown-item.active,
.cid-rYHXn5WlR6 .dropdown-item:active {
  background-color: transparent;
}
.cid-rYHXn5WlR6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rYHXn5WlR6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rYHXn5WlR6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rYHXn5WlR6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rYHXn5WlR6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rYHXn5WlR6 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rYHXn5WlR6 .navbar-buttons {
  text-align: center;
}
.cid-rYHXn5WlR6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rYHXn5WlR6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rYHXn5WlR6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rYHXn5WlR6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rYHXn5WlR6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rYHXn5WlR6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rYHXn5WlR6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYHXn5WlR6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rYHXn5WlR6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rYHXn5WlR6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYHXn5WlR6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rYHXn5WlR6 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rYHXn5WlR6 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rYHXn5WlR6 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rYHXn5WlR6 .soc-item {
  margin: .5rem .3rem;
}
.cid-rYHXn5WlR6 .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-rYHXn5WlR6 .navbar {
    height: 77px;
  }
  .cid-rYHXn5WlR6 .navbar.opened {
    height: auto;
  }
  .cid-rYHXn5WlR6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYHXn6u7Gq {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #188ef4;
}
.cid-rYHXn6u7Gq .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-rYHXn6u7Gq .text-block {
  position: relative;
  z-index: 0;
}
.cid-rYHXn6u7Gq .box {
  width: 25%;
  height: 40%;
  background: #000000;
  position: absolute;
  top: 4%;
}
.cid-rYHXn6u7Gq .box {
  left: 20%;
}
.cid-rYHXn6u7Gq .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-rYHXn6u7Gq .mbr-section-text,
.cid-rYHXn6u7Gq .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-rYHXn6u7Gq .text-box {
    display: none;
  }
  .cid-rYHXn6u7Gq .mbr-section-title,
  .cid-rYHXn6u7Gq .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-rYHXn6u7Gq .box {
    display: none;
  }
  .cid-rYHXn6u7Gq .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-rYHXn6u7Gq .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYHXn6u7Gq .text-box {
    writing-mode: bt-rl;
  }
}
.cid-rYHXn6u7Gq .mbr-section-text {
  color: #000000;
}
.cid-rYHXn6u7Gq .mbr-section-title {
  color: #ffffff;
}
.cid-rYHXn6RU2S {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-rYHXn70VNC {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYHXn70VNC .mbr-text,
.cid-rYHXn70VNC .mbr-section-subtitle {
  color: #767676;
}
.cid-rYHXn70VNC .card-title {
  color: #66458e;
}
.cid-rYHXn70VNC .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rYHXn70VNC .mbr-section-subtitle,
  .cid-rYHXn70VNC .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYHXn70VNC .card .card-img span {
    background: none;
  }
}
.cid-rYHXn70VNC .card-title,
.cid-rYHXn70VNC .card-img {
  color: #fd4f06;
}
.cid-rYHXn86amm {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYHXn86amm .mbr-text,
.cid-rYHXn86amm .mbr-section-subtitle {
  color: #767676;
}
.cid-rYHXn86amm .card-title {
  color: #66458e;
}
.cid-rYHXn86amm .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rYHXn86amm .mbr-section-subtitle,
  .cid-rYHXn86amm .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYHXn86amm .card .card-img span {
    background: none;
  }
}
.cid-rYHXn86amm .card-title,
.cid-rYHXn86amm .card-img {
  color: #006999;
}
.cid-rYHXn8Xnpe {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-rYHXn8Xnpe .mbr-section-title {
  letter-spacing: .1em;
}
.cid-rYHXn8Xnpe .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-rYHXn8Xnpe .card-img span {
  font-size: 100px;
}
.cid-rYHXn8Xnpe .mbr-text,
.cid-rYHXn8Xnpe .mbr-section-btn {
  color: #efefef;
}
.cid-rYHXn8Xnpe .mbr-section-title,
.cid-rYHXn8Xnpe .card-img {
  text-align: center;
}
.cid-rYHXn9yVl1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rYHXn9yVl1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rYHXn9yVl1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rYHXn9yVl1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rYHXn9yVl1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rYHXn9yVl1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-rYHXn9yVl1 .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-rYHXn9yVl1 .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-rYHXn9yVl1 .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-rYHXn9yVl1 .mbr-gallery-filter ul {
  display: block;
}
.cid-rYHXn9yVl1 .mbr-gallery-filter ul li {
  position: relative;
}
.cid-rYHXn9yVl1 .mbr-gallery-filter li.active .btn,
.cid-rYHXn9yVl1 .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-rYHXn9yVl1 .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-rYHXn9yVl1 .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-rYHXn9yVl1 .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-rYHXn9yVl1 .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-rYHXn9yVl1 .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-rYHXn9yVl1 .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-rYHXn9yVl1 .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-rYHXn9yVl1 .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-rYHXn9yVl1 .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-rYHXn9yVl1 .icon-focus:before {
  content: '\e95e';
}
.cid-rYHXn9yVl1 .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-rYHXn9yVl1 .mbr-section-title {
  margin: 0;
}
.cid-rYHXn9yVl1 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-rYHXn9yVl1 .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-rYHXnbgHqo {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-rYHXnbgHqo .mbr-section-title {
  letter-spacing: .1em;
}
.cid-rYHXnbgHqo .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-rYHXnbgHqo .card-img span {
  font-size: 100px;
}
.cid-rYHXnbgHqo .mbr-text,
.cid-rYHXnbgHqo .mbr-section-btn {
  color: #efefef;
}
.cid-rYHXnbgHqo .mbr-section-title,
.cid-rYHXnbgHqo .card-img {
  text-align: center;
}
.cid-rYHXnbOBWW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-rYHXnbOBWW .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-rYHXnbOBWW .mbr-section-title {
  margin: 0;
}
.cid-rYHXnbOBWW .card-img {
  text-align: center;
}
.cid-rYHXnbOBWW .mbr-section-subtitle,
.cid-rYHXnbOBWW .mbr-text {
  color: #8d97ad;
}
.cid-rYHXnbOBWW .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-rYHXnbOBWW .card-img,
  .cid-rYHXnbOBWW .mbr-text,
  .cid-rYHXnbOBWW .mbr-card-title,
  .cid-rYHXnbOBWW .mbr-section-subtitle,
  .cid-rYHXnbOBWW .mbr-section-title,
  .cid-rYHXnbOBWW .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-rYHXnbOBWW .row-item {
    margin-bottom: 2rem;
  }
}
.cid-rYJgaGkkQp {
  padding-top: 40px;
  padding-bottom: 45px;
  background-color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #006999);
}
.cid-rYJgaGkkQp .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-rYJgaGkkQp .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-rYJgaGkkQp .text-content {
  padding-right: 1.5rem;
}
.cid-rYJgaGkkQp .mbr-text {
  color: #8d97ad;
}
.cid-rYJgaGkkQp .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-rYJgaGkkQp .counter-container {
  padding-top: 1rem;
}
.cid-rYJgaGkkQp .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-rYJgaGkkQp .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rYJgaGkkQp .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #fd4f06;
}
@media (max-width: 991px) {
  .cid-rYJgaGkkQp .main-row {
    margin: 0;
  }
  .cid-rYJgaGkkQp .mbr-section-title,
  .cid-rYJgaGkkQp .mbr-text,
  .cid-rYJgaGkkQp .list,
  .cid-rYJgaGkkQp .mbr-section-btn {
    text-align: center !important;
  }
  .cid-rYJgaGkkQp .text-content {
    padding: 0;
  }
}
.cid-rYJgaGkkQp .mbr-text,
.cid-rYJgaGkkQp .mbr-section-btn {
  color: #000000;
}
.cid-rYHXnd5HaV {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rYHXnd5HaV .content {
    text-align: center;
  }
  .cid-rYHXnd5HaV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rYHXnd5HaV .logo-subtitle {
  color: #8d97ad;
}
.cid-rYHXnd5HaV .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rYHXnd5HaV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rYHXnd5HaV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rYHXnd5HaV .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rYHXnd5HaV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rYHXnd5HaV .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rYHXnd5HaV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rYHXnd5HaV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rYHXnd5HaV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rYHXnd5HaV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rYHXnd5HaV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rYHXnd5HaV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rYHXnd5HaV .list-item {
  display: flex;
}
.cid-rYHXnd5HaV .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rYHXnd5HaV ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rYHXnd5HaV ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rYHXnd5HaV ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rYHXnd5HaV .logo-subtitle,
.cid-rYHXnd5HaV .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rYHXnd5HaV .copyright > p {
  color: #ffffff;
}
.cid-rYHXnd5HaV .column-title {
  color: #ffffff;
}
.cid-rYHXnd5HaV P {
  color: #ffffff;
}
.cid-rYHXnd5HaV .mbr-text {
  color: #ffffff;
}
.cid-rZ6G9lG0N3 .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-rZ6G9lG0N3 .nav-item,
.cid-rZ6G9lG0N3 .nav-link,
.cid-rZ6G9lG0N3 .navbar-caption {
  font-weight: normal;
}
.cid-rZ6G9lG0N3 .nav-item:focus,
.cid-rZ6G9lG0N3 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rZ6G9lG0N3 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rZ6G9lG0N3 .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-rZ6G9lG0N3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rZ6G9lG0N3 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rZ6G9lG0N3 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rZ6G9lG0N3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rZ6G9lG0N3 .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-rZ6G9lG0N3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rZ6G9lG0N3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rZ6G9lG0N3 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rZ6G9lG0N3 .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rZ6G9lG0N3 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rZ6G9lG0N3 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rZ6G9lG0N3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rZ6G9lG0N3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rZ6G9lG0N3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rZ6G9lG0N3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rZ6G9lG0N3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rZ6G9lG0N3 .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-rZ6G9lG0N3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rZ6G9lG0N3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rZ6G9lG0N3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rZ6G9lG0N3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rZ6G9lG0N3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rZ6G9lG0N3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rZ6G9lG0N3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rZ6G9lG0N3 .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-rZ6G9lG0N3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rZ6G9lG0N3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rZ6G9lG0N3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rZ6G9lG0N3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rZ6G9lG0N3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rZ6G9lG0N3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rZ6G9lG0N3 .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rZ6G9lG0N3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rZ6G9lG0N3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rZ6G9lG0N3 .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-rZ6G9lG0N3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rZ6G9lG0N3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rZ6G9lG0N3 .dropdown-item.active,
.cid-rZ6G9lG0N3 .dropdown-item:active {
  background-color: transparent;
}
.cid-rZ6G9lG0N3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rZ6G9lG0N3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rZ6G9lG0N3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rZ6G9lG0N3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rZ6G9lG0N3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rZ6G9lG0N3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rZ6G9lG0N3 .navbar-buttons {
  text-align: center;
}
.cid-rZ6G9lG0N3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rZ6G9lG0N3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rZ6G9lG0N3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rZ6G9lG0N3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rZ6G9lG0N3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rZ6G9lG0N3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rZ6G9lG0N3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZ6G9lG0N3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rZ6G9lG0N3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rZ6G9lG0N3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZ6G9lG0N3 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rZ6G9lG0N3 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rZ6G9lG0N3 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rZ6G9lG0N3 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rZ6G9lG0N3 .soc-item {
  margin: .5rem .3rem;
}
.cid-rZ6G9lG0N3 .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-rZ6G9lG0N3 .navbar {
    height: 77px;
  }
  .cid-rZ6G9lG0N3 .navbar.opened {
    height: auto;
  }
  .cid-rZ6G9lG0N3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rZ6G9m9smc {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #00aae4;
}
.cid-rZ6G9m9smc .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-rZ6G9m9smc .text-block {
  position: relative;
  z-index: 0;
}
.cid-rZ6G9m9smc .box {
  width: 25%;
  height: 40%;
  background: #c54936;
  position: absolute;
  top: 4%;
}
.cid-rZ6G9m9smc .box {
  left: 20%;
}
.cid-rZ6G9m9smc .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-rZ6G9m9smc .mbr-section-text,
.cid-rZ6G9m9smc .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-rZ6G9m9smc .text-box {
    display: none;
  }
  .cid-rZ6G9m9smc .mbr-section-title,
  .cid-rZ6G9m9smc .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-rZ6G9m9smc .box {
    display: none;
  }
  .cid-rZ6G9m9smc .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-rZ6G9m9smc .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZ6G9m9smc .text-box {
    writing-mode: bt-rl;
  }
}
.cid-rZ6G9m9smc .mbr-section-text {
  color: #000000;
}
.cid-rZ6G9m9smc .mbr-section-title {
  color: #ffffff;
}
.cid-rZ6G9mtOCu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-rZ6G9mBgbH {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rZ6G9mBgbH .mbr-text,
.cid-rZ6G9mBgbH .mbr-section-subtitle {
  color: #767676;
}
.cid-rZ6G9mBgbH .card-title {
  color: #66458e;
}
.cid-rZ6G9mBgbH .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rZ6G9mBgbH .mbr-section-subtitle,
  .cid-rZ6G9mBgbH .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZ6G9mBgbH .card .card-img span {
    background: none;
  }
}
.cid-rZ6G9mBgbH .card-title,
.cid-rZ6G9mBgbH .card-img {
  color: #fd4f06;
}
.cid-rZ6G9n2OPE {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rZ6G9n2OPE .mbr-text,
.cid-rZ6G9n2OPE .mbr-section-subtitle {
  color: #767676;
}
.cid-rZ6G9n2OPE .card-title {
  color: #66458e;
}
.cid-rZ6G9n2OPE .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rZ6G9n2OPE .mbr-section-subtitle,
  .cid-rZ6G9n2OPE .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZ6G9n2OPE .card .card-img span {
    background: none;
  }
}
.cid-rZ6G9n2OPE .card-title,
.cid-rZ6G9n2OPE .card-img {
  color: #006999;
}
.cid-rZ6G9nGzq5 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-rZ6G9nGzq5 .mbr-section-title {
  letter-spacing: .1em;
}
.cid-rZ6G9nGzq5 .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-rZ6G9nGzq5 .card-img span {
  font-size: 100px;
}
.cid-rZ6G9nGzq5 .mbr-text,
.cid-rZ6G9nGzq5 .mbr-section-btn {
  color: #efefef;
}
.cid-rZ6G9nGzq5 .mbr-section-title,
.cid-rZ6G9nGzq5 .card-img {
  text-align: center;
}
.cid-rZ6G9o0oV8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rZ6G9o0oV8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rZ6G9o0oV8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rZ6G9o0oV8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rZ6G9o0oV8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rZ6G9o0oV8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-rZ6G9o0oV8 .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-rZ6G9o0oV8 .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-rZ6G9o0oV8 .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-rZ6G9o0oV8 .mbr-gallery-filter ul {
  display: block;
}
.cid-rZ6G9o0oV8 .mbr-gallery-filter ul li {
  position: relative;
}
.cid-rZ6G9o0oV8 .mbr-gallery-filter li.active .btn,
.cid-rZ6G9o0oV8 .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-rZ6G9o0oV8 .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-rZ6G9o0oV8 .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-rZ6G9o0oV8 .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-rZ6G9o0oV8 .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-rZ6G9o0oV8 .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-rZ6G9o0oV8 .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-rZ6G9o0oV8 .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-rZ6G9o0oV8 .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-rZ6G9o0oV8 .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-rZ6G9o0oV8 .icon-focus:before {
  content: '\e95e';
}
.cid-rZ6G9o0oV8 .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-rZ6G9o0oV8 .mbr-section-title {
  margin: 0;
}
.cid-rZ6G9o0oV8 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-rZ6G9o0oV8 .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-rZ6G9oFb0h {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-rZ6G9oFb0h .mbr-section-title {
  letter-spacing: .1em;
}
.cid-rZ6G9oFb0h .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-rZ6G9oFb0h .card-img span {
  font-size: 100px;
}
.cid-rZ6G9oFb0h .mbr-text,
.cid-rZ6G9oFb0h .mbr-section-btn {
  color: #efefef;
}
.cid-rZ6G9oFb0h .mbr-section-title,
.cid-rZ6G9oFb0h .card-img {
  text-align: center;
}
.cid-rZ6G9oXlCV {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-rZ6G9oXlCV .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-rZ6G9oXlCV .mbr-section-title {
  margin: 0;
}
.cid-rZ6G9oXlCV .card-img {
  text-align: center;
}
.cid-rZ6G9oXlCV .mbr-section-subtitle,
.cid-rZ6G9oXlCV .mbr-text {
  color: #8d97ad;
}
.cid-rZ6G9oXlCV .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-rZ6G9oXlCV .card-img,
  .cid-rZ6G9oXlCV .mbr-text,
  .cid-rZ6G9oXlCV .mbr-card-title,
  .cid-rZ6G9oXlCV .mbr-section-subtitle,
  .cid-rZ6G9oXlCV .mbr-section-title,
  .cid-rZ6G9oXlCV .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-rZ6G9oXlCV .row-item {
    margin-bottom: 2rem;
  }
}
.cid-rZ85qEdwaf {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rZ85qEdwaf .row {
  border-top: 1px solid #006999;
  padding-top: 2rem;
}
.cid-rZ85qEdwaf .mbr-text {
  line-height: 1.5;
  color: #656565;
}
.cid-rZ85qEdwaf .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rZ85qEdwaf .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-rZ85qEdwaf .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-rZ85qEdwaf .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-rZ85qEdwaf .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-rZ85qEdwaf .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-rZ85qEdwaf .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-rZ85qEdwaf .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-rZ85qEdwaf .mbr-section-title {
  text-align: left;
  color: #fd4f06;
}
.cid-rZ85NkPwQ7 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rZ85NkPwQ7 .mbr-text {
  line-height: 1.5;
  color: #656565;
}
.cid-rZ85NkPwQ7 .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rZ85NkPwQ7 .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-rZ85NkPwQ7 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-rZ85NkPwQ7 .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-rZ85NkPwQ7 .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-rZ85NkPwQ7 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-rZ85NkPwQ7 .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-rZ85NkPwQ7 .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-rZ85NkPwQ7 .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-rZ6G9q7wwN {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rZ6G9q7wwN .content {
    text-align: center;
  }
  .cid-rZ6G9q7wwN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rZ6G9q7wwN .logo-subtitle {
  color: #8d97ad;
}
.cid-rZ6G9q7wwN .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rZ6G9q7wwN .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rZ6G9q7wwN .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rZ6G9q7wwN .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rZ6G9q7wwN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rZ6G9q7wwN .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rZ6G9q7wwN .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rZ6G9q7wwN .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rZ6G9q7wwN .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rZ6G9q7wwN .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rZ6G9q7wwN .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rZ6G9q7wwN .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rZ6G9q7wwN .list-item {
  display: flex;
}
.cid-rZ6G9q7wwN .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rZ6G9q7wwN ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rZ6G9q7wwN ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rZ6G9q7wwN ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rZ6G9q7wwN .logo-subtitle,
.cid-rZ6G9q7wwN .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rZ6G9q7wwN .copyright > p {
  color: #ffffff;
}
.cid-rZ6G9q7wwN .column-title {
  color: #ffffff;
}
.cid-rZ6G9q7wwN P {
  color: #ffffff;
}
.cid-rZ6G9q7wwN .mbr-text {
  color: #ffffff;
}
.cid-rZ8nb8ejHh .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-rZ8nb8ejHh .nav-item,
.cid-rZ8nb8ejHh .nav-link,
.cid-rZ8nb8ejHh .navbar-caption {
  font-weight: normal;
}
.cid-rZ8nb8ejHh .nav-item:focus,
.cid-rZ8nb8ejHh .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rZ8nb8ejHh .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rZ8nb8ejHh .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-rZ8nb8ejHh .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rZ8nb8ejHh .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rZ8nb8ejHh .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rZ8nb8ejHh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rZ8nb8ejHh .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-rZ8nb8ejHh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rZ8nb8ejHh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rZ8nb8ejHh .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rZ8nb8ejHh .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rZ8nb8ejHh .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rZ8nb8ejHh .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rZ8nb8ejHh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rZ8nb8ejHh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rZ8nb8ejHh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rZ8nb8ejHh .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rZ8nb8ejHh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rZ8nb8ejHh .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-rZ8nb8ejHh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rZ8nb8ejHh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rZ8nb8ejHh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rZ8nb8ejHh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rZ8nb8ejHh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rZ8nb8ejHh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rZ8nb8ejHh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rZ8nb8ejHh .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-rZ8nb8ejHh .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rZ8nb8ejHh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rZ8nb8ejHh .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rZ8nb8ejHh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rZ8nb8ejHh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rZ8nb8ejHh .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rZ8nb8ejHh .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rZ8nb8ejHh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rZ8nb8ejHh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rZ8nb8ejHh .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-rZ8nb8ejHh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rZ8nb8ejHh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rZ8nb8ejHh .dropdown-item.active,
.cid-rZ8nb8ejHh .dropdown-item:active {
  background-color: transparent;
}
.cid-rZ8nb8ejHh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rZ8nb8ejHh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rZ8nb8ejHh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rZ8nb8ejHh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rZ8nb8ejHh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rZ8nb8ejHh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rZ8nb8ejHh .navbar-buttons {
  text-align: center;
}
.cid-rZ8nb8ejHh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rZ8nb8ejHh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rZ8nb8ejHh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rZ8nb8ejHh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rZ8nb8ejHh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rZ8nb8ejHh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rZ8nb8ejHh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZ8nb8ejHh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rZ8nb8ejHh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rZ8nb8ejHh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZ8nb8ejHh .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rZ8nb8ejHh a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rZ8nb8ejHh .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rZ8nb8ejHh .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rZ8nb8ejHh .soc-item {
  margin: .5rem .3rem;
}
.cid-rZ8nb8ejHh .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-rZ8nb8ejHh .navbar {
    height: 77px;
  }
  .cid-rZ8nb8ejHh .navbar.opened {
    height: auto;
  }
  .cid-rZ8nb8ejHh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rZ8nb8Zsdi {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4ae72;
}
.cid-rZ8nb8Zsdi .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-rZ8nb8Zsdi .text-block {
  position: relative;
  z-index: 0;
}
.cid-rZ8nb8Zsdi .box {
  width: 25%;
  height: 40%;
  background: #188ef4;
  position: absolute;
  top: 4%;
}
.cid-rZ8nb8Zsdi .box {
  left: 20%;
}
.cid-rZ8nb8Zsdi .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-rZ8nb8Zsdi .mbr-section-text,
.cid-rZ8nb8Zsdi .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-rZ8nb8Zsdi .text-box {
    display: none;
  }
  .cid-rZ8nb8Zsdi .mbr-section-title,
  .cid-rZ8nb8Zsdi .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-rZ8nb8Zsdi .box {
    display: none;
  }
  .cid-rZ8nb8Zsdi .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-rZ8nb8Zsdi .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZ8nb8Zsdi .text-box {
    writing-mode: bt-rl;
  }
}
.cid-rZ8nb8Zsdi .mbr-section-text {
  color: #000000;
}
.cid-rZ8nb8Zsdi .mbr-section-title {
  color: #ffffff;
}
.cid-rZ8nb9FWTV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-rZ8nb9RUAM {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rZ8nb9RUAM .mbr-text,
.cid-rZ8nb9RUAM .mbr-section-subtitle {
  color: #767676;
}
.cid-rZ8nb9RUAM .card-title {
  color: #66458e;
}
.cid-rZ8nb9RUAM .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rZ8nb9RUAM .mbr-section-subtitle,
  .cid-rZ8nb9RUAM .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZ8nb9RUAM .card .card-img span {
    background: none;
  }
}
.cid-rZ8nb9RUAM .card-title,
.cid-rZ8nb9RUAM .card-img {
  color: #fd4f06;
}
.cid-rZ8nbaz7VI {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rZ8nbaz7VI .mbr-text,
.cid-rZ8nbaz7VI .mbr-section-subtitle {
  color: #767676;
}
.cid-rZ8nbaz7VI .card-title {
  color: #66458e;
}
.cid-rZ8nbaz7VI .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rZ8nbaz7VI .mbr-section-subtitle,
  .cid-rZ8nbaz7VI .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZ8nbaz7VI .card .card-img span {
    background: none;
  }
}
.cid-rZ8nbaz7VI .card-title,
.cid-rZ8nbaz7VI .card-img {
  color: #006999;
}
.cid-rZ8nbbgew8 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-rZ8nbbgew8 .mbr-section-title {
  letter-spacing: .1em;
}
.cid-rZ8nbbgew8 .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-rZ8nbbgew8 .card-img span {
  font-size: 100px;
}
.cid-rZ8nbbgew8 .mbr-text,
.cid-rZ8nbbgew8 .mbr-section-btn {
  color: #efefef;
}
.cid-rZ8nbbgew8 .mbr-section-title,
.cid-rZ8nbbgew8 .card-img {
  text-align: center;
}
.cid-rZ8nbbKhbx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rZ8nbbKhbx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rZ8nbbKhbx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rZ8nbbKhbx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rZ8nbbKhbx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rZ8nbbKhbx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-rZ8nbbKhbx .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-rZ8nbbKhbx .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-rZ8nbbKhbx .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-rZ8nbbKhbx .mbr-gallery-filter ul {
  display: block;
}
.cid-rZ8nbbKhbx .mbr-gallery-filter ul li {
  position: relative;
}
.cid-rZ8nbbKhbx .mbr-gallery-filter li.active .btn,
.cid-rZ8nbbKhbx .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-rZ8nbbKhbx .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-rZ8nbbKhbx .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-rZ8nbbKhbx .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-rZ8nbbKhbx .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-rZ8nbbKhbx .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-rZ8nbbKhbx .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-rZ8nbbKhbx .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-rZ8nbbKhbx .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-rZ8nbbKhbx .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-rZ8nbbKhbx .icon-focus:before {
  content: '\e95e';
}
.cid-rZ8nbbKhbx .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-rZ8nbbKhbx .mbr-section-title {
  margin: 0;
}
.cid-rZ8nbbKhbx .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-rZ8nbbKhbx .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-rZ8nbeiBG1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rZ8nbeiBG1 .content {
    text-align: center;
  }
  .cid-rZ8nbeiBG1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rZ8nbeiBG1 .logo-subtitle {
  color: #8d97ad;
}
.cid-rZ8nbeiBG1 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rZ8nbeiBG1 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rZ8nbeiBG1 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rZ8nbeiBG1 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rZ8nbeiBG1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rZ8nbeiBG1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rZ8nbeiBG1 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rZ8nbeiBG1 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rZ8nbeiBG1 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rZ8nbeiBG1 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rZ8nbeiBG1 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rZ8nbeiBG1 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rZ8nbeiBG1 .list-item {
  display: flex;
}
.cid-rZ8nbeiBG1 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rZ8nbeiBG1 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rZ8nbeiBG1 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rZ8nbeiBG1 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rZ8nbeiBG1 .logo-subtitle,
.cid-rZ8nbeiBG1 .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rZ8nbeiBG1 .copyright > p {
  color: #ffffff;
}
.cid-rZ8nbeiBG1 .column-title {
  color: #ffffff;
}
.cid-rZ8nbeiBG1 P {
  color: #ffffff;
}
.cid-rZ8nbeiBG1 .mbr-text {
  color: #ffffff;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .nav-item,
.cid-rWEg2lhHpU .nav-link,
.cid-rWEg2lhHpU .navbar-caption {
  font-weight: normal;
}
.cid-rWEg2lhHpU .nav-item:focus,
.cid-rWEg2lhHpU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rWEg2lhHpU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rWEg2lhHpU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rWEg2lhHpU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rWEg2lhHpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWEg2lhHpU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rWEg2lhHpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWEg2lhHpU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rWEg2lhHpU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rWEg2lhHpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWEg2lhHpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rWEg2lhHpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWEg2lhHpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rWEg2lhHpU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rWEg2lhHpU .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWEg2lhHpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWEg2lhHpU .dropdown-item.active,
.cid-rWEg2lhHpU .dropdown-item:active {
  background-color: transparent;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rWEg2lhHpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWEg2lhHpU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWEg2lhHpU .navbar-buttons {
  text-align: center;
}
.cid-rWEg2lhHpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWEg2lhHpU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWEg2lhHpU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rWEg2lhHpU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rWEg2lhHpU .soc-item {
  margin: .5rem .3rem;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar {
    height: 77px;
  }
  .cid-rWEg2lhHpU .navbar.opened {
    height: auto;
  }
  .cid-rWEg2lhHpU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rZ8R8LCgUM {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ff4f7b;
}
.cid-rZ8R8LCgUM .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-rZ8R8LCgUM .text-block {
  position: relative;
  z-index: 0;
}
.cid-rZ8R8LCgUM .box {
  width: 25%;
  height: 40%;
  background: #f1ab00;
  position: absolute;
  top: 4%;
}
.cid-rZ8R8LCgUM .box {
  left: 20%;
}
.cid-rZ8R8LCgUM .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-rZ8R8LCgUM .mbr-section-text,
.cid-rZ8R8LCgUM .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-rZ8R8LCgUM .text-box {
    display: none;
  }
  .cid-rZ8R8LCgUM .mbr-section-title,
  .cid-rZ8R8LCgUM .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-rZ8R8LCgUM .box {
    display: none;
  }
  .cid-rZ8R8LCgUM .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-rZ8R8LCgUM .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZ8R8LCgUM .text-box {
    writing-mode: bt-rl;
  }
}
.cid-rZ8R8LCgUM .mbr-section-text {
  color: #000000;
}
.cid-rZ8R8LCgUM .mbr-section-title {
  color: #ffffff;
}
.cid-rZ8Rx3ah6g {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-rZ8RyWgUhw {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rZ8RyWgUhw .mbr-text,
.cid-rZ8RyWgUhw .mbr-section-subtitle {
  color: #767676;
}
.cid-rZ8RyWgUhw .card-title {
  color: #66458e;
}
.cid-rZ8RyWgUhw .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rZ8RyWgUhw .mbr-section-subtitle,
  .cid-rZ8RyWgUhw .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZ8RyWgUhw .card .card-img span {
    background: none;
  }
}
.cid-rZ8RyWgUhw .card-title,
.cid-rZ8RyWgUhw .card-img {
  color: #fd4f06;
}
.cid-rZ8Uwn2E9O {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rZ8Uwn2E9O .mbr-text,
.cid-rZ8Uwn2E9O .mbr-section-subtitle {
  color: #767676;
}
.cid-rZ8Uwn2E9O .card-title {
  color: #66458e;
}
.cid-rZ8Uwn2E9O .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rZ8Uwn2E9O .mbr-section-subtitle,
  .cid-rZ8Uwn2E9O .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZ8Uwn2E9O .card .card-img span {
    background: none;
  }
}
.cid-rZ8Uwn2E9O .card-title,
.cid-rZ8Uwn2E9O .card-img {
  color: #006999;
}
.cid-rZ8TmvTYUg {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-rZ8TmvTYUg .mbr-section-title {
  letter-spacing: .1em;
}
.cid-rZ8TmvTYUg .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-rZ8TmvTYUg .card-img span {
  font-size: 100px;
}
.cid-rZ8TmvTYUg .mbr-text,
.cid-rZ8TmvTYUg .mbr-section-btn {
  color: #efefef;
}
.cid-rZ8TmvTYUg .mbr-section-title,
.cid-rZ8TmvTYUg .card-img {
  text-align: center;
}
.cid-rZ8Tn4rwEC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rZ8Tn4rwEC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rZ8Tn4rwEC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rZ8Tn4rwEC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rZ8Tn4rwEC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rZ8Tn4rwEC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-rZ8Tn4rwEC .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-rZ8Tn4rwEC .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-rZ8Tn4rwEC .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-rZ8Tn4rwEC .mbr-gallery-filter ul {
  display: block;
}
.cid-rZ8Tn4rwEC .mbr-gallery-filter ul li {
  position: relative;
}
.cid-rZ8Tn4rwEC .mbr-gallery-filter li.active .btn,
.cid-rZ8Tn4rwEC .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-rZ8Tn4rwEC .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-rZ8Tn4rwEC .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-rZ8Tn4rwEC .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-rZ8Tn4rwEC .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-rZ8Tn4rwEC .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-rZ8Tn4rwEC .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-rZ8Tn4rwEC .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-rZ8Tn4rwEC .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-rZ8Tn4rwEC .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-rZ8Tn4rwEC .icon-focus:before {
  content: '\e95e';
}
.cid-rZ8Tn4rwEC .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-rZ8Tn4rwEC .mbr-section-title {
  margin: 0;
}
.cid-rZ8Tn4rwEC .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-rZ8Tn4rwEC .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-rWEJKOipWR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .content {
    text-align: center;
  }
  .cid-rWEJKOipWR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR .logo-subtitle {
  color: #8d97ad;
}
.cid-rWEJKOipWR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWEJKOipWR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWEJKOipWR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWEJKOipWR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rWEJKOipWR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWEJKOipWR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWEJKOipWR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWEJKOipWR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWEJKOipWR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rWEJKOipWR .list-item {
  display: flex;
}
.cid-rWEJKOipWR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rWEJKOipWR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rWEJKOipWR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rWEJKOipWR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rWEJKOipWR .logo-subtitle,
.cid-rWEJKOipWR .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rWEJKOipWR .copyright > p {
  color: #ffffff;
}
.cid-rWEJKOipWR .column-title {
  color: #ffffff;
}
.cid-rWEJKOipWR P {
  color: #ffffff;
}
.cid-rWEJKOipWR .mbr-text {
  color: #ffffff;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .nav-item,
.cid-rWEg2lhHpU .nav-link,
.cid-rWEg2lhHpU .navbar-caption {
  font-weight: normal;
}
.cid-rWEg2lhHpU .nav-item:focus,
.cid-rWEg2lhHpU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rWEg2lhHpU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rWEg2lhHpU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rWEg2lhHpU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rWEg2lhHpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWEg2lhHpU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rWEg2lhHpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWEg2lhHpU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rWEg2lhHpU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rWEg2lhHpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWEg2lhHpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rWEg2lhHpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWEg2lhHpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rWEg2lhHpU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rWEg2lhHpU .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWEg2lhHpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWEg2lhHpU .dropdown-item.active,
.cid-rWEg2lhHpU .dropdown-item:active {
  background-color: transparent;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rWEg2lhHpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWEg2lhHpU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWEg2lhHpU .navbar-buttons {
  text-align: center;
}
.cid-rWEg2lhHpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWEg2lhHpU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWEg2lhHpU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rWEg2lhHpU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rWEg2lhHpU .soc-item {
  margin: .5rem .3rem;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar {
    height: 77px;
  }
  .cid-rWEg2lhHpU .navbar.opened {
    height: auto;
  }
  .cid-rWEg2lhHpU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rZhdczg8nr {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f1ab00;
}
.cid-rZhdczg8nr .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-rZhdczg8nr .text-block {
  position: relative;
  z-index: 0;
}
.cid-rZhdczg8nr .box {
  width: 25%;
  height: 40%;
  background: #fd4f06;
  position: absolute;
  top: 4%;
}
.cid-rZhdczg8nr .box {
  left: 20%;
}
.cid-rZhdczg8nr .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-rZhdczg8nr .mbr-section-text,
.cid-rZhdczg8nr .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-rZhdczg8nr .text-box {
    display: none;
  }
  .cid-rZhdczg8nr .mbr-section-title,
  .cid-rZhdczg8nr .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-rZhdczg8nr .box {
    display: none;
  }
  .cid-rZhdczg8nr .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-rZhdczg8nr .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZhdczg8nr .text-box {
    writing-mode: bt-rl;
  }
}
.cid-rZhdczg8nr .mbr-section-text {
  color: #000000;
}
.cid-rZhdczg8nr .mbr-section-title {
  color: #ffffff;
}
.cid-rZhddcAiOt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-rZhk3Ibbl8 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rZhk3Ibbl8 .mbr-text,
.cid-rZhk3Ibbl8 .mbr-section-subtitle {
  color: #767676;
}
.cid-rZhk3Ibbl8 .card-title {
  color: #66458e;
}
.cid-rZhk3Ibbl8 .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rZhk3Ibbl8 .mbr-section-subtitle,
  .cid-rZhk3Ibbl8 .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZhk3Ibbl8 .card .card-img span {
    background: none;
  }
}
.cid-rZhk3Ibbl8 .card-title,
.cid-rZhk3Ibbl8 .card-img {
  color: #fd4f06;
}
.cid-rZhkaPao2u {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rZhkaPao2u .mbr-text,
.cid-rZhkaPao2u .mbr-section-subtitle {
  color: #767676;
}
.cid-rZhkaPao2u .card-title {
  color: #66458e;
}
.cid-rZhkaPao2u .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rZhkaPao2u .mbr-section-subtitle,
  .cid-rZhkaPao2u .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZhkaPao2u .card .card-img span {
    background: none;
  }
}
.cid-rZhkaPao2u .card-title,
.cid-rZhkaPao2u .card-img {
  color: #006999;
}
.cid-rZhkKfAhhJ {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-rZhkKfAhhJ .mbr-section-title {
  letter-spacing: .1em;
}
.cid-rZhkKfAhhJ .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-rZhkKfAhhJ .card-img span {
  font-size: 100px;
}
.cid-rZhkKfAhhJ .mbr-text,
.cid-rZhkKfAhhJ .mbr-section-btn {
  color: #efefef;
}
.cid-rZhkKfAhhJ .mbr-section-title,
.cid-rZhkKfAhhJ .card-img {
  text-align: center;
}
.cid-rZhkKZWIRI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rZhkKZWIRI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rZhkKZWIRI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rZhkKZWIRI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rZhkKZWIRI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rZhkKZWIRI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-rZhkKZWIRI .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-rZhkKZWIRI .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-rZhkKZWIRI .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-rZhkKZWIRI .mbr-gallery-filter ul {
  display: block;
}
.cid-rZhkKZWIRI .mbr-gallery-filter ul li {
  position: relative;
}
.cid-rZhkKZWIRI .mbr-gallery-filter li.active .btn,
.cid-rZhkKZWIRI .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-rZhkKZWIRI .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-rZhkKZWIRI .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-rZhkKZWIRI .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-rZhkKZWIRI .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-rZhkKZWIRI .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-rZhkKZWIRI .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-rZhkKZWIRI .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-rZhkKZWIRI .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-rZhkKZWIRI .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-rZhkKZWIRI .icon-focus:before {
  content: '\e95e';
}
.cid-rZhkKZWIRI .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-rZhkKZWIRI .mbr-section-title {
  margin: 0;
}
.cid-rZhkKZWIRI .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-rZhkKZWIRI .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-rWEJKOipWR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .content {
    text-align: center;
  }
  .cid-rWEJKOipWR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR .logo-subtitle {
  color: #8d97ad;
}
.cid-rWEJKOipWR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWEJKOipWR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWEJKOipWR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWEJKOipWR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rWEJKOipWR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWEJKOipWR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWEJKOipWR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWEJKOipWR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWEJKOipWR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rWEJKOipWR .list-item {
  display: flex;
}
.cid-rWEJKOipWR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rWEJKOipWR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rWEJKOipWR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rWEJKOipWR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rWEJKOipWR .logo-subtitle,
.cid-rWEJKOipWR .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rWEJKOipWR .copyright > p {
  color: #ffffff;
}
.cid-rWEJKOipWR .column-title {
  color: #ffffff;
}
.cid-rWEJKOipWR P {
  color: #ffffff;
}
.cid-rWEJKOipWR .mbr-text {
  color: #ffffff;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .nav-item,
.cid-rWEg2lhHpU .nav-link,
.cid-rWEg2lhHpU .navbar-caption {
  font-weight: normal;
}
.cid-rWEg2lhHpU .nav-item:focus,
.cid-rWEg2lhHpU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rWEg2lhHpU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rWEg2lhHpU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rWEg2lhHpU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rWEg2lhHpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWEg2lhHpU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rWEg2lhHpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWEg2lhHpU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rWEg2lhHpU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rWEg2lhHpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWEg2lhHpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rWEg2lhHpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWEg2lhHpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rWEg2lhHpU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rWEg2lhHpU .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWEg2lhHpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWEg2lhHpU .dropdown-item.active,
.cid-rWEg2lhHpU .dropdown-item:active {
  background-color: transparent;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rWEg2lhHpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWEg2lhHpU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWEg2lhHpU .navbar-buttons {
  text-align: center;
}
.cid-rWEg2lhHpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWEg2lhHpU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWEg2lhHpU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rWEg2lhHpU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rWEg2lhHpU .soc-item {
  margin: .5rem .3rem;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar {
    height: 77px;
  }
  .cid-rWEg2lhHpU .navbar.opened {
    height: auto;
  }
  .cid-rWEg2lhHpU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rZhpH420yk {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f1ab00;
}
.cid-rZhpH420yk .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-rZhpH420yk .text-block {
  position: relative;
  z-index: 0;
}
.cid-rZhpH420yk .box {
  width: 25%;
  height: 40%;
  background: #51aafa;
  position: absolute;
  top: 4%;
}
.cid-rZhpH420yk .box {
  left: 20%;
}
.cid-rZhpH420yk .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-rZhpH420yk .mbr-section-text,
.cid-rZhpH420yk .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-rZhpH420yk .text-box {
    display: none;
  }
  .cid-rZhpH420yk .mbr-section-title,
  .cid-rZhpH420yk .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-rZhpH420yk .box {
    display: none;
  }
  .cid-rZhpH420yk .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-rZhpH420yk .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZhpH420yk .text-box {
    writing-mode: bt-rl;
  }
}
.cid-rZhpH420yk .mbr-section-text {
  color: #000000;
}
.cid-rZhpH420yk .mbr-section-title {
  color: #ffffff;
}
.cid-rZhq9WkRun {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-rZhqaKuiTk {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rZhqaKuiTk .mbr-text,
.cid-rZhqaKuiTk .mbr-section-subtitle {
  color: #767676;
}
.cid-rZhqaKuiTk .card-title {
  color: #66458e;
}
.cid-rZhqaKuiTk .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rZhqaKuiTk .mbr-section-subtitle,
  .cid-rZhqaKuiTk .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZhqaKuiTk .card .card-img span {
    background: none;
  }
}
.cid-rZhqaKuiTk .card-title,
.cid-rZhqaKuiTk .card-img {
  color: #fd4f06;
}
.cid-rZhrjhpsxT {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rZhrjhpsxT .mbr-text,
.cid-rZhrjhpsxT .mbr-section-subtitle {
  color: #767676;
}
.cid-rZhrjhpsxT .card-title {
  color: #66458e;
}
.cid-rZhrjhpsxT .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rZhrjhpsxT .mbr-section-subtitle,
  .cid-rZhrjhpsxT .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZhrjhpsxT .card .card-img span {
    background: none;
  }
}
.cid-rZhrjhpsxT .card-title,
.cid-rZhrjhpsxT .card-img {
  color: #006999;
}
.cid-rZhrOou5Sd {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-rZhrOou5Sd .mbr-section-title {
  letter-spacing: .1em;
}
.cid-rZhrOou5Sd .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-rZhrOou5Sd .card-img span {
  font-size: 100px;
}
.cid-rZhrOou5Sd .mbr-text,
.cid-rZhrOou5Sd .mbr-section-btn {
  color: #efefef;
}
.cid-rZhrOou5Sd .mbr-section-title,
.cid-rZhrOou5Sd .card-img {
  text-align: center;
}
.cid-rZhrP46sdE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-rZhrP46sdE .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-rZhrP46sdE .mbr-section-title {
  margin: 0;
}
.cid-rZhrP46sdE .card-img {
  text-align: center;
}
.cid-rZhrP46sdE .mbr-section-subtitle,
.cid-rZhrP46sdE .mbr-text {
  color: #8d97ad;
}
.cid-rZhrP46sdE .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-rZhrP46sdE .card-img,
  .cid-rZhrP46sdE .mbr-text,
  .cid-rZhrP46sdE .mbr-card-title,
  .cid-rZhrP46sdE .mbr-section-subtitle,
  .cid-rZhrP46sdE .mbr-section-title,
  .cid-rZhrP46sdE .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-rZhrP46sdE .row-item {
    margin-bottom: 2rem;
  }
}
.cid-rZht9XOxOn {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-rZht9XOxOn .row {
  border-top: 1px solid #006999;
  padding-top: 2rem;
}
.cid-rZht9XOxOn .mbr-text {
  line-height: 1.5;
  color: #656565;
}
.cid-rZht9XOxOn .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rZht9XOxOn .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-rZht9XOxOn .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-rZht9XOxOn .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-rZht9XOxOn .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-rZht9XOxOn .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-rZht9XOxOn .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-rZht9XOxOn .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-rZht9XOxOn .mbr-section-title {
  text-align: left;
  color: #fd4f06;
}
.cid-rWEJKOipWR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .content {
    text-align: center;
  }
  .cid-rWEJKOipWR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR .logo-subtitle {
  color: #8d97ad;
}
.cid-rWEJKOipWR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWEJKOipWR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWEJKOipWR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWEJKOipWR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rWEJKOipWR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWEJKOipWR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWEJKOipWR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWEJKOipWR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWEJKOipWR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rWEJKOipWR .list-item {
  display: flex;
}
.cid-rWEJKOipWR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rWEJKOipWR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rWEJKOipWR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rWEJKOipWR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rWEJKOipWR .logo-subtitle,
.cid-rWEJKOipWR .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rWEJKOipWR .copyright > p {
  color: #ffffff;
}
.cid-rWEJKOipWR .column-title {
  color: #ffffff;
}
.cid-rWEJKOipWR P {
  color: #ffffff;
}
.cid-rWEJKOipWR .mbr-text {
  color: #ffffff;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .nav-item,
.cid-rWEg2lhHpU .nav-link,
.cid-rWEg2lhHpU .navbar-caption {
  font-weight: normal;
}
.cid-rWEg2lhHpU .nav-item:focus,
.cid-rWEg2lhHpU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rWEg2lhHpU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rWEg2lhHpU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rWEg2lhHpU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rWEg2lhHpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWEg2lhHpU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rWEg2lhHpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWEg2lhHpU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rWEg2lhHpU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rWEg2lhHpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWEg2lhHpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rWEg2lhHpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWEg2lhHpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rWEg2lhHpU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rWEg2lhHpU .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWEg2lhHpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWEg2lhHpU .dropdown-item.active,
.cid-rWEg2lhHpU .dropdown-item:active {
  background-color: transparent;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rWEg2lhHpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWEg2lhHpU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWEg2lhHpU .navbar-buttons {
  text-align: center;
}
.cid-rWEg2lhHpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWEg2lhHpU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWEg2lhHpU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rWEg2lhHpU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rWEg2lhHpU .soc-item {
  margin: .5rem .3rem;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar {
    height: 77px;
  }
  .cid-rWEg2lhHpU .navbar.opened {
    height: auto;
  }
  .cid-rWEg2lhHpU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rZhuSZu2Dz {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #72d744;
}
.cid-rZhuSZu2Dz .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-rZhuSZu2Dz .text-block {
  position: relative;
  z-index: 0;
}
.cid-rZhuSZu2Dz .box {
  width: 25%;
  height: 40%;
  background: #188ef4;
  position: absolute;
  top: 4%;
}
.cid-rZhuSZu2Dz .box {
  left: 20%;
}
.cid-rZhuSZu2Dz .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-rZhuSZu2Dz .mbr-section-text,
.cid-rZhuSZu2Dz .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-rZhuSZu2Dz .text-box {
    display: none;
  }
  .cid-rZhuSZu2Dz .mbr-section-title,
  .cid-rZhuSZu2Dz .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-rZhuSZu2Dz .box {
    display: none;
  }
  .cid-rZhuSZu2Dz .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-rZhuSZu2Dz .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZhuSZu2Dz .text-box {
    writing-mode: bt-rl;
  }
}
.cid-rZhuSZu2Dz .mbr-section-text {
  color: #000000;
}
.cid-rZhuSZu2Dz .mbr-section-title {
  color: #ffffff;
}
.cid-rZhvL2poYY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-rZhvM7mtBz {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rZhvM7mtBz .mbr-text,
.cid-rZhvM7mtBz .mbr-section-subtitle {
  color: #767676;
}
.cid-rZhvM7mtBz .card-title {
  color: #66458e;
}
.cid-rZhvM7mtBz .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rZhvM7mtBz .mbr-section-subtitle,
  .cid-rZhvM7mtBz .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZhvM7mtBz .card .card-img span {
    background: none;
  }
}
.cid-rZhvM7mtBz .card-title,
.cid-rZhvM7mtBz .card-img {
  color: #fd4f06;
}
.cid-rZhw1AHFes {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rZhw1AHFes .mbr-text,
.cid-rZhw1AHFes .mbr-section-subtitle {
  color: #767676;
}
.cid-rZhw1AHFes .card-title {
  color: #66458e;
}
.cid-rZhw1AHFes .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rZhw1AHFes .mbr-section-subtitle,
  .cid-rZhw1AHFes .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZhw1AHFes .card .card-img span {
    background: none;
  }
}
.cid-rZhw1AHFes .card-title,
.cid-rZhw1AHFes .card-img {
  color: #006999;
}
.cid-rZhwucTepP {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-rZhwucTepP .mbr-section-title {
  letter-spacing: .1em;
}
.cid-rZhwucTepP .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-rZhwucTepP .card-img span {
  font-size: 100px;
}
.cid-rZhwucTepP .mbr-text,
.cid-rZhwucTepP .mbr-section-btn {
  color: #efefef;
}
.cid-rZhwucTepP .mbr-section-title,
.cid-rZhwucTepP .card-img {
  text-align: center;
}
.cid-rZhwv4Wc3K {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rZhwv4Wc3K .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rZhwv4Wc3K .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rZhwv4Wc3K .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rZhwv4Wc3K .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rZhwv4Wc3K .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-rZhwv4Wc3K .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-rZhwv4Wc3K .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-rZhwv4Wc3K .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-rZhwv4Wc3K .mbr-gallery-filter ul {
  display: block;
}
.cid-rZhwv4Wc3K .mbr-gallery-filter ul li {
  position: relative;
}
.cid-rZhwv4Wc3K .mbr-gallery-filter li.active .btn,
.cid-rZhwv4Wc3K .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-rZhwv4Wc3K .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-rZhwv4Wc3K .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-rZhwv4Wc3K .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-rZhwv4Wc3K .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-rZhwv4Wc3K .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-rZhwv4Wc3K .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-rZhwv4Wc3K .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-rZhwv4Wc3K .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-rZhwv4Wc3K .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-rZhwv4Wc3K .icon-focus:before {
  content: '\e95e';
}
.cid-rZhwv4Wc3K .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-rZhwv4Wc3K .mbr-section-title {
  margin: 0;
}
.cid-rZhwv4Wc3K .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-rZhwv4Wc3K .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-rZhO8VIYrw {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-rZhO8VIYrw .mbr-section-title {
  letter-spacing: .1em;
}
.cid-rZhO8VIYrw .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-rZhO8VIYrw .card-img span {
  font-size: 100px;
}
.cid-rZhO8VIYrw .mbr-text,
.cid-rZhO8VIYrw .mbr-section-btn {
  color: #efefef;
}
.cid-rZhO8VIYrw .mbr-section-title,
.cid-rZhO8VIYrw .card-img {
  text-align: center;
}
.cid-rZhO9xDlJU {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-rZhO9xDlJU .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-rZhO9xDlJU .mbr-section-title {
  margin: 0;
}
.cid-rZhO9xDlJU .card-img {
  text-align: center;
}
.cid-rZhO9xDlJU .mbr-section-subtitle,
.cid-rZhO9xDlJU .mbr-text {
  color: #8d97ad;
}
.cid-rZhO9xDlJU .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-rZhO9xDlJU .card-img,
  .cid-rZhO9xDlJU .mbr-text,
  .cid-rZhO9xDlJU .mbr-card-title,
  .cid-rZhO9xDlJU .mbr-section-subtitle,
  .cid-rZhO9xDlJU .mbr-section-title,
  .cid-rZhO9xDlJU .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-rZhO9xDlJU .row-item {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .content {
    text-align: center;
  }
  .cid-rWEJKOipWR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR .logo-subtitle {
  color: #8d97ad;
}
.cid-rWEJKOipWR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWEJKOipWR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWEJKOipWR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWEJKOipWR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rWEJKOipWR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWEJKOipWR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWEJKOipWR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWEJKOipWR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWEJKOipWR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rWEJKOipWR .list-item {
  display: flex;
}
.cid-rWEJKOipWR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rWEJKOipWR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rWEJKOipWR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rWEJKOipWR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rWEJKOipWR .logo-subtitle,
.cid-rWEJKOipWR .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rWEJKOipWR .copyright > p {
  color: #ffffff;
}
.cid-rWEJKOipWR .column-title {
  color: #ffffff;
}
.cid-rWEJKOipWR P {
  color: #ffffff;
}
.cid-rWEJKOipWR .mbr-text {
  color: #ffffff;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .nav-item,
.cid-rWEg2lhHpU .nav-link,
.cid-rWEg2lhHpU .navbar-caption {
  font-weight: normal;
}
.cid-rWEg2lhHpU .nav-item:focus,
.cid-rWEg2lhHpU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rWEg2lhHpU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rWEg2lhHpU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rWEg2lhHpU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rWEg2lhHpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWEg2lhHpU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rWEg2lhHpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWEg2lhHpU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rWEg2lhHpU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rWEg2lhHpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWEg2lhHpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rWEg2lhHpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWEg2lhHpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rWEg2lhHpU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rWEg2lhHpU .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWEg2lhHpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWEg2lhHpU .dropdown-item.active,
.cid-rWEg2lhHpU .dropdown-item:active {
  background-color: transparent;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rWEg2lhHpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWEg2lhHpU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWEg2lhHpU .navbar-buttons {
  text-align: center;
}
.cid-rWEg2lhHpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWEg2lhHpU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWEg2lhHpU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rWEg2lhHpU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rWEg2lhHpU .soc-item {
  margin: .5rem .3rem;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar {
    height: 77px;
  }
  .cid-rWEg2lhHpU .navbar.opened {
    height: auto;
  }
  .cid-rWEg2lhHpU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s5UfyTI2Ba {
  overflow-x: hidden !important;
}
.cid-s5UfyTI2Ba,
.cid-s5UfyTI2Ba .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 225px;
}
.cid-s5UfyTI2Ba .mbr-section-title {
  color: #ffffff;
}
.cid-s5UfyTI2Ba .mbr-section-title span {
  color: #ff4f7b;
}
.cid-s5UfyTI2Ba .mbr-text {
  color: #f4f8fa;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-s5UfyTI2Ba .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 22s !important;
  animation-duration: 22s;
  background-image: url("../../../assets/images/units-ready-to-go-chef-units-sale-1920x1277.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-s5UfyTI2Ba .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-s5UfyTI2Ba .mbr-overlay {
  z-index: 1;
}
.cid-s5UfyTI2Ba .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-s5UhjiagSx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s5UhjiagSx .card-text,
.cid-s5UhjiagSx .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s5UhjiagSx .main,
.cid-s5UhjiagSx .main-reverse {
  border: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0;
  background: #ffffff;
}
.cid-s5UhjiagSx .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-s5UhjiagSx .main-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-s5UhjiagSx .image-element {
  padding: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s5UhjiagSx .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s5UhjiagSx .text-element {
  padding: 3rem 2rem;
}
.cid-s5UhjiagSx .mbr-iconfont {
  font-size: 3rem;
  color: #188ef4;
}
.cid-s5UhjiagSx .bottom-radius {
  overflow: hidden;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-s5UhjiagSx .top-radius {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-s5UhjiagSx .main-reverse {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-s5UhjiagSx .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-s5UhjiagSx .image-element,
  .cid-s5UhjiagSx .text-element {
    margin-bottom: 0;
  }
  .cid-s5UhjiagSx .main:first-child {
    padding-top: 0;
  }
}
.cid-s5UhjiagSx .mbr-title,
.cid-s5UhjiagSx .card-img {
  color: #fd4f06;
}
.cid-s5UhjiagSx .card-text,
.cid-s5UhjiagSx .mbr-section-btn {
  color: #444444;
}
.cid-s5UhjiagSx .mbr-section-title {
  color: #08579f;
}
.cid-s5UhjiagSx .mbr-section-subtitle {
  color: #444444;
}
.cid-sx4lrXdMvo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sx4lrXdMvo .card-wrapper {
  z-index: 3;
}
.cid-sx4lrXdMvo .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sx4lrXdMvo:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sx4lrXdMvo .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sx4lrXdMvo .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#Formulario_Contacto {
  /* Type valid CSS here */
}
#Formulario_Contacto div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
}
#Formulario_Contacto p {
  font-size: 60px;
  color: #777;
}
.cid-rWEJKOipWR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .content {
    text-align: center;
  }
  .cid-rWEJKOipWR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR .logo-subtitle {
  color: #8d97ad;
}
.cid-rWEJKOipWR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWEJKOipWR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWEJKOipWR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWEJKOipWR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rWEJKOipWR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWEJKOipWR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWEJKOipWR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWEJKOipWR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWEJKOipWR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rWEJKOipWR .list-item {
  display: flex;
}
.cid-rWEJKOipWR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rWEJKOipWR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rWEJKOipWR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rWEJKOipWR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rWEJKOipWR .logo-subtitle,
.cid-rWEJKOipWR .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rWEJKOipWR .copyright > p {
  color: #ffffff;
}
.cid-rWEJKOipWR .column-title {
  color: #ffffff;
}
.cid-rWEJKOipWR P {
  color: #ffffff;
}
.cid-rWEJKOipWR .mbr-text {
  color: #ffffff;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .nav-item,
.cid-rWEg2lhHpU .nav-link,
.cid-rWEg2lhHpU .navbar-caption {
  font-weight: normal;
}
.cid-rWEg2lhHpU .nav-item:focus,
.cid-rWEg2lhHpU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rWEg2lhHpU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rWEg2lhHpU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rWEg2lhHpU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rWEg2lhHpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWEg2lhHpU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rWEg2lhHpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWEg2lhHpU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rWEg2lhHpU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rWEg2lhHpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWEg2lhHpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rWEg2lhHpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWEg2lhHpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rWEg2lhHpU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rWEg2lhHpU .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWEg2lhHpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWEg2lhHpU .dropdown-item.active,
.cid-rWEg2lhHpU .dropdown-item:active {
  background-color: transparent;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rWEg2lhHpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWEg2lhHpU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWEg2lhHpU .navbar-buttons {
  text-align: center;
}
.cid-rWEg2lhHpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWEg2lhHpU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWEg2lhHpU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rWEg2lhHpU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rWEg2lhHpU .soc-item {
  margin: .5rem .3rem;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar {
    height: 77px;
  }
  .cid-rWEg2lhHpU .navbar.opened {
    height: auto;
  }
  .cid-rWEg2lhHpU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s5UCi7OjLz {
  overflow-x: hidden !important;
}
.cid-s5UCi7OjLz,
.cid-s5UCi7OjLz .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 225px;
}
.cid-s5UCi7OjLz .mbr-section-title {
  color: #ffffff;
}
.cid-s5UCi7OjLz .mbr-section-title span {
  color: #ff4f7b;
}
.cid-s5UCi7OjLz .mbr-text {
  color: #f4f8fa;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-s5UCi7OjLz .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 22s !important;
  animation-duration: 22s;
  background-image: url("../../../assets/images/chef-units-trailers-1920x1277.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-s5UCi7OjLz .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-s5UCi7OjLz .mbr-overlay {
  z-index: 1;
}
.cid-s5UCi7OjLz .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-s5UDqlDuJQ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #efeeee;
}
.cid-s5UDqlDuJQ .container {
  max-width: 1500px;
}
.cid-s5UDqlDuJQ img {
  width: 100%;
}
.cid-s5UDqlDuJQ h2 {
  padding: 0;
  margin: 0;
}
.cid-s5UDqlDuJQ .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-s5UDqlDuJQ .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-s5UDqlDuJQ .img-col {
  position: relative;
}
.cid-s5UDqlDuJQ .img2 {
  position: absolute;
  left: -6rem;
  top: 4rem;
  width: 280px;
}
@media (max-width: 1200px) {
  .cid-s5UDqlDuJQ .img2 {
    left: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-s5UDqlDuJQ .img-col {
    margin-bottom: 3rem;
  }
  .cid-s5UDqlDuJQ .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-s5UDqlDuJQ .img2 {
    width: 50%;
    top: 2rem;
  }
  .cid-s5UDqlDuJQ .number {
    margin: auto;
  }
}
.cid-s5UDqlDuJQ .mbr-text {
  color: #333333;
}
.cid-sx4kbvdxIl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sx4kbvdxIl .card-wrapper {
  z-index: 3;
}
.cid-sx4kbvdxIl .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sx4kbvdxIl:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sx4kbvdxIl .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sx4kbvdxIl .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#Formulario_Contacto_Builder_Trend {
  /* Type valid CSS here */
}
#Formulario_Contacto_Builder_Trend div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
}
#Formulario_Contacto_Builder_Trend p {
  font-size: 60px;
  color: #777;
}
.cid-rWEJKOipWR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .content {
    text-align: center;
  }
  .cid-rWEJKOipWR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR .logo-subtitle {
  color: #8d97ad;
}
.cid-rWEJKOipWR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWEJKOipWR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWEJKOipWR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWEJKOipWR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rWEJKOipWR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWEJKOipWR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWEJKOipWR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWEJKOipWR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWEJKOipWR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rWEJKOipWR .list-item {
  display: flex;
}
.cid-rWEJKOipWR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rWEJKOipWR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rWEJKOipWR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rWEJKOipWR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rWEJKOipWR .logo-subtitle,
.cid-rWEJKOipWR .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rWEJKOipWR .copyright > p {
  color: #ffffff;
}
.cid-rWEJKOipWR .column-title {
  color: #ffffff;
}
.cid-rWEJKOipWR P {
  color: #ffffff;
}
.cid-rWEJKOipWR .mbr-text {
  color: #ffffff;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .nav-item,
.cid-rWEg2lhHpU .nav-link,
.cid-rWEg2lhHpU .navbar-caption {
  font-weight: normal;
}
.cid-rWEg2lhHpU .nav-item:focus,
.cid-rWEg2lhHpU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rWEg2lhHpU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rWEg2lhHpU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rWEg2lhHpU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rWEg2lhHpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWEg2lhHpU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rWEg2lhHpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWEg2lhHpU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rWEg2lhHpU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rWEg2lhHpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWEg2lhHpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rWEg2lhHpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWEg2lhHpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rWEg2lhHpU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rWEg2lhHpU .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWEg2lhHpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWEg2lhHpU .dropdown-item.active,
.cid-rWEg2lhHpU .dropdown-item:active {
  background-color: transparent;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rWEg2lhHpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWEg2lhHpU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWEg2lhHpU .navbar-buttons {
  text-align: center;
}
.cid-rWEg2lhHpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWEg2lhHpU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWEg2lhHpU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rWEg2lhHpU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rWEg2lhHpU .soc-item {
  margin: .5rem .3rem;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar {
    height: 77px;
  }
  .cid-rWEg2lhHpU .navbar.opened {
    height: auto;
  }
  .cid-rWEg2lhHpU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s5UEVQ9V20 {
  overflow-x: hidden !important;
}
.cid-s5UEVQ9V20,
.cid-s5UEVQ9V20 .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 225px;
}
.cid-s5UEVQ9V20 .mbr-section-title {
  color: #ffffff;
}
.cid-s5UEVQ9V20 .mbr-section-title span {
  color: #ff4f7b;
}
.cid-s5UEVQ9V20 .mbr-text {
  color: #f4f8fa;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-s5UEVQ9V20 .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 22s !important;
  animation-duration: 22s;
  background-image: url("../../../assets/images/units-ready-to-go-chef-units-sale-1920x1277.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-s5UEVQ9V20 .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-s5UEVQ9V20 .mbr-overlay {
  z-index: 1;
}
.cid-s5UEVQ9V20 .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-s5UFuwpK6F {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #ffffff;
}
.cid-s5UFuwpK6F .mbr-overlay {
  background: #232323;
}
.cid-s5UFuwpK6F .mbr-section-subtitle {
  color: #cccccc;
}
.cid-s5UFuwpK6F .mbr-section-subtitle,
.cid-s5UFuwpK6F .mbr-section-btn {
  color: #444444;
}
.cid-s5UFuwpK6F H1 {
  color: #fd4f06;
}
.cid-s5UF9huBsA {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #006999, #006999);
}
.cid-s5UF9huBsA .mbr-overlay {
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-s5UF9huBsA .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s5UF9huBsA .card-wrap {
  background-color: #ffffff;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s5UF9huBsA .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-s5UF9huBsA .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-s5UGinEaXW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s5UGinEaXW .mbr-section-subtitle {
  color: #767676;
}
.cid-s5UGinEaXW .btn {
  margin: 0 0 .5rem 0;
}
@media (max-width: 768px) {
  .cid-s5UGinEaXW h2,
  .cid-s5UGinEaXW h3 {
    text-align: center !important;
  }
  .cid-s5UGinEaXW .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-s5UFl4FkSi {
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(90deg, #006999, #52e5e5);
}
.cid-s5UFl4FkSi .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-s5UFl4FkSi .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-s5UFl4FkSi .mbr-section-subtitle,
.cid-s5UFl4FkSi .mbr-section-btn {
  color: #ffffff;
}
.cid-sx4jGAgfqu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sx4jGAgfqu .card-wrapper {
  z-index: 3;
}
.cid-sx4jGAgfqu .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sx4jGAgfqu:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sx4jGAgfqu .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sx4jGAgfqu .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#Formulario_Contacto_Builder_Trend {
  /* Type valid CSS here */
}
#Formulario_Contacto_Builder_Trend div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
}
#Formulario_Contacto_Builder_Trend p {
  font-size: 60px;
  color: #777;
}
.cid-rWEJKOipWR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .content {
    text-align: center;
  }
  .cid-rWEJKOipWR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR .logo-subtitle {
  color: #8d97ad;
}
.cid-rWEJKOipWR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWEJKOipWR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWEJKOipWR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWEJKOipWR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rWEJKOipWR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWEJKOipWR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWEJKOipWR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWEJKOipWR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWEJKOipWR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rWEJKOipWR .list-item {
  display: flex;
}
.cid-rWEJKOipWR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rWEJKOipWR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rWEJKOipWR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rWEJKOipWR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rWEJKOipWR .logo-subtitle,
.cid-rWEJKOipWR .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rWEJKOipWR .copyright > p {
  color: #ffffff;
}
.cid-rWEJKOipWR .column-title {
  color: #ffffff;
}
.cid-rWEJKOipWR P {
  color: #ffffff;
}
.cid-rWEJKOipWR .mbr-text {
  color: #ffffff;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .nav-item,
.cid-rWEg2lhHpU .nav-link,
.cid-rWEg2lhHpU .navbar-caption {
  font-weight: normal;
}
.cid-rWEg2lhHpU .nav-item:focus,
.cid-rWEg2lhHpU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rWEg2lhHpU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rWEg2lhHpU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rWEg2lhHpU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rWEg2lhHpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWEg2lhHpU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rWEg2lhHpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWEg2lhHpU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rWEg2lhHpU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rWEg2lhHpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWEg2lhHpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rWEg2lhHpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWEg2lhHpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rWEg2lhHpU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rWEg2lhHpU .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWEg2lhHpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWEg2lhHpU .dropdown-item.active,
.cid-rWEg2lhHpU .dropdown-item:active {
  background-color: transparent;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rWEg2lhHpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWEg2lhHpU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWEg2lhHpU .navbar-buttons {
  text-align: center;
}
.cid-rWEg2lhHpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWEg2lhHpU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWEg2lhHpU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rWEg2lhHpU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rWEg2lhHpU .soc-item {
  margin: .5rem .3rem;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar {
    height: 77px;
  }
  .cid-rWEg2lhHpU .navbar.opened {
    height: auto;
  }
  .cid-rWEg2lhHpU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9FvAampA0 {
  background-image: url("../../../assets/images/mbr-1920x1271.jpg");
}
.cid-s9FvAampA0 .mbr-section-title,
.cid-s9FvAampA0 .mbr-section-subtitle {
  color: #000000;
}
.cid-s9FvAampA0 .mbr-section-text {
  color: #232323;
}
.cid-s9FvAampA0 .mbr-text,
.cid-s9FvAampA0 .typed-text,
.cid-s9FvAampA0 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-s9FvAampA0 .btn {
  margin-left: 4px !important;
}
.cid-s9FvAampA0 .animated-element {
  color: #72d744;
}
.cid-s9FvAampA0 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #72d744;
}
.cid-s9FvAampA0 .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-s9FvAampA0 .mbr-figure {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s9FvAampA0 .typed-text,
  .cid-s9FvAampA0 .mbr-section-subtitle,
  .cid-s9FvAampA0 .mbr-section-text,
  .cid-s9FvAampA0 .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-s9FvAampA0 .mbr-section-subtitle,
.cid-s9FvAampA0 .typed-text {
  color: #ffffff;
}
.cid-s9FvAampA0 .mbr-section-text,
.cid-s9FvAampA0 .mbr-section-btn {
  color: #ffffff;
}
.cid-s9FA9vzUHx {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s9FA9vzUHx .mbr-text {
  color: #767676;
}
.cid-s9FA9vzUHx h4 {
  text-align: center;
}
.cid-s9FA9vzUHx p {
  text-align: center;
}
.cid-s9FA9vzUHx .card .card-img {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s9FA9vzUHx .card:hover .step {
  color: #ffffff;
  border: 0px solid transparent;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s9FA9vzUHx .card:hover .step:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.cid-s9FA9vzUHx .step {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  width: 100px;
  height: 100px;
  border: 2px solid #eee;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 50%;
  transition: all .3s;
}
.cid-s9FA9vzUHx .step:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.3s;
  background: linear-gradient(45deg, #fd4f06, #188ef4);
  border-radius: 50%;
}
.cid-s9FA9vzUHx .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-s9FA9vzUHx .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ff4f7b, #2bdc9d);
  display: inline-block;
}
@media (min-width: 768px) {
  .cid-s9FA9vzUHx .mbr-section-title,
  .cid-s9FA9vzUHx .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-s9FA9vzUHx .mbr-section-title,
.cid-s9FA9vzUHx .underline {
  color: #fd4f06;
}
.cid-s9FBU2SHRI {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-s9FBU2SHRI .mbr-text,
.cid-s9FBU2SHRI .mbr-section-subtitle {
  color: #767676;
}
.cid-s9FBU2SHRI .card-title {
  color: #66458e;
}
.cid-s9FBU2SHRI .card .card-img span {
  color: #fad201;
  font-size: 60px;
  background: linear-gradient(45deg, #fad201, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-s9FBU2SHRI .mbr-section-subtitle,
  .cid-s9FBU2SHRI .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s9FBU2SHRI .card .card-img span {
    background: none;
  }
}
.cid-s9FBU2SHRI .mbr-section-title {
  color: #2bdc9d;
}
.cid-s9FBU2SHRI .card-title,
.cid-s9FBU2SHRI .card-img {
  color: #72d744;
}
.cid-s9FBU2SHRI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s9FBU2SHRI .mbr-text {
  color: #ffffff;
}
.cid-s9FFpq2ad1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s9FFpq2ad1 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-s9FFpq2ad1 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-s9FFpq2ad1 .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s9FFpq2ad1 .input-group-btn .btn {
  border-radius: 0px !important;
}
.cid-s9FFpq2ad1 .form-control {
  background: none;
  border-radius: 0px;
}
.cid-s9FFpq2ad1 textarea.form-control {
  min-height: 214.5px;
}
.cid-s9FFpq2ad1 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 50px;
  margin-bottom: 2.5rem;
}
.cid-s9FFpq2ad1 .order-2 {
  margin-bottom: -2.5rem;
}
.cid-s9FFpq2ad1 h4,
.cid-s9FFpq2ad1 p {
  margin: 0;
}
.cid-s9FFpq2ad1 h2 {
  color: #333;
  margin-bottom: 2rem;
}
.cid-s9FFpq2ad1 h3 {
  color: #767676;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cid-s9FFpq2ad1 .icon {
  color: #656565;
  font-size: 2.5rem;
}
@media (max-width: 991px) {
  .cid-s9FFpq2ad1 h2 {
    text-align: center;
  }
  .cid-s9FFpq2ad1 h3 {
    text-align: center;
  }
  .cid-s9FFpq2ad1 .input-group-btn {
    text-align: center;
  }
  .cid-s9FFpq2ad1 .social-list {
    text-align: center;
  }
  .cid-s9FFpq2ad1 .order-2 {
    margin-top: 2.5rem;
  }
}
.cid-s9FFpq2ad1 H2 {
  color: #656565;
}
.cid-s9FFpq2ad1 .content {
  text-align: left;
  color: #fd4f06;
}
.cid-s9FFpq2ad1 .type {
  text-align: left;
  padding-bottom: 8px;
  color: #006999;
}
.cid-s9FFpq2ad1 .title1 {
  text-align: left;
}
.cid-s9FFpq2ad1 .mbr-section-subtitle {
  text-align: left;
  color: #656565;
}
.cid-s9FFpq2ad1 .title2 {
  color: #656565;
}
.cid-rWEJKOipWR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .content {
    text-align: center;
  }
  .cid-rWEJKOipWR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR .logo-subtitle {
  color: #8d97ad;
}
.cid-rWEJKOipWR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWEJKOipWR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWEJKOipWR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWEJKOipWR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rWEJKOipWR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWEJKOipWR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWEJKOipWR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWEJKOipWR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWEJKOipWR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rWEJKOipWR .list-item {
  display: flex;
}
.cid-rWEJKOipWR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rWEJKOipWR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rWEJKOipWR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rWEJKOipWR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rWEJKOipWR .logo-subtitle,
.cid-rWEJKOipWR .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rWEJKOipWR .copyright > p {
  color: #ffffff;
}
.cid-rWEJKOipWR .column-title {
  color: #ffffff;
}
.cid-rWEJKOipWR P {
  color: #ffffff;
}
.cid-rWEJKOipWR .mbr-text {
  color: #ffffff;
}
.cid-svVaTQUTlQ .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-svVaTQUTlQ .nav-item,
.cid-svVaTQUTlQ .nav-link,
.cid-svVaTQUTlQ .navbar-caption {
  font-weight: normal;
}
.cid-svVaTQUTlQ .nav-item:focus,
.cid-svVaTQUTlQ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-svVaTQUTlQ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-svVaTQUTlQ .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-svVaTQUTlQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-svVaTQUTlQ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-svVaTQUTlQ .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-svVaTQUTlQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-svVaTQUTlQ .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-svVaTQUTlQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-svVaTQUTlQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-svVaTQUTlQ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-svVaTQUTlQ .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-svVaTQUTlQ .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-svVaTQUTlQ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-svVaTQUTlQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-svVaTQUTlQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-svVaTQUTlQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-svVaTQUTlQ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-svVaTQUTlQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-svVaTQUTlQ .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-svVaTQUTlQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-svVaTQUTlQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-svVaTQUTlQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-svVaTQUTlQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-svVaTQUTlQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-svVaTQUTlQ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-svVaTQUTlQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svVaTQUTlQ .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-svVaTQUTlQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-svVaTQUTlQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-svVaTQUTlQ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-svVaTQUTlQ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-svVaTQUTlQ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-svVaTQUTlQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-svVaTQUTlQ .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-svVaTQUTlQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-svVaTQUTlQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-svVaTQUTlQ .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-svVaTQUTlQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-svVaTQUTlQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-svVaTQUTlQ .dropdown-item.active,
.cid-svVaTQUTlQ .dropdown-item:active {
  background-color: transparent;
}
.cid-svVaTQUTlQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-svVaTQUTlQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-svVaTQUTlQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-svVaTQUTlQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-svVaTQUTlQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-svVaTQUTlQ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svVaTQUTlQ .navbar-buttons {
  text-align: center;
}
.cid-svVaTQUTlQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-svVaTQUTlQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-svVaTQUTlQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-svVaTQUTlQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-svVaTQUTlQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-svVaTQUTlQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-svVaTQUTlQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-svVaTQUTlQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-svVaTQUTlQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-svVaTQUTlQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-svVaTQUTlQ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-svVaTQUTlQ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svVaTQUTlQ .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-svVaTQUTlQ .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-svVaTQUTlQ .soc-item {
  margin: .5rem .3rem;
}
.cid-svVaTQUTlQ .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-svVaTQUTlQ .navbar {
    height: 77px;
  }
  .cid-svVaTQUTlQ .navbar.opened {
    height: auto;
  }
  .cid-svVaTQUTlQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svVaTUxuFK {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #fd4f06;
}
.cid-svVaTUxuFK .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-svVaTUxuFK .text-block {
  position: relative;
  z-index: 0;
}
.cid-svVaTUxuFK .box {
  width: 25%;
  height: 40%;
  background: #a61a3d;
  position: absolute;
  top: 4%;
}
.cid-svVaTUxuFK .box {
  left: 20%;
}
.cid-svVaTUxuFK .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-svVaTUxuFK .mbr-section-text,
.cid-svVaTUxuFK .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-svVaTUxuFK .text-box {
    display: none;
  }
  .cid-svVaTUxuFK .mbr-section-title,
  .cid-svVaTUxuFK .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-svVaTUxuFK .box {
    display: none;
  }
  .cid-svVaTUxuFK .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-svVaTUxuFK .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-svVaTUxuFK .text-box {
    writing-mode: bt-rl;
  }
}
.cid-svVaTUxuFK .mbr-section-text {
  color: #000000;
}
.cid-svVaTUxuFK .mbr-section-title {
  color: #ffffff;
}
.cid-svVaTVoEQS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-svVaTVIKGF {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-svVaTVIKGF .mbr-text,
.cid-svVaTVIKGF .mbr-section-subtitle {
  color: #767676;
}
.cid-svVaTVIKGF .card-title {
  color: #66458e;
}
.cid-svVaTVIKGF .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-svVaTVIKGF .mbr-section-subtitle,
  .cid-svVaTVIKGF .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-svVaTVIKGF .card .card-img span {
    background: none;
  }
}
.cid-svVaTVIKGF .card-title,
.cid-svVaTVIKGF .card-img {
  color: #fd4f06;
}
.cid-svVcmEUM2M {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-svVcmEUM2M .mbr-text {
  color: #767676;
}
.cid-svVcmEUM2M .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-svVcmEUM2M .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-svVcmEUM2M .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: #000000;
  background: #2bdc9d;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2bdc9d, #188ef4);
  border-radius: 0;
}
.cid-svVaTXBQsn {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-svVaTXBQsn .mbr-section-title {
  letter-spacing: .1em;
}
.cid-svVaTXBQsn .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-svVaTXBQsn .card-img span {
  font-size: 100px;
}
.cid-svVaTXBQsn .mbr-text,
.cid-svVaTXBQsn .mbr-section-btn {
  color: #efefef;
}
.cid-svVaTXBQsn .mbr-section-title,
.cid-svVaTXBQsn .card-img {
  text-align: center;
}
.cid-svVaTXZ4JV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svVaTXZ4JV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svVaTXZ4JV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svVaTXZ4JV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svVaTXZ4JV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svVaTXZ4JV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-svVaTXZ4JV .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-svVaTXZ4JV .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-svVaTXZ4JV .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-svVaTXZ4JV .mbr-gallery-filter ul {
  display: block;
}
.cid-svVaTXZ4JV .mbr-gallery-filter ul li {
  position: relative;
}
.cid-svVaTXZ4JV .mbr-gallery-filter li.active .btn,
.cid-svVaTXZ4JV .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-svVaTXZ4JV .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-svVaTXZ4JV .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-svVaTXZ4JV .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-svVaTXZ4JV .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-svVaTXZ4JV .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-svVaTXZ4JV .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-svVaTXZ4JV .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-svVaTXZ4JV .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-svVaTXZ4JV .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-svVaTXZ4JV .icon-focus:before {
  content: '\e95e';
}
.cid-svVaTXZ4JV .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-svVaTXZ4JV .mbr-section-title {
  margin: 0;
}
.cid-svVaTXZ4JV .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-svVaTXZ4JV .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-svVaTYJTd8 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-svVaTYJTd8 .content {
    text-align: center;
  }
  .cid-svVaTYJTd8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svVaTYJTd8 .logo-subtitle {
  color: #8d97ad;
}
.cid-svVaTYJTd8 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-svVaTYJTd8 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-svVaTYJTd8 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-svVaTYJTd8 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-svVaTYJTd8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svVaTYJTd8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-svVaTYJTd8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-svVaTYJTd8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-svVaTYJTd8 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-svVaTYJTd8 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-svVaTYJTd8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svVaTYJTd8 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svVaTYJTd8 .list-item {
  display: flex;
}
.cid-svVaTYJTd8 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-svVaTYJTd8 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-svVaTYJTd8 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-svVaTYJTd8 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-svVaTYJTd8 .logo-subtitle,
.cid-svVaTYJTd8 .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-svVaTYJTd8 .copyright > p {
  color: #ffffff;
}
.cid-svVaTYJTd8 .column-title {
  color: #ffffff;
}
.cid-svVaTYJTd8 P {
  color: #ffffff;
}
.cid-svVaTYJTd8 .mbr-text {
  color: #ffffff;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .nav-item,
.cid-rWEg2lhHpU .nav-link,
.cid-rWEg2lhHpU .navbar-caption {
  font-weight: normal;
}
.cid-rWEg2lhHpU .nav-item:focus,
.cid-rWEg2lhHpU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rWEg2lhHpU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rWEg2lhHpU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rWEg2lhHpU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rWEg2lhHpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWEg2lhHpU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rWEg2lhHpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWEg2lhHpU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rWEg2lhHpU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rWEg2lhHpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWEg2lhHpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rWEg2lhHpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWEg2lhHpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rWEg2lhHpU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rWEg2lhHpU .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWEg2lhHpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWEg2lhHpU .dropdown-item.active,
.cid-rWEg2lhHpU .dropdown-item:active {
  background-color: transparent;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rWEg2lhHpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWEg2lhHpU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWEg2lhHpU .navbar-buttons {
  text-align: center;
}
.cid-rWEg2lhHpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWEg2lhHpU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWEg2lhHpU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rWEg2lhHpU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rWEg2lhHpU .soc-item {
  margin: .5rem .3rem;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar {
    height: 77px;
  }
  .cid-rWEg2lhHpU .navbar.opened {
    height: auto;
  }
  .cid-rWEg2lhHpU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s5UHsok8Sl {
  overflow-x: hidden !important;
}
.cid-s5UHsok8Sl,
.cid-s5UHsok8Sl .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 225px;
}
.cid-s5UHsok8Sl .mbr-section-title {
  color: #ffffff;
}
.cid-s5UHsok8Sl .mbr-section-title span {
  color: #ff4f7b;
}
.cid-s5UHsok8Sl .mbr-text {
  color: #f4f8fa;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-s5UHsok8Sl .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 22s !important;
  animation-duration: 22s;
  background-image: url("../../../assets/images/units-ready-to-go-chef-units-sale-1920x1277.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-s5UHsok8Sl .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-s5UHsok8Sl .mbr-overlay {
  z-index: 1;
}
.cid-s5UHsok8Sl .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-s5UOwefzJH {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-s5UOwefzJH {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
.cid-s5UOwefzJH .text {
  padding: 0;
}
.cid-s5UOwefzJH section {
  position: relative;
}
.cid-s5UOwefzJH h3 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.cid-s5UOwefzJH .mbr-iconfont {
  padding: 0!important;
}
.cid-s5UOwefzJH .back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #fd4f06;
}
.cid-s5UOwefzJH .box {
  background-image: url("../../../assets/images/3d-app-chef-units-2000x1239.png");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s5UOwefzJH .icon-wrap {
  background-color: #fd4f06 !important;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-s5UOwefzJH .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-s5UOwefzJH .icon-wrap span {
  padding-left: 8px;
}
.cid-s5UOwefzJH .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-s5UOwefzJH .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-s5UOwefzJH .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-s5UOwefzJH .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-s5UOwefzJH .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-s5UOwefzJH a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-s5UOwefzJH a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-s5UOwefzJH {
    padding-top: 35px;
    padding-bottom: 21px;
  }
  .cid-s5UOwefzJH .box {
    height: 250px;
  }
  .cid-s5UOwefzJH .row {
    padding: 1rem!important;
  }
}
.cid-s5UOwefzJH H2 {
  color: #08579f;
}
.cid-s5UHT5wD4L {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-s5UHT5wD4L svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-s5UHT5wD4L #e1_ellipse {
  fill: #ffffff !important;
}
.cid-s5UHT5wD4L img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(87, 227, 177, 0.35);
}
@media (max-width: 576px) {
  .cid-s5UHT5wD4L img {
    width: 100%;
    left: 0;
  }
}
.cid-s5UHT5wD4L H1 {
  color: #006999;
}
.cid-s5UHT5wD4L .mbr-text,
.cid-s5UHT5wD4L .mbr-section-btn {
  color: #716c80;
}
.cid-s5UHKgEQBA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-s5UHKgEQBA .mbr-section-title,
.cid-s5UHKgEQBA .mbr-section-subtitle {
  color: #000000;
}
.cid-s5UHKgEQBA .mbr-section-text {
  color: #232323;
}
.cid-s5UHKgEQBA .mbr-text,
.cid-s5UHKgEQBA .typed-text,
.cid-s5UHKgEQBA .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-s5UHKgEQBA .btn {
  margin-left: 4px !important;
}
.cid-s5UHKgEQBA .animated-element {
  color: #fd4f06;
}
.cid-s5UHKgEQBA .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #fd4f06;
}
.cid-s5UHKgEQBA .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-s5UHKgEQBA .typed-text,
  .cid-s5UHKgEQBA .mbr-section-subtitle,
  .cid-s5UHKgEQBA .mbr-section-text,
  .cid-s5UHKgEQBA .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-s5UHKgEQBA .mbr-section-subtitle,
.cid-s5UHKgEQBA .typed-text {
  color: #08579f;
}
.cid-sx4f5anEA3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sx4f5anEA3 .card-wrapper {
  z-index: 3;
}
.cid-sx4f5anEA3 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sx4f5anEA3:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sx4f5anEA3 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sx4f5anEA3 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#Formulario_Contacto_Builder_Trend {
  /* Type valid CSS here */
}
#Formulario_Contacto_Builder_Trend div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
  background: #fd4f06;
}
#Formulario_Contacto_Builder_Trend p {
  font-size: 60px;
  color: #777;
}
.cid-rWEJKOipWR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .content {
    text-align: center;
  }
  .cid-rWEJKOipWR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR .logo-subtitle {
  color: #8d97ad;
}
.cid-rWEJKOipWR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWEJKOipWR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWEJKOipWR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWEJKOipWR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rWEJKOipWR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWEJKOipWR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWEJKOipWR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWEJKOipWR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWEJKOipWR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rWEJKOipWR .list-item {
  display: flex;
}
.cid-rWEJKOipWR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rWEJKOipWR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rWEJKOipWR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rWEJKOipWR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rWEJKOipWR .logo-subtitle,
.cid-rWEJKOipWR .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rWEJKOipWR .copyright > p {
  color: #ffffff;
}
.cid-rWEJKOipWR .column-title {
  color: #ffffff;
}
.cid-rWEJKOipWR P {
  color: #ffffff;
}
.cid-rWEJKOipWR .mbr-text {
  color: #ffffff;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .nav-item,
.cid-rWEg2lhHpU .nav-link,
.cid-rWEg2lhHpU .navbar-caption {
  font-weight: normal;
}
.cid-rWEg2lhHpU .nav-item:focus,
.cid-rWEg2lhHpU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rWEg2lhHpU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rWEg2lhHpU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rWEg2lhHpU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rWEg2lhHpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWEg2lhHpU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rWEg2lhHpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWEg2lhHpU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rWEg2lhHpU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rWEg2lhHpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWEg2lhHpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rWEg2lhHpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWEg2lhHpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rWEg2lhHpU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rWEg2lhHpU .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWEg2lhHpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWEg2lhHpU .dropdown-item.active,
.cid-rWEg2lhHpU .dropdown-item:active {
  background-color: transparent;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rWEg2lhHpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWEg2lhHpU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWEg2lhHpU .navbar-buttons {
  text-align: center;
}
.cid-rWEg2lhHpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWEg2lhHpU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWEg2lhHpU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rWEg2lhHpU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rWEg2lhHpU .soc-item {
  margin: .5rem .3rem;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar {
    height: 77px;
  }
  .cid-rWEg2lhHpU .navbar.opened {
    height: auto;
  }
  .cid-rWEg2lhHpU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rZirWLqLOb {
  background-image: url("../../../assets/images/background16.jpg");
  background-position: right;
}
.cid-rZirWLqLOb .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-rZirWLqLOb .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-rZirWLqLOb .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-rZirWLqLOb img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-rZirWLqLOb .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-rZiuhx1kyv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rZiuhx1kyv .mbr-text {
  color: #8d97ad;
}
.cid-rZiuhx1kyv .blockquote-quote svg {
  height: 40px;
  width: 40px;
  fill: #fd4f06;
}
.cid-rZiuhx1kyv .signature > span {
  color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-rZiuhx1kyv .blockquote-quote {
    text-align: left;
  }
  .cid-rZiuhx1kyv .signature {
    text-align: left;
  }
}
.cid-rZiuhx1kyv .mbr-text,
.cid-rZiuhx1kyv .blockquote-quote {
  color: #8d97ad;
}
.cid-rZiuhx1kyv .signature {
  color: #08579f;
}
.cid-sx4mVz7Wnz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sx4mVz7Wnz .card-wrapper {
  z-index: 3;
}
.cid-sx4mVz7Wnz .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sx4mVz7Wnz:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sx4mVz7Wnz .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sx4mVz7Wnz .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#Formulario_Contacto {
  /* Type valid CSS here */
}
#Formulario_Contacto div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
}
#Formulario_Contacto p {
  font-size: 60px;
  color: #777;
}
.cid-rWEJKOipWR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .content {
    text-align: center;
  }
  .cid-rWEJKOipWR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR .logo-subtitle {
  color: #8d97ad;
}
.cid-rWEJKOipWR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWEJKOipWR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWEJKOipWR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWEJKOipWR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rWEJKOipWR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWEJKOipWR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWEJKOipWR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWEJKOipWR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWEJKOipWR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rWEJKOipWR .list-item {
  display: flex;
}
.cid-rWEJKOipWR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rWEJKOipWR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rWEJKOipWR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rWEJKOipWR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rWEJKOipWR .logo-subtitle,
.cid-rWEJKOipWR .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rWEJKOipWR .copyright > p {
  color: #ffffff;
}
.cid-rWEJKOipWR .column-title {
  color: #ffffff;
}
.cid-rWEJKOipWR P {
  color: #ffffff;
}
.cid-rWEJKOipWR .mbr-text {
  color: #ffffff;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .nav-item,
.cid-rWEg2lhHpU .nav-link,
.cid-rWEg2lhHpU .navbar-caption {
  font-weight: normal;
}
.cid-rWEg2lhHpU .nav-item:focus,
.cid-rWEg2lhHpU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rWEg2lhHpU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rWEg2lhHpU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rWEg2lhHpU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rWEg2lhHpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWEg2lhHpU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rWEg2lhHpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWEg2lhHpU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rWEg2lhHpU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rWEg2lhHpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWEg2lhHpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rWEg2lhHpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWEg2lhHpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rWEg2lhHpU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rWEg2lhHpU .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWEg2lhHpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWEg2lhHpU .dropdown-item.active,
.cid-rWEg2lhHpU .dropdown-item:active {
  background-color: transparent;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rWEg2lhHpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWEg2lhHpU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWEg2lhHpU .navbar-buttons {
  text-align: center;
}
.cid-rWEg2lhHpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWEg2lhHpU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWEg2lhHpU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rWEg2lhHpU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rWEg2lhHpU .soc-item {
  margin: .5rem .3rem;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar {
    height: 77px;
  }
  .cid-rWEg2lhHpU .navbar.opened {
    height: auto;
  }
  .cid-rWEg2lhHpU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sx4Rlk1wVr {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sx4Rlk1wVr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sx4Rlk1wVr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sx4Rlk1wVr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sx4Rlk1wVr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sx4Rlk1wVr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-sx4Rlk1wVr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sx4Rlk1wVr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sx4Rlk1wVr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sx4Rlk1wVr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #fd4f06 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-sx4WbDH3zj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sx4WbDH3zj .card-wrapper {
  z-index: 3;
}
.cid-sx4WbDH3zj .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sx4WbDH3zj:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sx4WbDH3zj .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sx4WbDH3zj .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#Formulario-Builder-Trend {
  /* Type valid CSS here */
}
#Formulario-Builder-Trend div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
  background: #fd4f06;
}
#Formulario-Builder-Trend p {
  font-size: 60px;
  color: #777;
}
.cid-rWEJKOipWR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .content {
    text-align: center;
  }
  .cid-rWEJKOipWR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR .logo-subtitle {
  color: #8d97ad;
}
.cid-rWEJKOipWR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWEJKOipWR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWEJKOipWR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWEJKOipWR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rWEJKOipWR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWEJKOipWR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWEJKOipWR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWEJKOipWR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWEJKOipWR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rWEJKOipWR .list-item {
  display: flex;
}
.cid-rWEJKOipWR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rWEJKOipWR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rWEJKOipWR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rWEJKOipWR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rWEJKOipWR .logo-subtitle,
.cid-rWEJKOipWR .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rWEJKOipWR .copyright > p {
  color: #ffffff;
}
.cid-rWEJKOipWR .column-title {
  color: #ffffff;
}
.cid-rWEJKOipWR P {
  color: #ffffff;
}
.cid-rWEJKOipWR .mbr-text {
  color: #ffffff;
}
.cid-sx572pzYG0 .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-sx572pzYG0 .nav-item,
.cid-sx572pzYG0 .nav-link,
.cid-sx572pzYG0 .navbar-caption {
  font-weight: normal;
}
.cid-sx572pzYG0 .nav-item:focus,
.cid-sx572pzYG0 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sx572pzYG0 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sx572pzYG0 .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-sx572pzYG0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sx572pzYG0 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx572pzYG0 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sx572pzYG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx572pzYG0 .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-sx572pzYG0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx572pzYG0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx572pzYG0 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-sx572pzYG0 .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-sx572pzYG0 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sx572pzYG0 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx572pzYG0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx572pzYG0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx572pzYG0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sx572pzYG0 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sx572pzYG0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx572pzYG0 .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-sx572pzYG0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx572pzYG0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx572pzYG0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sx572pzYG0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx572pzYG0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx572pzYG0 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sx572pzYG0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx572pzYG0 .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-sx572pzYG0 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sx572pzYG0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx572pzYG0 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sx572pzYG0 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sx572pzYG0 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sx572pzYG0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sx572pzYG0 .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-sx572pzYG0 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sx572pzYG0 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sx572pzYG0 .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-sx572pzYG0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx572pzYG0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx572pzYG0 .dropdown-item.active,
.cid-sx572pzYG0 .dropdown-item:active {
  background-color: transparent;
}
.cid-sx572pzYG0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx572pzYG0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx572pzYG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-sx572pzYG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx572pzYG0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx572pzYG0 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sx572pzYG0 .navbar-buttons {
  text-align: center;
}
.cid-sx572pzYG0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx572pzYG0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-sx572pzYG0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx572pzYG0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx572pzYG0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx572pzYG0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx572pzYG0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx572pzYG0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx572pzYG0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx572pzYG0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx572pzYG0 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sx572pzYG0 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx572pzYG0 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sx572pzYG0 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sx572pzYG0 .soc-item {
  margin: .5rem .3rem;
}
.cid-sx572pzYG0 .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-sx572pzYG0 .navbar {
    height: 77px;
  }
  .cid-sx572pzYG0 .navbar.opened {
    height: auto;
  }
  .cid-sx572pzYG0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sx572qaauK {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #72d744;
}
.cid-sx572qaauK .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-sx572qaauK .text-block {
  position: relative;
  z-index: 0;
}
.cid-sx572qaauK .box {
  width: 25%;
  height: 40%;
  background: #52e5e5;
  position: absolute;
  top: 4%;
}
.cid-sx572qaauK .box {
  left: 20%;
}
.cid-sx572qaauK .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-sx572qaauK .mbr-section-text,
.cid-sx572qaauK .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-sx572qaauK .text-box {
    display: none;
  }
  .cid-sx572qaauK .mbr-section-title,
  .cid-sx572qaauK .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sx572qaauK .box {
    display: none;
  }
  .cid-sx572qaauK .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sx572qaauK .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sx572qaauK .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sx572qaauK .mbr-section-text {
  color: #000000;
}
.cid-sx572qaauK .mbr-section-title {
  color: #000000;
}
.cid-sx572qrk7r {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-sx5aul6dSf {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-sx5aul6dSf .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sx5aul6dSf .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sx5aul6dSf .text-content {
  padding-right: 1.5rem;
}
.cid-sx5aul6dSf .mbr-text {
  color: #8d97ad;
}
.cid-sx5aul6dSf .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-sx5aul6dSf .counter-container {
  padding-top: 1rem;
}
.cid-sx5aul6dSf .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sx5aul6dSf .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sx5aul6dSf .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-sx5aul6dSf .main-row {
    margin: 0;
  }
  .cid-sx5aul6dSf .mbr-section-title,
  .cid-sx5aul6dSf .mbr-text,
  .cid-sx5aul6dSf .list,
  .cid-sx5aul6dSf .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sx5aul6dSf .text-content {
    padding: 0;
  }
}
.cid-sx572rwUvm {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1428.jpg");
}
.cid-sx572rwUvm .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sx572rwUvm .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sx572rwUvm .card-img span {
  font-size: 100px;
}
.cid-sx572rwUvm .mbr-text,
.cid-sx572rwUvm .mbr-section-btn {
  color: #efefef;
}
.cid-sx572rwUvm .mbr-section-title,
.cid-sx572rwUvm .card-img {
  text-align: center;
}
.cid-sx572rMDgn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sx572rMDgn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sx572rMDgn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sx572rMDgn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sx572rMDgn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sx572rMDgn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-sx572rMDgn .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-sx572rMDgn .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-sx572rMDgn .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-sx572rMDgn .mbr-gallery-filter ul {
  display: block;
}
.cid-sx572rMDgn .mbr-gallery-filter ul li {
  position: relative;
}
.cid-sx572rMDgn .mbr-gallery-filter li.active .btn,
.cid-sx572rMDgn .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-sx572rMDgn .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-sx572rMDgn .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-sx572rMDgn .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-sx572rMDgn .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-sx572rMDgn .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-sx572rMDgn .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-sx572rMDgn .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-sx572rMDgn .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-sx572rMDgn .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-sx572rMDgn .icon-focus:before {
  content: '\e95e';
}
.cid-sx572rMDgn .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-sx572rMDgn .mbr-section-title {
  margin: 0;
}
.cid-sx572rMDgn .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sx572rMDgn .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sx5bncoCe7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sx5bncoCe7 .card-wrapper {
  z-index: 3;
}
.cid-sx5bncoCe7 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sx5bncoCe7:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sx5bncoCe7 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sx5bncoCe7 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#Formulario-Contacto {
  /* Type valid CSS here */
}
#Formulario-Contacto div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
}
#Formulario-Contacto p {
  font-size: 60px;
  color: #777;
}
.cid-sx572tQ6wT {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-sx572tQ6wT .content {
    text-align: center;
  }
  .cid-sx572tQ6wT .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sx572tQ6wT .logo-subtitle {
  color: #8d97ad;
}
.cid-sx572tQ6wT .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sx572tQ6wT .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sx572tQ6wT .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sx572tQ6wT .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sx572tQ6wT .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sx572tQ6wT .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sx572tQ6wT .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sx572tQ6wT .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sx572tQ6wT .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sx572tQ6wT .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sx572tQ6wT .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sx572tQ6wT .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx572tQ6wT .list-item {
  display: flex;
}
.cid-sx572tQ6wT .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sx572tQ6wT ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sx572tQ6wT ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sx572tQ6wT ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sx572tQ6wT .logo-subtitle,
.cid-sx572tQ6wT .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-sx572tQ6wT .copyright > p {
  color: #ffffff;
}
.cid-sx572tQ6wT .column-title {
  color: #ffffff;
}
.cid-sx572tQ6wT P {
  color: #ffffff;
}
.cid-sx572tQ6wT .mbr-text {
  color: #ffffff;
}
.cid-sx5f4W2pmc .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-sx5f4W2pmc .nav-item,
.cid-sx5f4W2pmc .nav-link,
.cid-sx5f4W2pmc .navbar-caption {
  font-weight: normal;
}
.cid-sx5f4W2pmc .nav-item:focus,
.cid-sx5f4W2pmc .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sx5f4W2pmc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sx5f4W2pmc .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-sx5f4W2pmc .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sx5f4W2pmc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx5f4W2pmc .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sx5f4W2pmc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx5f4W2pmc .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-sx5f4W2pmc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx5f4W2pmc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx5f4W2pmc .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-sx5f4W2pmc .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-sx5f4W2pmc .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sx5f4W2pmc .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx5f4W2pmc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx5f4W2pmc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx5f4W2pmc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sx5f4W2pmc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sx5f4W2pmc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx5f4W2pmc .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-sx5f4W2pmc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx5f4W2pmc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx5f4W2pmc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sx5f4W2pmc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx5f4W2pmc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx5f4W2pmc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sx5f4W2pmc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx5f4W2pmc .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-sx5f4W2pmc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sx5f4W2pmc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx5f4W2pmc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sx5f4W2pmc .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sx5f4W2pmc .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sx5f4W2pmc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sx5f4W2pmc .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-sx5f4W2pmc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sx5f4W2pmc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sx5f4W2pmc .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-sx5f4W2pmc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx5f4W2pmc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx5f4W2pmc .dropdown-item.active,
.cid-sx5f4W2pmc .dropdown-item:active {
  background-color: transparent;
}
.cid-sx5f4W2pmc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx5f4W2pmc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx5f4W2pmc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-sx5f4W2pmc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx5f4W2pmc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx5f4W2pmc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sx5f4W2pmc .navbar-buttons {
  text-align: center;
}
.cid-sx5f4W2pmc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx5f4W2pmc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-sx5f4W2pmc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx5f4W2pmc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx5f4W2pmc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx5f4W2pmc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx5f4W2pmc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx5f4W2pmc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx5f4W2pmc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx5f4W2pmc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx5f4W2pmc .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sx5f4W2pmc a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx5f4W2pmc .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sx5f4W2pmc .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sx5f4W2pmc .soc-item {
  margin: .5rem .3rem;
}
.cid-sx5f4W2pmc .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-sx5f4W2pmc .navbar {
    height: 77px;
  }
  .cid-sx5f4W2pmc .navbar.opened {
    height: auto;
  }
  .cid-sx5f4W2pmc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sx5f50jnaf {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #fad201;
}
.cid-sx5f50jnaf .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-sx5f50jnaf .text-block {
  position: relative;
  z-index: 0;
}
.cid-sx5f50jnaf .box {
  width: 25%;
  height: 40%;
  background: #fd4f06;
  position: absolute;
  top: 4%;
}
.cid-sx5f50jnaf .box {
  left: 20%;
}
.cid-sx5f50jnaf .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-sx5f50jnaf .mbr-section-text,
.cid-sx5f50jnaf .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-sx5f50jnaf .text-box {
    display: none;
  }
  .cid-sx5f50jnaf .mbr-section-title,
  .cid-sx5f50jnaf .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sx5f50jnaf .box {
    display: none;
  }
  .cid-sx5f50jnaf .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sx5f50jnaf .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sx5f50jnaf .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sx5f50jnaf .mbr-section-text {
  color: #000000;
}
.cid-sx5f50jnaf .mbr-section-title {
  color: #000000;
}
.cid-sx5f51rjqf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-sx5f53th6k {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-sx5f53th6k .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sx5f53th6k .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sx5f53th6k .text-content {
  padding-right: 1.5rem;
}
.cid-sx5f53th6k .mbr-text {
  color: #8d97ad;
}
.cid-sx5f53th6k .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-sx5f53th6k .counter-container {
  padding-top: 1rem;
}
.cid-sx5f53th6k .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sx5f53th6k .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sx5f53th6k .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-sx5f53th6k .main-row {
    margin: 0;
  }
  .cid-sx5f53th6k .mbr-section-title,
  .cid-sx5f53th6k .mbr-text,
  .cid-sx5f53th6k .list,
  .cid-sx5f53th6k .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sx5f53th6k .text-content {
    padding: 0;
  }
}
.cid-sx5f54ocG5 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1428.jpg");
}
.cid-sx5f54ocG5 .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sx5f54ocG5 .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sx5f54ocG5 .card-img span {
  font-size: 100px;
}
.cid-sx5f54ocG5 .mbr-text,
.cid-sx5f54ocG5 .mbr-section-btn {
  color: #efefef;
}
.cid-sx5f54ocG5 .mbr-section-title,
.cid-sx5f54ocG5 .card-img {
  text-align: center;
}
.cid-sx5f55jr7Y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sx5f55jr7Y .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sx5f55jr7Y .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sx5f55jr7Y .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sx5f55jr7Y .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sx5f55jr7Y .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-sx5f55jr7Y .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-sx5f55jr7Y .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-sx5f55jr7Y .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-sx5f55jr7Y .mbr-gallery-filter ul {
  display: block;
}
.cid-sx5f55jr7Y .mbr-gallery-filter ul li {
  position: relative;
}
.cid-sx5f55jr7Y .mbr-gallery-filter li.active .btn,
.cid-sx5f55jr7Y .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-sx5f55jr7Y .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-sx5f55jr7Y .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-sx5f55jr7Y .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-sx5f55jr7Y .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-sx5f55jr7Y .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-sx5f55jr7Y .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-sx5f55jr7Y .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-sx5f55jr7Y .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-sx5f55jr7Y .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-sx5f55jr7Y .icon-focus:before {
  content: '\e95e';
}
.cid-sx5f55jr7Y .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-sx5f55jr7Y .mbr-section-title {
  margin: 0;
}
.cid-sx5f55jr7Y .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sx5f55jr7Y .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sx5f580O2N {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sx5f580O2N .card-wrapper {
  z-index: 3;
}
.cid-sx5f580O2N .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sx5f580O2N:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sx5f580O2N .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sx5f580O2N .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#custom-html-6z {
  /* Type valid CSS here */
}
#custom-html-6z div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
}
#custom-html-6z p {
  font-size: 60px;
  color: #777;
}
.cid-sx5f5aKE59 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-sx5f5aKE59 .content {
    text-align: center;
  }
  .cid-sx5f5aKE59 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sx5f5aKE59 .logo-subtitle {
  color: #8d97ad;
}
.cid-sx5f5aKE59 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sx5f5aKE59 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sx5f5aKE59 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sx5f5aKE59 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sx5f5aKE59 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sx5f5aKE59 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sx5f5aKE59 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sx5f5aKE59 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sx5f5aKE59 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sx5f5aKE59 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sx5f5aKE59 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sx5f5aKE59 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx5f5aKE59 .list-item {
  display: flex;
}
.cid-sx5f5aKE59 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sx5f5aKE59 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sx5f5aKE59 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sx5f5aKE59 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sx5f5aKE59 .logo-subtitle,
.cid-sx5f5aKE59 .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-sx5f5aKE59 .copyright > p {
  color: #ffffff;
}
.cid-sx5f5aKE59 .column-title {
  color: #ffffff;
}
.cid-sx5f5aKE59 P {
  color: #ffffff;
}
.cid-sx5f5aKE59 .mbr-text {
  color: #ffffff;
}
.cid-sx5jr5nugP .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-sx5jr5nugP .nav-item,
.cid-sx5jr5nugP .nav-link,
.cid-sx5jr5nugP .navbar-caption {
  font-weight: normal;
}
.cid-sx5jr5nugP .nav-item:focus,
.cid-sx5jr5nugP .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sx5jr5nugP .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sx5jr5nugP .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-sx5jr5nugP .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sx5jr5nugP .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx5jr5nugP .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sx5jr5nugP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx5jr5nugP .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-sx5jr5nugP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx5jr5nugP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx5jr5nugP .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-sx5jr5nugP .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-sx5jr5nugP .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sx5jr5nugP .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx5jr5nugP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx5jr5nugP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx5jr5nugP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sx5jr5nugP .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sx5jr5nugP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx5jr5nugP .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-sx5jr5nugP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx5jr5nugP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx5jr5nugP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sx5jr5nugP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx5jr5nugP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx5jr5nugP .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sx5jr5nugP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx5jr5nugP .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-sx5jr5nugP .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sx5jr5nugP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx5jr5nugP .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sx5jr5nugP .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sx5jr5nugP .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sx5jr5nugP .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sx5jr5nugP .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-sx5jr5nugP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sx5jr5nugP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sx5jr5nugP .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-sx5jr5nugP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx5jr5nugP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx5jr5nugP .dropdown-item.active,
.cid-sx5jr5nugP .dropdown-item:active {
  background-color: transparent;
}
.cid-sx5jr5nugP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx5jr5nugP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx5jr5nugP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-sx5jr5nugP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx5jr5nugP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx5jr5nugP ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sx5jr5nugP .navbar-buttons {
  text-align: center;
}
.cid-sx5jr5nugP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx5jr5nugP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-sx5jr5nugP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx5jr5nugP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx5jr5nugP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx5jr5nugP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx5jr5nugP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx5jr5nugP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx5jr5nugP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx5jr5nugP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx5jr5nugP .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sx5jr5nugP a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx5jr5nugP .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sx5jr5nugP .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sx5jr5nugP .soc-item {
  margin: .5rem .3rem;
}
.cid-sx5jr5nugP .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-sx5jr5nugP .navbar {
    height: 77px;
  }
  .cid-sx5jr5nugP .navbar.opened {
    height: auto;
  }
  .cid-sx5jr5nugP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sx5jr79S8s {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #fad201;
}
.cid-sx5jr79S8s .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-sx5jr79S8s .text-block {
  position: relative;
  z-index: 0;
}
.cid-sx5jr79S8s .box {
  width: 25%;
  height: 40%;
  background: #fd4f06;
  position: absolute;
  top: 4%;
}
.cid-sx5jr79S8s .box {
  left: 20%;
}
.cid-sx5jr79S8s .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-sx5jr79S8s .mbr-section-text,
.cid-sx5jr79S8s .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-sx5jr79S8s .text-box {
    display: none;
  }
  .cid-sx5jr79S8s .mbr-section-title,
  .cid-sx5jr79S8s .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sx5jr79S8s .box {
    display: none;
  }
  .cid-sx5jr79S8s .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sx5jr79S8s .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sx5jr79S8s .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sx5jr79S8s .mbr-section-text {
  color: #000000;
}
.cid-sx5jr79S8s .mbr-section-title {
  color: #000000;
}
.cid-sx5jr81ZrB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-sx5jr8jvdD {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-sx5jr8jvdD .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sx5jr8jvdD .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sx5jr8jvdD .text-content {
  padding-right: 1.5rem;
}
.cid-sx5jr8jvdD .mbr-text {
  color: #8d97ad;
}
.cid-sx5jr8jvdD .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-sx5jr8jvdD .counter-container {
  padding-top: 1rem;
}
.cid-sx5jr8jvdD .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sx5jr8jvdD .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sx5jr8jvdD .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-sx5jr8jvdD .main-row {
    margin: 0;
  }
  .cid-sx5jr8jvdD .mbr-section-title,
  .cid-sx5jr8jvdD .mbr-text,
  .cid-sx5jr8jvdD .list,
  .cid-sx5jr8jvdD .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sx5jr8jvdD .text-content {
    padding: 0;
  }
}
.cid-sx5jr97phl {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1428.jpg");
}
.cid-sx5jr97phl .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sx5jr97phl .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sx5jr97phl .card-img span {
  font-size: 100px;
}
.cid-sx5jr97phl .mbr-text,
.cid-sx5jr97phl .mbr-section-btn {
  color: #efefef;
}
.cid-sx5jr97phl .mbr-section-title,
.cid-sx5jr97phl .card-img {
  text-align: center;
}
.cid-sx5jr9pr2s {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sx5jr9pr2s .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sx5jr9pr2s .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sx5jr9pr2s .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sx5jr9pr2s .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sx5jr9pr2s .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-sx5jr9pr2s .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-sx5jr9pr2s .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-sx5jr9pr2s .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-sx5jr9pr2s .mbr-gallery-filter ul {
  display: block;
}
.cid-sx5jr9pr2s .mbr-gallery-filter ul li {
  position: relative;
}
.cid-sx5jr9pr2s .mbr-gallery-filter li.active .btn,
.cid-sx5jr9pr2s .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-sx5jr9pr2s .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-sx5jr9pr2s .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-sx5jr9pr2s .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-sx5jr9pr2s .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-sx5jr9pr2s .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-sx5jr9pr2s .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-sx5jr9pr2s .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-sx5jr9pr2s .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-sx5jr9pr2s .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-sx5jr9pr2s .icon-focus:before {
  content: '\e95e';
}
.cid-sx5jr9pr2s .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-sx5jr9pr2s .mbr-section-title {
  margin: 0;
}
.cid-sx5jr9pr2s .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sx5jr9pr2s .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sx5jra5tK3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sx5jra5tK3 .card-wrapper {
  z-index: 3;
}
.cid-sx5jra5tK3 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sx5jra5tK3:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sx5jra5tK3 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sx5jra5tK3 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#custom-html-78 {
  /* Type valid CSS here */
}
#custom-html-78 div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
}
#custom-html-78 p {
  font-size: 60px;
  color: #777;
}
.cid-sx5jravnkh {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-sx5jravnkh .content {
    text-align: center;
  }
  .cid-sx5jravnkh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sx5jravnkh .logo-subtitle {
  color: #8d97ad;
}
.cid-sx5jravnkh .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sx5jravnkh .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sx5jravnkh .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sx5jravnkh .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sx5jravnkh .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sx5jravnkh .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sx5jravnkh .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sx5jravnkh .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sx5jravnkh .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sx5jravnkh .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sx5jravnkh .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sx5jravnkh .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx5jravnkh .list-item {
  display: flex;
}
.cid-sx5jravnkh .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sx5jravnkh ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sx5jravnkh ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sx5jravnkh ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sx5jravnkh .logo-subtitle,
.cid-sx5jravnkh .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-sx5jravnkh .copyright > p {
  color: #ffffff;
}
.cid-sx5jravnkh .column-title {
  color: #ffffff;
}
.cid-sx5jravnkh P {
  color: #ffffff;
}
.cid-sx5jravnkh .mbr-text {
  color: #ffffff;
}
.cid-sx5nAnUAg5 .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-sx5nAnUAg5 .nav-item,
.cid-sx5nAnUAg5 .nav-link,
.cid-sx5nAnUAg5 .navbar-caption {
  font-weight: normal;
}
.cid-sx5nAnUAg5 .nav-item:focus,
.cid-sx5nAnUAg5 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sx5nAnUAg5 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sx5nAnUAg5 .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-sx5nAnUAg5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sx5nAnUAg5 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx5nAnUAg5 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sx5nAnUAg5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx5nAnUAg5 .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-sx5nAnUAg5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx5nAnUAg5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx5nAnUAg5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-sx5nAnUAg5 .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-sx5nAnUAg5 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sx5nAnUAg5 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx5nAnUAg5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx5nAnUAg5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx5nAnUAg5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sx5nAnUAg5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sx5nAnUAg5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx5nAnUAg5 .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-sx5nAnUAg5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx5nAnUAg5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx5nAnUAg5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sx5nAnUAg5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx5nAnUAg5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx5nAnUAg5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sx5nAnUAg5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx5nAnUAg5 .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-sx5nAnUAg5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sx5nAnUAg5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx5nAnUAg5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sx5nAnUAg5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sx5nAnUAg5 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sx5nAnUAg5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sx5nAnUAg5 .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-sx5nAnUAg5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sx5nAnUAg5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sx5nAnUAg5 .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-sx5nAnUAg5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx5nAnUAg5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx5nAnUAg5 .dropdown-item.active,
.cid-sx5nAnUAg5 .dropdown-item:active {
  background-color: transparent;
}
.cid-sx5nAnUAg5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx5nAnUAg5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx5nAnUAg5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-sx5nAnUAg5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx5nAnUAg5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx5nAnUAg5 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sx5nAnUAg5 .navbar-buttons {
  text-align: center;
}
.cid-sx5nAnUAg5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx5nAnUAg5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-sx5nAnUAg5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx5nAnUAg5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx5nAnUAg5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx5nAnUAg5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx5nAnUAg5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx5nAnUAg5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx5nAnUAg5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx5nAnUAg5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx5nAnUAg5 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sx5nAnUAg5 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx5nAnUAg5 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sx5nAnUAg5 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sx5nAnUAg5 .soc-item {
  margin: .5rem .3rem;
}
.cid-sx5nAnUAg5 .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-sx5nAnUAg5 .navbar {
    height: 77px;
  }
  .cid-sx5nAnUAg5 .navbar.opened {
    height: auto;
  }
  .cid-sx5nAnUAg5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sx5nApv0SN {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #fad201;
}
.cid-sx5nApv0SN .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-sx5nApv0SN .text-block {
  position: relative;
  z-index: 0;
}
.cid-sx5nApv0SN .box {
  width: 25%;
  height: 40%;
  background: #fd4f06;
  position: absolute;
  top: 4%;
}
.cid-sx5nApv0SN .box {
  left: 20%;
}
.cid-sx5nApv0SN .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-sx5nApv0SN .mbr-section-text,
.cid-sx5nApv0SN .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-sx5nApv0SN .text-box {
    display: none;
  }
  .cid-sx5nApv0SN .mbr-section-title,
  .cid-sx5nApv0SN .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sx5nApv0SN .box {
    display: none;
  }
  .cid-sx5nApv0SN .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sx5nApv0SN .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sx5nApv0SN .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sx5nApv0SN .mbr-section-text {
  color: #000000;
}
.cid-sx5nApv0SN .mbr-section-title {
  color: #000000;
}
.cid-sx5nAqc2zO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-sx5nAqyKOd {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-sx5nAqyKOd .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sx5nAqyKOd .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sx5nAqyKOd .text-content {
  padding-right: 1.5rem;
}
.cid-sx5nAqyKOd .mbr-text {
  color: #8d97ad;
}
.cid-sx5nAqyKOd .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-sx5nAqyKOd .counter-container {
  padding-top: 1rem;
}
.cid-sx5nAqyKOd .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sx5nAqyKOd .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sx5nAqyKOd .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-sx5nAqyKOd .main-row {
    margin: 0;
  }
  .cid-sx5nAqyKOd .mbr-section-title,
  .cid-sx5nAqyKOd .mbr-text,
  .cid-sx5nAqyKOd .list,
  .cid-sx5nAqyKOd .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sx5nAqyKOd .text-content {
    padding: 0;
  }
}
.cid-sx5nAr6Adx {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1428.jpg");
}
.cid-sx5nAr6Adx .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sx5nAr6Adx .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sx5nAr6Adx .card-img span {
  font-size: 100px;
}
.cid-sx5nAr6Adx .mbr-text,
.cid-sx5nAr6Adx .mbr-section-btn {
  color: #efefef;
}
.cid-sx5nAr6Adx .mbr-section-title,
.cid-sx5nAr6Adx .card-img {
  text-align: center;
}
.cid-sx5nArGkBB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sx5nArGkBB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sx5nArGkBB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sx5nArGkBB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sx5nArGkBB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sx5nArGkBB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-sx5nArGkBB .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-sx5nArGkBB .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-sx5nArGkBB .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-sx5nArGkBB .mbr-gallery-filter ul {
  display: block;
}
.cid-sx5nArGkBB .mbr-gallery-filter ul li {
  position: relative;
}
.cid-sx5nArGkBB .mbr-gallery-filter li.active .btn,
.cid-sx5nArGkBB .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-sx5nArGkBB .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-sx5nArGkBB .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-sx5nArGkBB .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-sx5nArGkBB .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-sx5nArGkBB .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-sx5nArGkBB .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-sx5nArGkBB .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-sx5nArGkBB .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-sx5nArGkBB .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-sx5nArGkBB .icon-focus:before {
  content: '\e95e';
}
.cid-sx5nArGkBB .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-sx5nArGkBB .mbr-section-title {
  margin: 0;
}
.cid-sx5nArGkBB .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sx5nArGkBB .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sx5nAtyDo5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sx5nAtyDo5 .card-wrapper {
  z-index: 3;
}
.cid-sx5nAtyDo5 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sx5nAtyDo5:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sx5nAtyDo5 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sx5nAtyDo5 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#custom-html-7h {
  /* Type valid CSS here */
}
#custom-html-7h div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
}
#custom-html-7h p {
  font-size: 60px;
  color: #777;
}
.cid-sx5nAu7GdQ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-sx5nAu7GdQ .content {
    text-align: center;
  }
  .cid-sx5nAu7GdQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sx5nAu7GdQ .logo-subtitle {
  color: #8d97ad;
}
.cid-sx5nAu7GdQ .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sx5nAu7GdQ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sx5nAu7GdQ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sx5nAu7GdQ .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sx5nAu7GdQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sx5nAu7GdQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sx5nAu7GdQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sx5nAu7GdQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sx5nAu7GdQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sx5nAu7GdQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sx5nAu7GdQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sx5nAu7GdQ .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx5nAu7GdQ .list-item {
  display: flex;
}
.cid-sx5nAu7GdQ .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sx5nAu7GdQ ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sx5nAu7GdQ ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sx5nAu7GdQ ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sx5nAu7GdQ .logo-subtitle,
.cid-sx5nAu7GdQ .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-sx5nAu7GdQ .copyright > p {
  color: #ffffff;
}
.cid-sx5nAu7GdQ .column-title {
  color: #ffffff;
}
.cid-sx5nAu7GdQ P {
  color: #ffffff;
}
.cid-sx5nAu7GdQ .mbr-text {
  color: #ffffff;
}
.cid-sx5rn8vJ1S .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-sx5rn8vJ1S .nav-item,
.cid-sx5rn8vJ1S .nav-link,
.cid-sx5rn8vJ1S .navbar-caption {
  font-weight: normal;
}
.cid-sx5rn8vJ1S .nav-item:focus,
.cid-sx5rn8vJ1S .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sx5rn8vJ1S .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sx5rn8vJ1S .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-sx5rn8vJ1S .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sx5rn8vJ1S .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx5rn8vJ1S .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sx5rn8vJ1S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx5rn8vJ1S .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-sx5rn8vJ1S .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx5rn8vJ1S .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx5rn8vJ1S .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-sx5rn8vJ1S .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-sx5rn8vJ1S .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sx5rn8vJ1S .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx5rn8vJ1S .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx5rn8vJ1S .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx5rn8vJ1S .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sx5rn8vJ1S .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sx5rn8vJ1S .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx5rn8vJ1S .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-sx5rn8vJ1S .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx5rn8vJ1S .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx5rn8vJ1S .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sx5rn8vJ1S .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx5rn8vJ1S .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx5rn8vJ1S .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sx5rn8vJ1S .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx5rn8vJ1S .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-sx5rn8vJ1S .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sx5rn8vJ1S .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx5rn8vJ1S .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sx5rn8vJ1S .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sx5rn8vJ1S .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sx5rn8vJ1S .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sx5rn8vJ1S .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-sx5rn8vJ1S .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sx5rn8vJ1S .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sx5rn8vJ1S .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-sx5rn8vJ1S .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx5rn8vJ1S .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx5rn8vJ1S .dropdown-item.active,
.cid-sx5rn8vJ1S .dropdown-item:active {
  background-color: transparent;
}
.cid-sx5rn8vJ1S .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx5rn8vJ1S .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx5rn8vJ1S .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-sx5rn8vJ1S .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx5rn8vJ1S .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx5rn8vJ1S ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sx5rn8vJ1S .navbar-buttons {
  text-align: center;
}
.cid-sx5rn8vJ1S button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx5rn8vJ1S button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-sx5rn8vJ1S button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx5rn8vJ1S button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx5rn8vJ1S button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx5rn8vJ1S button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx5rn8vJ1S nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx5rn8vJ1S nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx5rn8vJ1S nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx5rn8vJ1S nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx5rn8vJ1S .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sx5rn8vJ1S a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx5rn8vJ1S .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sx5rn8vJ1S .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sx5rn8vJ1S .soc-item {
  margin: .5rem .3rem;
}
.cid-sx5rn8vJ1S .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-sx5rn8vJ1S .navbar {
    height: 77px;
  }
  .cid-sx5rn8vJ1S .navbar.opened {
    height: auto;
  }
  .cid-sx5rn8vJ1S .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sx5rnadUax {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #2bdc9d;
}
.cid-sx5rnadUax .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-sx5rnadUax .text-block {
  position: relative;
  z-index: 0;
}
.cid-sx5rnadUax .box {
  width: 25%;
  height: 40%;
  background: #188ef4;
  position: absolute;
  top: 4%;
}
.cid-sx5rnadUax .box {
  left: 20%;
}
.cid-sx5rnadUax .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-sx5rnadUax .mbr-section-text,
.cid-sx5rnadUax .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-sx5rnadUax .text-box {
    display: none;
  }
  .cid-sx5rnadUax .mbr-section-title,
  .cid-sx5rnadUax .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sx5rnadUax .box {
    display: none;
  }
  .cid-sx5rnadUax .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sx5rnadUax .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sx5rnadUax .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sx5rnadUax .mbr-section-text {
  color: #000000;
}
.cid-sx5rnadUax .mbr-section-title {
  color: #000000;
}
.cid-sx5rnaTb8U {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-sx5rnbdXld {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-sx5rnbdXld .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sx5rnbdXld .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sx5rnbdXld .text-content {
  padding-right: 1.5rem;
}
.cid-sx5rnbdXld .mbr-text {
  color: #8d97ad;
}
.cid-sx5rnbdXld .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-sx5rnbdXld .counter-container {
  padding-top: 1rem;
}
.cid-sx5rnbdXld .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sx5rnbdXld .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sx5rnbdXld .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-sx5rnbdXld .main-row {
    margin: 0;
  }
  .cid-sx5rnbdXld .mbr-section-title,
  .cid-sx5rnbdXld .mbr-text,
  .cid-sx5rnbdXld .list,
  .cid-sx5rnbdXld .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sx5rnbdXld .text-content {
    padding: 0;
  }
}
.cid-sx5rnbICy7 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1428.jpg");
}
.cid-sx5rnbICy7 .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sx5rnbICy7 .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sx5rnbICy7 .card-img span {
  font-size: 100px;
}
.cid-sx5rnbICy7 .mbr-text,
.cid-sx5rnbICy7 .mbr-section-btn {
  color: #efefef;
}
.cid-sx5rnbICy7 .mbr-section-title,
.cid-sx5rnbICy7 .card-img {
  text-align: center;
}
.cid-sx5rnc3eVJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sx5rnc3eVJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sx5rnc3eVJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sx5rnc3eVJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sx5rnc3eVJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sx5rnc3eVJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-sx5rnc3eVJ .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-sx5rnc3eVJ .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-sx5rnc3eVJ .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-sx5rnc3eVJ .mbr-gallery-filter ul {
  display: block;
}
.cid-sx5rnc3eVJ .mbr-gallery-filter ul li {
  position: relative;
}
.cid-sx5rnc3eVJ .mbr-gallery-filter li.active .btn,
.cid-sx5rnc3eVJ .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-sx5rnc3eVJ .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-sx5rnc3eVJ .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-sx5rnc3eVJ .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-sx5rnc3eVJ .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-sx5rnc3eVJ .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-sx5rnc3eVJ .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-sx5rnc3eVJ .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-sx5rnc3eVJ .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-sx5rnc3eVJ .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-sx5rnc3eVJ .icon-focus:before {
  content: '\e95e';
}
.cid-sx5rnc3eVJ .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-sx5rnc3eVJ .mbr-section-title {
  margin: 0;
}
.cid-sx5rnc3eVJ .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sx5rnc3eVJ .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sx5rncGiOy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sx5rncGiOy .card-wrapper {
  z-index: 3;
}
.cid-sx5rncGiOy .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sx5rncGiOy:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sx5rncGiOy .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sx5rncGiOy .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#custom-html-7r {
  /* Type valid CSS here */
}
#custom-html-7r div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
}
#custom-html-7r p {
  font-size: 60px;
  color: #777;
}
.cid-sx5rndaHY4 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-sx5rndaHY4 .content {
    text-align: center;
  }
  .cid-sx5rndaHY4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sx5rndaHY4 .logo-subtitle {
  color: #8d97ad;
}
.cid-sx5rndaHY4 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sx5rndaHY4 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sx5rndaHY4 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sx5rndaHY4 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sx5rndaHY4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sx5rndaHY4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sx5rndaHY4 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sx5rndaHY4 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sx5rndaHY4 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sx5rndaHY4 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sx5rndaHY4 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sx5rndaHY4 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx5rndaHY4 .list-item {
  display: flex;
}
.cid-sx5rndaHY4 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sx5rndaHY4 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sx5rndaHY4 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sx5rndaHY4 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sx5rndaHY4 .logo-subtitle,
.cid-sx5rndaHY4 .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-sx5rndaHY4 .copyright > p {
  color: #ffffff;
}
.cid-sx5rndaHY4 .column-title {
  color: #ffffff;
}
.cid-sx5rndaHY4 P {
  color: #ffffff;
}
.cid-sx5rndaHY4 .mbr-text {
  color: #ffffff;
}
.cid-sx5rp1392r .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-sx5rp1392r .nav-item,
.cid-sx5rp1392r .nav-link,
.cid-sx5rp1392r .navbar-caption {
  font-weight: normal;
}
.cid-sx5rp1392r .nav-item:focus,
.cid-sx5rp1392r .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sx5rp1392r .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sx5rp1392r .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-sx5rp1392r .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sx5rp1392r .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx5rp1392r .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sx5rp1392r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx5rp1392r .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-sx5rp1392r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx5rp1392r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx5rp1392r .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-sx5rp1392r .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-sx5rp1392r .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sx5rp1392r .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx5rp1392r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx5rp1392r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx5rp1392r .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sx5rp1392r .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sx5rp1392r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx5rp1392r .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-sx5rp1392r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx5rp1392r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx5rp1392r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sx5rp1392r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx5rp1392r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx5rp1392r .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sx5rp1392r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx5rp1392r .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-sx5rp1392r .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sx5rp1392r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx5rp1392r .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sx5rp1392r .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sx5rp1392r .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sx5rp1392r .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sx5rp1392r .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-sx5rp1392r .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sx5rp1392r .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sx5rp1392r .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-sx5rp1392r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx5rp1392r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx5rp1392r .dropdown-item.active,
.cid-sx5rp1392r .dropdown-item:active {
  background-color: transparent;
}
.cid-sx5rp1392r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx5rp1392r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx5rp1392r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-sx5rp1392r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx5rp1392r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx5rp1392r ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sx5rp1392r .navbar-buttons {
  text-align: center;
}
.cid-sx5rp1392r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx5rp1392r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-sx5rp1392r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx5rp1392r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx5rp1392r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx5rp1392r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx5rp1392r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx5rp1392r nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx5rp1392r nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx5rp1392r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx5rp1392r .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sx5rp1392r a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx5rp1392r .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sx5rp1392r .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sx5rp1392r .soc-item {
  margin: .5rem .3rem;
}
.cid-sx5rp1392r .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-sx5rp1392r .navbar {
    height: 77px;
  }
  .cid-sx5rp1392r .navbar.opened {
    height: auto;
  }
  .cid-sx5rp1392r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sx5rp20vxz {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #fad201;
}
.cid-sx5rp20vxz .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-sx5rp20vxz .text-block {
  position: relative;
  z-index: 0;
}
.cid-sx5rp20vxz .box {
  width: 25%;
  height: 40%;
  background: #fd4f06;
  position: absolute;
  top: 4%;
}
.cid-sx5rp20vxz .box {
  left: 20%;
}
.cid-sx5rp20vxz .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-sx5rp20vxz .mbr-section-text,
.cid-sx5rp20vxz .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-sx5rp20vxz .text-box {
    display: none;
  }
  .cid-sx5rp20vxz .mbr-section-title,
  .cid-sx5rp20vxz .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sx5rp20vxz .box {
    display: none;
  }
  .cid-sx5rp20vxz .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sx5rp20vxz .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sx5rp20vxz .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sx5rp20vxz .mbr-section-text {
  color: #000000;
}
.cid-sx5rp20vxz .mbr-section-title {
  color: #000000;
}
.cid-sx5rp2qnTi {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-sx5rp2GEyG {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-sx5rp2GEyG .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sx5rp2GEyG .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sx5rp2GEyG .text-content {
  padding-right: 1.5rem;
}
.cid-sx5rp2GEyG .mbr-text {
  color: #8d97ad;
}
.cid-sx5rp2GEyG .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-sx5rp2GEyG .counter-container {
  padding-top: 1rem;
}
.cid-sx5rp2GEyG .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sx5rp2GEyG .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sx5rp2GEyG .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-sx5rp2GEyG .main-row {
    margin: 0;
  }
  .cid-sx5rp2GEyG .mbr-section-title,
  .cid-sx5rp2GEyG .mbr-text,
  .cid-sx5rp2GEyG .list,
  .cid-sx5rp2GEyG .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sx5rp2GEyG .text-content {
    padding: 0;
  }
}
.cid-sx5rp39m0L {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1428.jpg");
}
.cid-sx5rp39m0L .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sx5rp39m0L .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sx5rp39m0L .card-img span {
  font-size: 100px;
}
.cid-sx5rp39m0L .mbr-text,
.cid-sx5rp39m0L .mbr-section-btn {
  color: #efefef;
}
.cid-sx5rp39m0L .mbr-section-title,
.cid-sx5rp39m0L .card-img {
  text-align: center;
}
.cid-sx5rp3ujl6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sx5rp3ujl6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sx5rp3ujl6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sx5rp3ujl6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sx5rp3ujl6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sx5rp3ujl6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-sx5rp3ujl6 .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-sx5rp3ujl6 .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-sx5rp3ujl6 .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-sx5rp3ujl6 .mbr-gallery-filter ul {
  display: block;
}
.cid-sx5rp3ujl6 .mbr-gallery-filter ul li {
  position: relative;
}
.cid-sx5rp3ujl6 .mbr-gallery-filter li.active .btn,
.cid-sx5rp3ujl6 .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-sx5rp3ujl6 .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-sx5rp3ujl6 .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-sx5rp3ujl6 .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-sx5rp3ujl6 .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-sx5rp3ujl6 .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-sx5rp3ujl6 .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-sx5rp3ujl6 .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-sx5rp3ujl6 .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-sx5rp3ujl6 .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-sx5rp3ujl6 .icon-focus:before {
  content: '\e95e';
}
.cid-sx5rp3ujl6 .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-sx5rp3ujl6 .mbr-section-title {
  margin: 0;
}
.cid-sx5rp3ujl6 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sx5rp3ujl6 .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sx5rp4crKA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sx5rp4crKA .card-wrapper {
  z-index: 3;
}
.cid-sx5rp4crKA .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sx5rp4crKA:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sx5rp4crKA .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sx5rp4crKA .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#custom-html-80 {
  /* Type valid CSS here */
}
#custom-html-80 div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
}
#custom-html-80 p {
  font-size: 60px;
  color: #777;
}
.cid-sx5rp4Pjkg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-sx5rp4Pjkg .content {
    text-align: center;
  }
  .cid-sx5rp4Pjkg .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sx5rp4Pjkg .logo-subtitle {
  color: #8d97ad;
}
.cid-sx5rp4Pjkg .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sx5rp4Pjkg .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sx5rp4Pjkg .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sx5rp4Pjkg .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sx5rp4Pjkg .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sx5rp4Pjkg .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sx5rp4Pjkg .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sx5rp4Pjkg .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sx5rp4Pjkg .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sx5rp4Pjkg .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sx5rp4Pjkg .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sx5rp4Pjkg .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx5rp4Pjkg .list-item {
  display: flex;
}
.cid-sx5rp4Pjkg .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sx5rp4Pjkg ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sx5rp4Pjkg ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sx5rp4Pjkg ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sx5rp4Pjkg .logo-subtitle,
.cid-sx5rp4Pjkg .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-sx5rp4Pjkg .copyright > p {
  color: #ffffff;
}
.cid-sx5rp4Pjkg .column-title {
  color: #ffffff;
}
.cid-sx5rp4Pjkg P {
  color: #ffffff;
}
.cid-sx5rp4Pjkg .mbr-text {
  color: #ffffff;
}
.cid-sJGsiDRXg7 .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-sJGsiDRXg7 .nav-item,
.cid-sJGsiDRXg7 .nav-link,
.cid-sJGsiDRXg7 .navbar-caption {
  font-weight: normal;
}
.cid-sJGsiDRXg7 .nav-item:focus,
.cid-sJGsiDRXg7 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sJGsiDRXg7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sJGsiDRXg7 .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-sJGsiDRXg7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sJGsiDRXg7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sJGsiDRXg7 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sJGsiDRXg7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJGsiDRXg7 .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-sJGsiDRXg7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJGsiDRXg7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJGsiDRXg7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-sJGsiDRXg7 .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-sJGsiDRXg7 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sJGsiDRXg7 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sJGsiDRXg7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJGsiDRXg7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sJGsiDRXg7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sJGsiDRXg7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sJGsiDRXg7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJGsiDRXg7 .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-sJGsiDRXg7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJGsiDRXg7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sJGsiDRXg7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJGsiDRXg7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJGsiDRXg7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJGsiDRXg7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sJGsiDRXg7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJGsiDRXg7 .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-sJGsiDRXg7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJGsiDRXg7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJGsiDRXg7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sJGsiDRXg7 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sJGsiDRXg7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sJGsiDRXg7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJGsiDRXg7 .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-sJGsiDRXg7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJGsiDRXg7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJGsiDRXg7 .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-sJGsiDRXg7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJGsiDRXg7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJGsiDRXg7 .dropdown-item.active,
.cid-sJGsiDRXg7 .dropdown-item:active {
  background-color: transparent;
}
.cid-sJGsiDRXg7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJGsiDRXg7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJGsiDRXg7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-sJGsiDRXg7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJGsiDRXg7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJGsiDRXg7 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sJGsiDRXg7 .navbar-buttons {
  text-align: center;
}
.cid-sJGsiDRXg7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sJGsiDRXg7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-sJGsiDRXg7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJGsiDRXg7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJGsiDRXg7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJGsiDRXg7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJGsiDRXg7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJGsiDRXg7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJGsiDRXg7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJGsiDRXg7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJGsiDRXg7 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJGsiDRXg7 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sJGsiDRXg7 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sJGsiDRXg7 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sJGsiDRXg7 .soc-item {
  margin: .5rem .3rem;
}
.cid-sJGsiDRXg7 .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-sJGsiDRXg7 .navbar {
    height: 77px;
  }
  .cid-sJGsiDRXg7 .navbar.opened {
    height: auto;
  }
  .cid-sJGsiDRXg7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJGsiET2Zm {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #e1e8ff;
}
.cid-sJGsiET2Zm .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-sJGsiET2Zm .text-block {
  position: relative;
  z-index: 0;
}
.cid-sJGsiET2Zm .box {
  width: 25%;
  height: 40%;
  background: #5eeebb;
  position: absolute;
  top: 4%;
}
.cid-sJGsiET2Zm .box {
  left: 20%;
}
.cid-sJGsiET2Zm .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-sJGsiET2Zm .mbr-section-text,
.cid-sJGsiET2Zm .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-sJGsiET2Zm .text-box {
    display: none;
  }
  .cid-sJGsiET2Zm .mbr-section-title,
  .cid-sJGsiET2Zm .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sJGsiET2Zm .box {
    display: none;
  }
  .cid-sJGsiET2Zm .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sJGsiET2Zm .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJGsiET2Zm .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sJGsiET2Zm .mbr-section-text {
  color: #000000;
}
.cid-sJGsiET2Zm .mbr-section-title {
  color: #000000;
}
.cid-sJGsiFiiGC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-sJGsiFu6Wb {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-sJGsiFu6Wb .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sJGsiFu6Wb .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sJGsiFu6Wb .text-content {
  padding-right: 1.5rem;
}
.cid-sJGsiFu6Wb .mbr-text {
  color: #8d97ad;
}
.cid-sJGsiFu6Wb .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-sJGsiFu6Wb .counter-container {
  padding-top: 1rem;
}
.cid-sJGsiFu6Wb .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sJGsiFu6Wb .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sJGsiFu6Wb .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-sJGsiFu6Wb .main-row {
    margin: 0;
  }
  .cid-sJGsiFu6Wb .mbr-section-title,
  .cid-sJGsiFu6Wb .mbr-text,
  .cid-sJGsiFu6Wb .list,
  .cid-sJGsiFu6Wb .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sJGsiFu6Wb .text-content {
    padding: 0;
  }
}
.cid-sJGsiFUUYf {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1428.jpg");
}
.cid-sJGsiFUUYf .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sJGsiFUUYf .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sJGsiFUUYf .card-img span {
  font-size: 100px;
}
.cid-sJGsiFUUYf .mbr-text,
.cid-sJGsiFUUYf .mbr-section-btn {
  color: #efefef;
}
.cid-sJGsiFUUYf .mbr-section-title,
.cid-sJGsiFUUYf .card-img {
  text-align: center;
}
.cid-sJGsiGjAmq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sJGsiGjAmq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sJGsiGjAmq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sJGsiGjAmq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sJGsiGjAmq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sJGsiGjAmq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-sJGsiGjAmq .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-sJGsiGjAmq .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-sJGsiGjAmq .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-sJGsiGjAmq .mbr-gallery-filter ul {
  display: block;
}
.cid-sJGsiGjAmq .mbr-gallery-filter ul li {
  position: relative;
}
.cid-sJGsiGjAmq .mbr-gallery-filter li.active .btn,
.cid-sJGsiGjAmq .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-sJGsiGjAmq .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-sJGsiGjAmq .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-sJGsiGjAmq .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-sJGsiGjAmq .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-sJGsiGjAmq .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-sJGsiGjAmq .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-sJGsiGjAmq .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-sJGsiGjAmq .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-sJGsiGjAmq .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-sJGsiGjAmq .icon-focus:before {
  content: '\e95e';
}
.cid-sJGsiGjAmq .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-sJGsiGjAmq .mbr-section-title {
  margin: 0;
}
.cid-sJGsiGjAmq .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sJGsiGjAmq .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sJGsiH3bIU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sJGsiH3bIU .card-wrapper {
  z-index: 3;
}
.cid-sJGsiH3bIU .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sJGsiH3bIU:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sJGsiH3bIU .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sJGsiH3bIU .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#custom-html-89 {
  /* Type valid CSS here */
}
#custom-html-89 div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
  background-color: #fd4f06;
}
#custom-html-89 p {
  font-size: 60px;
  color: #777;
}
.cid-sJGsiHRsnE {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-sJGsiHRsnE .content {
    text-align: center;
  }
  .cid-sJGsiHRsnE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sJGsiHRsnE .logo-subtitle {
  color: #8d97ad;
}
.cid-sJGsiHRsnE .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sJGsiHRsnE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sJGsiHRsnE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sJGsiHRsnE .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sJGsiHRsnE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sJGsiHRsnE .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sJGsiHRsnE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sJGsiHRsnE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sJGsiHRsnE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sJGsiHRsnE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sJGsiHRsnE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sJGsiHRsnE .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sJGsiHRsnE .list-item {
  display: flex;
}
.cid-sJGsiHRsnE .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sJGsiHRsnE ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sJGsiHRsnE ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sJGsiHRsnE ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sJGsiHRsnE .logo-subtitle,
.cid-sJGsiHRsnE .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-sJGsiHRsnE .copyright > p {
  color: #ffffff;
}
.cid-sJGsiHRsnE .column-title {
  color: #ffffff;
}
.cid-sJGsiHRsnE P {
  color: #ffffff;
}
.cid-sJGsiHRsnE .mbr-text {
  color: #ffffff;
}
.cid-sJQyk4YBaL .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-sJQyk4YBaL .nav-item,
.cid-sJQyk4YBaL .nav-link,
.cid-sJQyk4YBaL .navbar-caption {
  font-weight: normal;
}
.cid-sJQyk4YBaL .nav-item:focus,
.cid-sJQyk4YBaL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sJQyk4YBaL .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sJQyk4YBaL .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-sJQyk4YBaL .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sJQyk4YBaL .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sJQyk4YBaL .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sJQyk4YBaL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJQyk4YBaL .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-sJQyk4YBaL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJQyk4YBaL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJQyk4YBaL .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-sJQyk4YBaL .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-sJQyk4YBaL .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sJQyk4YBaL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sJQyk4YBaL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJQyk4YBaL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sJQyk4YBaL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sJQyk4YBaL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sJQyk4YBaL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJQyk4YBaL .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-sJQyk4YBaL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJQyk4YBaL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sJQyk4YBaL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJQyk4YBaL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJQyk4YBaL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJQyk4YBaL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sJQyk4YBaL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJQyk4YBaL .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-sJQyk4YBaL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJQyk4YBaL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJQyk4YBaL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sJQyk4YBaL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sJQyk4YBaL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sJQyk4YBaL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJQyk4YBaL .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-sJQyk4YBaL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJQyk4YBaL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJQyk4YBaL .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-sJQyk4YBaL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJQyk4YBaL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJQyk4YBaL .dropdown-item.active,
.cid-sJQyk4YBaL .dropdown-item:active {
  background-color: transparent;
}
.cid-sJQyk4YBaL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJQyk4YBaL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJQyk4YBaL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-sJQyk4YBaL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJQyk4YBaL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJQyk4YBaL ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sJQyk4YBaL .navbar-buttons {
  text-align: center;
}
.cid-sJQyk4YBaL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sJQyk4YBaL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-sJQyk4YBaL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJQyk4YBaL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJQyk4YBaL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJQyk4YBaL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJQyk4YBaL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJQyk4YBaL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJQyk4YBaL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJQyk4YBaL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJQyk4YBaL .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJQyk4YBaL a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sJQyk4YBaL .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sJQyk4YBaL .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sJQyk4YBaL .soc-item {
  margin: .5rem .3rem;
}
.cid-sJQyk4YBaL .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-sJQyk4YBaL .navbar {
    height: 77px;
  }
  .cid-sJQyk4YBaL .navbar.opened {
    height: auto;
  }
  .cid-sJQyk4YBaL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJQyk5Y0OF {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #e1e8ff;
}
.cid-sJQyk5Y0OF .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-sJQyk5Y0OF .text-block {
  position: relative;
  z-index: 0;
}
.cid-sJQyk5Y0OF .box {
  width: 25%;
  height: 40%;
  background: #5eeebb;
  position: absolute;
  top: 4%;
}
.cid-sJQyk5Y0OF .box {
  left: 20%;
}
.cid-sJQyk5Y0OF .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-sJQyk5Y0OF .mbr-section-text,
.cid-sJQyk5Y0OF .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-sJQyk5Y0OF .text-box {
    display: none;
  }
  .cid-sJQyk5Y0OF .mbr-section-title,
  .cid-sJQyk5Y0OF .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sJQyk5Y0OF .box {
    display: none;
  }
  .cid-sJQyk5Y0OF .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sJQyk5Y0OF .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJQyk5Y0OF .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sJQyk5Y0OF .mbr-section-text {
  color: #000000;
}
.cid-sJQyk5Y0OF .mbr-section-title {
  color: #000000;
}
.cid-sJQyk6yWQ4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-sJQyk71HuM {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-sJQyk71HuM .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sJQyk71HuM .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sJQyk71HuM .text-content {
  padding-right: 1.5rem;
}
.cid-sJQyk71HuM .mbr-text {
  color: #8d97ad;
}
.cid-sJQyk71HuM .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-sJQyk71HuM .counter-container {
  padding-top: 1rem;
}
.cid-sJQyk71HuM .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sJQyk71HuM .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sJQyk71HuM .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-sJQyk71HuM .main-row {
    margin: 0;
  }
  .cid-sJQyk71HuM .mbr-section-title,
  .cid-sJQyk71HuM .mbr-text,
  .cid-sJQyk71HuM .list,
  .cid-sJQyk71HuM .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sJQyk71HuM .text-content {
    padding: 0;
  }
}
.cid-sJQyk7PtvV {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1428.jpg");
}
.cid-sJQyk7PtvV .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sJQyk7PtvV .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sJQyk7PtvV .card-img span {
  font-size: 100px;
}
.cid-sJQyk7PtvV .mbr-text,
.cid-sJQyk7PtvV .mbr-section-btn {
  color: #efefef;
}
.cid-sJQyk7PtvV .mbr-section-title,
.cid-sJQyk7PtvV .card-img {
  text-align: center;
}
.cid-sJQyk8o9tz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sJQyk8o9tz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sJQyk8o9tz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sJQyk8o9tz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sJQyk8o9tz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sJQyk8o9tz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-sJQyk8o9tz .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-sJQyk8o9tz .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-sJQyk8o9tz .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-sJQyk8o9tz .mbr-gallery-filter ul {
  display: block;
}
.cid-sJQyk8o9tz .mbr-gallery-filter ul li {
  position: relative;
}
.cid-sJQyk8o9tz .mbr-gallery-filter li.active .btn,
.cid-sJQyk8o9tz .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-sJQyk8o9tz .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-sJQyk8o9tz .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-sJQyk8o9tz .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-sJQyk8o9tz .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-sJQyk8o9tz .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-sJQyk8o9tz .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-sJQyk8o9tz .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-sJQyk8o9tz .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-sJQyk8o9tz .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-sJQyk8o9tz .icon-focus:before {
  content: '\e95e';
}
.cid-sJQyk8o9tz .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-sJQyk8o9tz .mbr-section-title {
  margin: 0;
}
.cid-sJQyk8o9tz .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sJQyk8o9tz .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sJQykaz6g9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sJQykaz6g9 .card-wrapper {
  z-index: 3;
}
.cid-sJQykaz6g9 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sJQykaz6g9:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sJQykaz6g9 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sJQykaz6g9 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#custom-html-8i {
  /* Type valid CSS here */
}
#custom-html-8i div {
  padding-top: 0%;
  padding-right: 5%;
  padding-bottom: 5%;
  padding-left: 5%;
  color: #777;
  text-align: center;
  background-color: #fd4f06;
}
#custom-html-8i p {
  font-size: 60px;
  color: #777;
}
.cid-sJQykbtUao {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-sJQykbtUao .content {
    text-align: center;
  }
  .cid-sJQykbtUao .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sJQykbtUao .logo-subtitle {
  color: #8d97ad;
}
.cid-sJQykbtUao .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sJQykbtUao .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sJQykbtUao .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sJQykbtUao .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sJQykbtUao .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sJQykbtUao .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sJQykbtUao .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sJQykbtUao .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sJQykbtUao .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sJQykbtUao .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sJQykbtUao .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sJQykbtUao .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sJQykbtUao .list-item {
  display: flex;
}
.cid-sJQykbtUao .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sJQykbtUao ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sJQykbtUao ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sJQykbtUao ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sJQykbtUao .logo-subtitle,
.cid-sJQykbtUao .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-sJQykbtUao .copyright > p {
  color: #ffffff;
}
.cid-sJQykbtUao .column-title {
  color: #ffffff;
}
.cid-sJQykbtUao P {
  color: #ffffff;
}
.cid-sJQykbtUao .mbr-text {
  color: #ffffff;
}
.cid-sPK6lHwgqY .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-sPK6lHwgqY .nav-item,
.cid-sPK6lHwgqY .nav-link,
.cid-sPK6lHwgqY .navbar-caption {
  font-weight: normal;
}
.cid-sPK6lHwgqY .nav-item:focus,
.cid-sPK6lHwgqY .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sPK6lHwgqY .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sPK6lHwgqY .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-sPK6lHwgqY .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sPK6lHwgqY .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sPK6lHwgqY .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sPK6lHwgqY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sPK6lHwgqY .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-sPK6lHwgqY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPK6lHwgqY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPK6lHwgqY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-sPK6lHwgqY .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-sPK6lHwgqY .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sPK6lHwgqY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPK6lHwgqY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPK6lHwgqY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPK6lHwgqY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sPK6lHwgqY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPK6lHwgqY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPK6lHwgqY .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-sPK6lHwgqY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPK6lHwgqY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sPK6lHwgqY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sPK6lHwgqY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPK6lHwgqY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPK6lHwgqY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPK6lHwgqY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPK6lHwgqY .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-sPK6lHwgqY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sPK6lHwgqY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPK6lHwgqY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sPK6lHwgqY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sPK6lHwgqY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sPK6lHwgqY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sPK6lHwgqY .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-sPK6lHwgqY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sPK6lHwgqY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPK6lHwgqY .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-sPK6lHwgqY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPK6lHwgqY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPK6lHwgqY .dropdown-item.active,
.cid-sPK6lHwgqY .dropdown-item:active {
  background-color: transparent;
}
.cid-sPK6lHwgqY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPK6lHwgqY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPK6lHwgqY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-sPK6lHwgqY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPK6lHwgqY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPK6lHwgqY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPK6lHwgqY .navbar-buttons {
  text-align: center;
}
.cid-sPK6lHwgqY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPK6lHwgqY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-sPK6lHwgqY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sPK6lHwgqY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sPK6lHwgqY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sPK6lHwgqY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sPK6lHwgqY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sPK6lHwgqY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sPK6lHwgqY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sPK6lHwgqY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sPK6lHwgqY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sPK6lHwgqY a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sPK6lHwgqY .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sPK6lHwgqY .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sPK6lHwgqY .soc-item {
  margin: .5rem .3rem;
}
.cid-sPK6lHwgqY .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-sPK6lHwgqY .navbar {
    height: 77px;
  }
  .cid-sPK6lHwgqY .navbar.opened {
    height: auto;
  }
  .cid-sPK6lHwgqY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPK6lHVLg5 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #72d744;
}
.cid-sPK6lHVLg5 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-sPK6lHVLg5 .text-block {
  position: relative;
  z-index: 0;
}
.cid-sPK6lHVLg5 .box {
  width: 25%;
  height: 40%;
  background: #51aafa;
  position: absolute;
  top: 4%;
}
.cid-sPK6lHVLg5 .box {
  left: 20%;
}
.cid-sPK6lHVLg5 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-sPK6lHVLg5 .mbr-section-text,
.cid-sPK6lHVLg5 .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-sPK6lHVLg5 .text-box {
    display: none;
  }
  .cid-sPK6lHVLg5 .mbr-section-title,
  .cid-sPK6lHVLg5 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sPK6lHVLg5 .box {
    display: none;
  }
  .cid-sPK6lHVLg5 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sPK6lHVLg5 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPK6lHVLg5 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sPK6lHVLg5 .mbr-section-text {
  color: #000000;
}
.cid-sPK6lHVLg5 .mbr-section-title {
  color: #ffffff;
}
.cid-sPK6lI6uM9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-sPK6lIbh3u {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sPK6lIbh3u .mbr-text,
.cid-sPK6lIbh3u .mbr-section-subtitle {
  color: #767676;
}
.cid-sPK6lIbh3u .card-title {
  color: #66458e;
}
.cid-sPK6lIbh3u .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sPK6lIbh3u .mbr-section-subtitle,
  .cid-sPK6lIbh3u .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPK6lIbh3u .card .card-img span {
    background: none;
  }
}
.cid-sPK6lIbh3u .card-title,
.cid-sPK6lIbh3u .card-img {
  color: #fd4f06;
}
.cid-sPK6lIupms {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sPK6lIupms .mbr-text,
.cid-sPK6lIupms .mbr-section-subtitle {
  color: #767676;
}
.cid-sPK6lIupms .card-title {
  color: #66458e;
}
.cid-sPK6lIupms .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sPK6lIupms .mbr-section-subtitle,
  .cid-sPK6lIupms .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPK6lIupms .card .card-img span {
    background: none;
  }
}
.cid-sPK6lIupms .card-title,
.cid-sPK6lIupms .card-img {
  color: #006999;
}
.cid-sPK6lILMIl {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-sPK6lILMIl .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sPK6lILMIl .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sPK6lILMIl .card-img span {
  font-size: 100px;
}
.cid-sPK6lILMIl .mbr-text,
.cid-sPK6lILMIl .mbr-section-btn {
  color: #efefef;
}
.cid-sPK6lILMIl .mbr-section-title,
.cid-sPK6lILMIl .card-img {
  text-align: center;
}
.cid-sPK6lIYDSA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-sPK6lIYDSA .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-sPK6lIYDSA .mbr-section-title {
  margin: 0;
}
.cid-sPK6lIYDSA .card-img {
  text-align: center;
}
.cid-sPK6lIYDSA .mbr-section-subtitle,
.cid-sPK6lIYDSA .mbr-text {
  color: #8d97ad;
}
.cid-sPK6lIYDSA .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-sPK6lIYDSA .card-img,
  .cid-sPK6lIYDSA .mbr-text,
  .cid-sPK6lIYDSA .mbr-card-title,
  .cid-sPK6lIYDSA .mbr-section-subtitle,
  .cid-sPK6lIYDSA .mbr-section-title,
  .cid-sPK6lIYDSA .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-sPK6lIYDSA .row-item {
    margin-bottom: 2rem;
  }
}
.cid-sPT8ygG9Qo {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1-1920x1440.jpg");
}
.cid-sPT8ygG9Qo .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sPT8ygG9Qo .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sPT8ygG9Qo .card-img span {
  font-size: 100px;
}
.cid-sPT8ygG9Qo .mbr-text,
.cid-sPT8ygG9Qo .mbr-section-btn {
  color: #efefef;
}
.cid-sPT8ygG9Qo .mbr-section-title,
.cid-sPT8ygG9Qo .card-img {
  text-align: center;
}
.cid-sPT8yXFGJA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sPT8yXFGJA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sPT8yXFGJA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sPT8yXFGJA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sPT8yXFGJA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sPT8yXFGJA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-sPT8yXFGJA .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-sPT8yXFGJA .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-sPT8yXFGJA .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-sPT8yXFGJA .mbr-gallery-filter ul {
  display: block;
}
.cid-sPT8yXFGJA .mbr-gallery-filter ul li {
  position: relative;
}
.cid-sPT8yXFGJA .mbr-gallery-filter li.active .btn,
.cid-sPT8yXFGJA .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-sPT8yXFGJA .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-sPT8yXFGJA .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-sPT8yXFGJA .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-sPT8yXFGJA .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-sPT8yXFGJA .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-sPT8yXFGJA .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-sPT8yXFGJA .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-sPT8yXFGJA .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-sPT8yXFGJA .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-sPT8yXFGJA .icon-focus:before {
  content: '\e95e';
}
.cid-sPT8yXFGJA .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-sPT8yXFGJA .mbr-section-title {
  margin: 0;
}
.cid-sPT8yXFGJA .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sPT8yXFGJA .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sQdIctpVlc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sQdIctpVlc .card-wrapper {
  z-index: 3;
}
.cid-sQdIctpVlc .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sQdIctpVlc:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sQdIctpVlc .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sQdIctpVlc .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#25081-Contacto {
  /* Type valid CSS here */
}
#25081-Contacto div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
  background: #fd4f06;
}
#25081-Contacto p {
  font-size: 60px;
  color: #777;
}
.cid-sPK6lJDcib {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-sPK6lJDcib .content {
    text-align: center;
  }
  .cid-sPK6lJDcib .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sPK6lJDcib .logo-subtitle {
  color: #8d97ad;
}
.cid-sPK6lJDcib .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sPK6lJDcib .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sPK6lJDcib .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sPK6lJDcib .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sPK6lJDcib .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sPK6lJDcib .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sPK6lJDcib .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sPK6lJDcib .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sPK6lJDcib .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sPK6lJDcib .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sPK6lJDcib .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sPK6lJDcib .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sPK6lJDcib .list-item {
  display: flex;
}
.cid-sPK6lJDcib .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sPK6lJDcib ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sPK6lJDcib ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sPK6lJDcib ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sPK6lJDcib .logo-subtitle,
.cid-sPK6lJDcib .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-sPK6lJDcib .copyright > p {
  color: #ffffff;
}
.cid-sPK6lJDcib .column-title {
  color: #ffffff;
}
.cid-sPK6lJDcib P {
  color: #ffffff;
}
.cid-sPK6lJDcib .mbr-text {
  color: #ffffff;
}
.cid-sQdVloY8rB .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-sQdVloY8rB .nav-item,
.cid-sQdVloY8rB .nav-link,
.cid-sQdVloY8rB .navbar-caption {
  font-weight: normal;
}
.cid-sQdVloY8rB .nav-item:focus,
.cid-sQdVloY8rB .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sQdVloY8rB .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sQdVloY8rB .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-sQdVloY8rB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sQdVloY8rB .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sQdVloY8rB .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sQdVloY8rB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQdVloY8rB .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-sQdVloY8rB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQdVloY8rB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQdVloY8rB .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-sQdVloY8rB .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-sQdVloY8rB .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sQdVloY8rB .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQdVloY8rB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQdVloY8rB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQdVloY8rB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sQdVloY8rB .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sQdVloY8rB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQdVloY8rB .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-sQdVloY8rB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQdVloY8rB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQdVloY8rB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sQdVloY8rB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQdVloY8rB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQdVloY8rB .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sQdVloY8rB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQdVloY8rB .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-sQdVloY8rB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sQdVloY8rB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQdVloY8rB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sQdVloY8rB .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sQdVloY8rB .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQdVloY8rB .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sQdVloY8rB .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-sQdVloY8rB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sQdVloY8rB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sQdVloY8rB .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-sQdVloY8rB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQdVloY8rB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQdVloY8rB .dropdown-item.active,
.cid-sQdVloY8rB .dropdown-item:active {
  background-color: transparent;
}
.cid-sQdVloY8rB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQdVloY8rB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQdVloY8rB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-sQdVloY8rB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQdVloY8rB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQdVloY8rB ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sQdVloY8rB .navbar-buttons {
  text-align: center;
}
.cid-sQdVloY8rB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sQdVloY8rB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-sQdVloY8rB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sQdVloY8rB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sQdVloY8rB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sQdVloY8rB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sQdVloY8rB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQdVloY8rB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sQdVloY8rB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sQdVloY8rB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQdVloY8rB .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sQdVloY8rB a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sQdVloY8rB .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sQdVloY8rB .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sQdVloY8rB .soc-item {
  margin: .5rem .3rem;
}
.cid-sQdVloY8rB .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-sQdVloY8rB .navbar {
    height: 77px;
  }
  .cid-sQdVloY8rB .navbar.opened {
    height: auto;
  }
  .cid-sQdVloY8rB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQdVlq7UCd {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #1dc9cb;
}
.cid-sQdVlq7UCd .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-sQdVlq7UCd .text-block {
  position: relative;
  z-index: 0;
}
.cid-sQdVlq7UCd .box {
  width: 25%;
  height: 40%;
  background: #51aafa;
  position: absolute;
  top: 4%;
}
.cid-sQdVlq7UCd .box {
  left: 20%;
}
.cid-sQdVlq7UCd .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-sQdVlq7UCd .mbr-section-text,
.cid-sQdVlq7UCd .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-sQdVlq7UCd .text-box {
    display: none;
  }
  .cid-sQdVlq7UCd .mbr-section-title,
  .cid-sQdVlq7UCd .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sQdVlq7UCd .box {
    display: none;
  }
  .cid-sQdVlq7UCd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sQdVlq7UCd .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQdVlq7UCd .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sQdVlq7UCd .mbr-section-text {
  color: #000000;
}
.cid-sQdVlq7UCd .mbr-section-title {
  color: #ffffff;
}
.cid-sQdVlqtvLc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-sQdVlqB3il {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sQdVlqB3il .mbr-text,
.cid-sQdVlqB3il .mbr-section-subtitle {
  color: #767676;
}
.cid-sQdVlqB3il .card-title {
  color: #66458e;
}
.cid-sQdVlqB3il .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sQdVlqB3il .mbr-section-subtitle,
  .cid-sQdVlqB3il .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sQdVlqB3il .card-title,
.cid-sQdVlqB3il .card-img {
  color: #fd4f06;
}
.cid-sQdVlr3Jqd {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sQdVlr3Jqd .mbr-text,
.cid-sQdVlr3Jqd .mbr-section-subtitle {
  color: #767676;
}
.cid-sQdVlr3Jqd .card-title {
  color: #66458e;
}
.cid-sQdVlr3Jqd .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sQdVlr3Jqd .mbr-section-subtitle,
  .cid-sQdVlr3Jqd .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQdVlr3Jqd .card .card-img span {
    background: none;
  }
}
.cid-sQdVlr3Jqd .card-title,
.cid-sQdVlr3Jqd .card-img {
  color: #006999;
}
.cid-sQdVlrnvRN {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-sQdVlrnvRN .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sQdVlrnvRN .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sQdVlrnvRN .card-img span {
  font-size: 100px;
}
.cid-sQdVlrnvRN .mbr-text,
.cid-sQdVlrnvRN .mbr-section-btn {
  color: #efefef;
}
.cid-sQdVlrnvRN .mbr-section-title,
.cid-sQdVlrnvRN .card-img {
  text-align: center;
}
.cid-sQdVlrCneP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-sQdVlrCneP .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-sQdVlrCneP .mbr-section-title {
  margin: 0;
}
.cid-sQdVlrCneP .card-img {
  text-align: center;
}
.cid-sQdVlrCneP .mbr-section-subtitle,
.cid-sQdVlrCneP .mbr-text {
  color: #8d97ad;
}
.cid-sQdVlrCneP .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-sQdVlrCneP .card-img,
  .cid-sQdVlrCneP .mbr-text,
  .cid-sQdVlrCneP .mbr-card-title,
  .cid-sQdVlrCneP .mbr-section-subtitle,
  .cid-sQdVlrCneP .mbr-section-title,
  .cid-sQdVlrCneP .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-sQdVlrCneP .row-item {
    margin-bottom: 2rem;
  }
}
.cid-sQdVls083R {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1-1920x1440.jpg");
}
.cid-sQdVls083R .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sQdVls083R .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sQdVls083R .card-img span {
  font-size: 100px;
}
.cid-sQdVls083R .mbr-text,
.cid-sQdVls083R .mbr-section-btn {
  color: #efefef;
}
.cid-sQdVls083R .mbr-section-title,
.cid-sQdVls083R .card-img {
  text-align: center;
}
.cid-sQdVlscfgy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sQdVlscfgy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sQdVlscfgy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQdVlscfgy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sQdVlscfgy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sQdVlscfgy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-sQdVlscfgy .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-sQdVlscfgy .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-sQdVlscfgy .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-sQdVlscfgy .mbr-gallery-filter ul {
  display: block;
}
.cid-sQdVlscfgy .mbr-gallery-filter ul li {
  position: relative;
}
.cid-sQdVlscfgy .mbr-gallery-filter li.active .btn,
.cid-sQdVlscfgy .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-sQdVlscfgy .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-sQdVlscfgy .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-sQdVlscfgy .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-sQdVlscfgy .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-sQdVlscfgy .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-sQdVlscfgy .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-sQdVlscfgy .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-sQdVlscfgy .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-sQdVlscfgy .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-sQdVlscfgy .icon-focus:before {
  content: '\e95e';
}
.cid-sQdVlscfgy .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-sQdVlscfgy .mbr-section-title {
  margin: 0;
}
.cid-sQdVlscfgy .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sQdVlscfgy .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sQdVlt5TMV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sQdVlt5TMV .card-wrapper {
  z-index: 3;
}
.cid-sQdVlt5TMV .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sQdVlt5TMV:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sQdVlt5TMV .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sQdVlt5TMV .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#Contacto {
  /* Type valid CSS here */
}
#Contacto div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
  background: #fd4f06;
}
#Contacto p {
  font-size: 60px;
  color: #777;
}
.cid-sQdVltB0Ha {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-sQdVltB0Ha .content {
    text-align: center;
  }
  .cid-sQdVltB0Ha .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sQdVltB0Ha .logo-subtitle {
  color: #8d97ad;
}
.cid-sQdVltB0Ha .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sQdVltB0Ha .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sQdVltB0Ha .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sQdVltB0Ha .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sQdVltB0Ha .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sQdVltB0Ha .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sQdVltB0Ha .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sQdVltB0Ha .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sQdVltB0Ha .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sQdVltB0Ha .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sQdVltB0Ha .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sQdVltB0Ha .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sQdVltB0Ha .list-item {
  display: flex;
}
.cid-sQdVltB0Ha .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sQdVltB0Ha ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sQdVltB0Ha ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sQdVltB0Ha ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sQdVltB0Ha .logo-subtitle,
.cid-sQdVltB0Ha .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-sQdVltB0Ha .copyright > p {
  color: #ffffff;
}
.cid-sQdVltB0Ha .column-title {
  color: #ffffff;
}
.cid-sQdVltB0Ha P {
  color: #ffffff;
}
.cid-sQdVltB0Ha .mbr-text {
  color: #ffffff;
}
.cid-sQe00va4yR .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-sQe00va4yR .nav-item,
.cid-sQe00va4yR .nav-link,
.cid-sQe00va4yR .navbar-caption {
  font-weight: normal;
}
.cid-sQe00va4yR .nav-item:focus,
.cid-sQe00va4yR .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sQe00va4yR .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sQe00va4yR .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-sQe00va4yR .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sQe00va4yR .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sQe00va4yR .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sQe00va4yR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQe00va4yR .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-sQe00va4yR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQe00va4yR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQe00va4yR .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-sQe00va4yR .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-sQe00va4yR .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sQe00va4yR .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQe00va4yR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQe00va4yR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQe00va4yR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sQe00va4yR .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sQe00va4yR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQe00va4yR .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-sQe00va4yR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQe00va4yR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQe00va4yR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sQe00va4yR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQe00va4yR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQe00va4yR .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sQe00va4yR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQe00va4yR .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-sQe00va4yR .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sQe00va4yR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQe00va4yR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sQe00va4yR .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sQe00va4yR .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQe00va4yR .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sQe00va4yR .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-sQe00va4yR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sQe00va4yR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sQe00va4yR .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-sQe00va4yR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQe00va4yR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQe00va4yR .dropdown-item.active,
.cid-sQe00va4yR .dropdown-item:active {
  background-color: transparent;
}
.cid-sQe00va4yR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQe00va4yR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQe00va4yR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-sQe00va4yR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQe00va4yR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQe00va4yR ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sQe00va4yR .navbar-buttons {
  text-align: center;
}
.cid-sQe00va4yR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sQe00va4yR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-sQe00va4yR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sQe00va4yR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sQe00va4yR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sQe00va4yR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sQe00va4yR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQe00va4yR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sQe00va4yR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sQe00va4yR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQe00va4yR .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sQe00va4yR a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sQe00va4yR .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sQe00va4yR .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sQe00va4yR .soc-item {
  margin: .5rem .3rem;
}
.cid-sQe00va4yR .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-sQe00va4yR .navbar {
    height: 77px;
  }
  .cid-sQe00va4yR .navbar.opened {
    height: auto;
  }
  .cid-sQe00va4yR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQe00w6LnI {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ff695c;
}
.cid-sQe00w6LnI .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-sQe00w6LnI .text-block {
  position: relative;
  z-index: 0;
}
.cid-sQe00w6LnI .box {
  width: 25%;
  height: 40%;
  background: #51aafa;
  position: absolute;
  top: 4%;
}
.cid-sQe00w6LnI .box {
  left: 20%;
}
.cid-sQe00w6LnI .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-sQe00w6LnI .mbr-section-text,
.cid-sQe00w6LnI .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-sQe00w6LnI .text-box {
    display: none;
  }
  .cid-sQe00w6LnI .mbr-section-title,
  .cid-sQe00w6LnI .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sQe00w6LnI .box {
    display: none;
  }
  .cid-sQe00w6LnI .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sQe00w6LnI .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQe00w6LnI .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sQe00w6LnI .mbr-section-text {
  color: #000000;
}
.cid-sQe00w6LnI .mbr-section-title {
  color: #ffffff;
}
.cid-sQe00wq9qD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-sQe00wxzTC {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sQe00wxzTC .mbr-text,
.cid-sQe00wxzTC .mbr-section-subtitle {
  color: #767676;
}
.cid-sQe00wxzTC .card-title {
  color: #66458e;
}
.cid-sQe00wxzTC .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sQe00wxzTC .mbr-section-subtitle,
  .cid-sQe00wxzTC .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sQe00wxzTC .card-title,
.cid-sQe00wxzTC .card-img {
  color: #fd4f06;
}
.cid-sQe00wUgYI {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sQe00wUgYI .mbr-text,
.cid-sQe00wUgYI .mbr-section-subtitle {
  color: #767676;
}
.cid-sQe00wUgYI .card-title {
  color: #66458e;
}
.cid-sQe00wUgYI .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sQe00wUgYI .mbr-section-subtitle,
  .cid-sQe00wUgYI .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQe00wUgYI .card .card-img span {
    background: none;
  }
}
.cid-sQe00wUgYI .card-title,
.cid-sQe00wUgYI .card-img {
  color: #006999;
}
.cid-sQe00xbRkA {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-sQe00xbRkA .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sQe00xbRkA .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sQe00xbRkA .card-img span {
  font-size: 100px;
}
.cid-sQe00xbRkA .mbr-text,
.cid-sQe00xbRkA .mbr-section-btn {
  color: #efefef;
}
.cid-sQe00xbRkA .mbr-section-title,
.cid-sQe00xbRkA .card-img {
  text-align: center;
}
.cid-sQe00xoR8v {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-sQe00xoR8v .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-sQe00xoR8v .mbr-section-title {
  margin: 0;
}
.cid-sQe00xoR8v .card-img {
  text-align: center;
}
.cid-sQe00xoR8v .mbr-section-subtitle,
.cid-sQe00xoR8v .mbr-text {
  color: #8d97ad;
}
.cid-sQe00xoR8v .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-sQe00xoR8v .card-img,
  .cid-sQe00xoR8v .mbr-text,
  .cid-sQe00xoR8v .mbr-card-title,
  .cid-sQe00xoR8v .mbr-section-subtitle,
  .cid-sQe00xoR8v .mbr-section-title,
  .cid-sQe00xoR8v .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-sQe00xoR8v .row-item {
    margin-bottom: 2rem;
  }
}
.cid-sQe00xOcOS {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1-1920x1440.jpg");
}
.cid-sQe00xOcOS .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sQe00xOcOS .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sQe00xOcOS .card-img span {
  font-size: 100px;
}
.cid-sQe00xOcOS .mbr-text,
.cid-sQe00xOcOS .mbr-section-btn {
  color: #efefef;
}
.cid-sQe00xOcOS .mbr-section-title,
.cid-sQe00xOcOS .card-img {
  text-align: center;
}
.cid-sQe2kOmXVv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sQe2kOmXVv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sQe2kOmXVv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQe2kOmXVv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sQe2kOmXVv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sQe2kOmXVv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-sQe2kOmXVv .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-sQe2kOmXVv .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-sQe2kOmXVv .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-sQe2kOmXVv .mbr-gallery-filter ul {
  display: block;
}
.cid-sQe2kOmXVv .mbr-gallery-filter ul li {
  position: relative;
}
.cid-sQe2kOmXVv .mbr-gallery-filter li.active .btn,
.cid-sQe2kOmXVv .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-sQe2kOmXVv .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-sQe2kOmXVv .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-sQe2kOmXVv .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-sQe2kOmXVv .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-sQe2kOmXVv .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-sQe2kOmXVv .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-sQe2kOmXVv .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-sQe2kOmXVv .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-sQe2kOmXVv .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-sQe2kOmXVv .icon-focus:before {
  content: '\e95e';
}
.cid-sQe2kOmXVv .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-sQe2kOmXVv .mbr-section-title {
  margin: 0;
}
.cid-sQe2kOmXVv .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sQe2kOmXVv .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sQe00ysdBN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sQe00ysdBN .card-wrapper {
  z-index: 3;
}
.cid-sQe00ysdBN .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sQe00ysdBN:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sQe00ysdBN .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sQe00ysdBN .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#custom-html-9l {
  /* Type valid CSS here */
}
#custom-html-9l div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
  background: #fd4f06;
}
#custom-html-9l p {
  font-size: 60px;
  color: #777;
}
.cid-sQe00yQJAx {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-sQe00yQJAx .content {
    text-align: center;
  }
  .cid-sQe00yQJAx .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sQe00yQJAx .logo-subtitle {
  color: #8d97ad;
}
.cid-sQe00yQJAx .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sQe00yQJAx .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sQe00yQJAx .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sQe00yQJAx .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sQe00yQJAx .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sQe00yQJAx .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sQe00yQJAx .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sQe00yQJAx .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sQe00yQJAx .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sQe00yQJAx .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sQe00yQJAx .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sQe00yQJAx .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sQe00yQJAx .list-item {
  display: flex;
}
.cid-sQe00yQJAx .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sQe00yQJAx ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sQe00yQJAx ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sQe00yQJAx ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sQe00yQJAx .logo-subtitle,
.cid-sQe00yQJAx .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-sQe00yQJAx .copyright > p {
  color: #ffffff;
}
.cid-sQe00yQJAx .column-title {
  color: #ffffff;
}
.cid-sQe00yQJAx P {
  color: #ffffff;
}
.cid-sQe00yQJAx .mbr-text {
  color: #ffffff;
}
.cid-sR9pxfZXjN .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-sR9pxfZXjN .nav-item,
.cid-sR9pxfZXjN .nav-link,
.cid-sR9pxfZXjN .navbar-caption {
  font-weight: normal;
}
.cid-sR9pxfZXjN .nav-item:focus,
.cid-sR9pxfZXjN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sR9pxfZXjN .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sR9pxfZXjN .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-sR9pxfZXjN .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sR9pxfZXjN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sR9pxfZXjN .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sR9pxfZXjN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sR9pxfZXjN .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-sR9pxfZXjN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sR9pxfZXjN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sR9pxfZXjN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-sR9pxfZXjN .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-sR9pxfZXjN .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sR9pxfZXjN .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sR9pxfZXjN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sR9pxfZXjN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sR9pxfZXjN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sR9pxfZXjN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sR9pxfZXjN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sR9pxfZXjN .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-sR9pxfZXjN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sR9pxfZXjN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sR9pxfZXjN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sR9pxfZXjN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sR9pxfZXjN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sR9pxfZXjN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sR9pxfZXjN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sR9pxfZXjN .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-sR9pxfZXjN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sR9pxfZXjN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sR9pxfZXjN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sR9pxfZXjN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sR9pxfZXjN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sR9pxfZXjN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sR9pxfZXjN .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-sR9pxfZXjN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sR9pxfZXjN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sR9pxfZXjN .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-sR9pxfZXjN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sR9pxfZXjN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sR9pxfZXjN .dropdown-item.active,
.cid-sR9pxfZXjN .dropdown-item:active {
  background-color: transparent;
}
.cid-sR9pxfZXjN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sR9pxfZXjN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sR9pxfZXjN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-sR9pxfZXjN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sR9pxfZXjN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sR9pxfZXjN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sR9pxfZXjN .navbar-buttons {
  text-align: center;
}
.cid-sR9pxfZXjN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sR9pxfZXjN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-sR9pxfZXjN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sR9pxfZXjN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sR9pxfZXjN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sR9pxfZXjN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sR9pxfZXjN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sR9pxfZXjN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sR9pxfZXjN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sR9pxfZXjN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sR9pxfZXjN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sR9pxfZXjN a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sR9pxfZXjN .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sR9pxfZXjN .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sR9pxfZXjN .soc-item {
  margin: .5rem .3rem;
}
.cid-sR9pxfZXjN .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-sR9pxfZXjN .navbar {
    height: 77px;
  }
  .cid-sR9pxfZXjN .navbar.opened {
    height: auto;
  }
  .cid-sR9pxfZXjN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sR9pxhRGC5 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f1ab00;
}
.cid-sR9pxhRGC5 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-sR9pxhRGC5 .text-block {
  position: relative;
  z-index: 0;
}
.cid-sR9pxhRGC5 .box {
  width: 25%;
  height: 40%;
  background: #bf5c75;
  position: absolute;
  top: 4%;
}
.cid-sR9pxhRGC5 .box {
  left: 20%;
}
.cid-sR9pxhRGC5 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-sR9pxhRGC5 .mbr-section-text,
.cid-sR9pxhRGC5 .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-sR9pxhRGC5 .text-box {
    display: none;
  }
  .cid-sR9pxhRGC5 .mbr-section-title,
  .cid-sR9pxhRGC5 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sR9pxhRGC5 .box {
    display: none;
  }
  .cid-sR9pxhRGC5 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sR9pxhRGC5 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sR9pxhRGC5 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sR9pxhRGC5 .mbr-section-text {
  color: #000000;
}
.cid-sR9pxhRGC5 .mbr-section-title {
  color: #ffffff;
}
.cid-sR9pxiIvlE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-sR9pxjP8BL {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sR9pxjP8BL .mbr-text,
.cid-sR9pxjP8BL .mbr-section-subtitle {
  color: #767676;
}
.cid-sR9pxjP8BL .card-title {
  color: #66458e;
}
.cid-sR9pxjP8BL .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sR9pxjP8BL .mbr-section-subtitle,
  .cid-sR9pxjP8BL .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sR9pxjP8BL .card-title,
.cid-sR9pxjP8BL .card-img {
  color: #fd4f06;
}
.cid-sR9pxloufD {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sR9pxloufD .mbr-text,
.cid-sR9pxloufD .mbr-section-subtitle {
  color: #767676;
}
.cid-sR9pxloufD .card-title {
  color: #66458e;
}
.cid-sR9pxloufD .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sR9pxloufD .mbr-section-subtitle,
  .cid-sR9pxloufD .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sR9pxloufD .card .card-img span {
    background: none;
  }
}
.cid-sR9pxloufD .card-title,
.cid-sR9pxloufD .card-img {
  color: #006999;
}
.cid-sR9pxmRY3P {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-sR9pxmRY3P .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sR9pxmRY3P .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sR9pxmRY3P .card-img span {
  font-size: 100px;
}
.cid-sR9pxmRY3P .mbr-text,
.cid-sR9pxmRY3P .mbr-section-btn {
  color: #efefef;
}
.cid-sR9pxmRY3P .mbr-section-title,
.cid-sR9pxmRY3P .card-img {
  text-align: center;
}
.cid-sR9pxni3RQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-sR9pxni3RQ .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-sR9pxni3RQ .mbr-section-title {
  margin: 0;
}
.cid-sR9pxni3RQ .card-img {
  text-align: center;
}
.cid-sR9pxni3RQ .mbr-section-subtitle,
.cid-sR9pxni3RQ .mbr-text {
  color: #8d97ad;
}
.cid-sR9pxni3RQ .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-sR9pxni3RQ .card-img,
  .cid-sR9pxni3RQ .mbr-text,
  .cid-sR9pxni3RQ .mbr-card-title,
  .cid-sR9pxni3RQ .mbr-section-subtitle,
  .cid-sR9pxni3RQ .mbr-section-title,
  .cid-sR9pxni3RQ .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-sR9pxni3RQ .row-item {
    margin-bottom: 2rem;
  }
}
.cid-sR9pxoX9Tn {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1-1920x1440.jpg");
}
.cid-sR9pxoX9Tn .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sR9pxoX9Tn .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sR9pxoX9Tn .card-img span {
  font-size: 100px;
}
.cid-sR9pxoX9Tn .mbr-text,
.cid-sR9pxoX9Tn .mbr-section-btn {
  color: #efefef;
}
.cid-sR9pxoX9Tn .mbr-section-title,
.cid-sR9pxoX9Tn .card-img {
  text-align: center;
}
.cid-sR9pxpZK8e {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sR9pxpZK8e .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sR9pxpZK8e .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sR9pxpZK8e .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sR9pxpZK8e .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sR9pxpZK8e .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-sR9pxpZK8e .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-sR9pxpZK8e .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-sR9pxpZK8e .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-sR9pxpZK8e .mbr-gallery-filter ul {
  display: block;
}
.cid-sR9pxpZK8e .mbr-gallery-filter ul li {
  position: relative;
}
.cid-sR9pxpZK8e .mbr-gallery-filter li.active .btn,
.cid-sR9pxpZK8e .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-sR9pxpZK8e .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-sR9pxpZK8e .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-sR9pxpZK8e .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-sR9pxpZK8e .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-sR9pxpZK8e .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-sR9pxpZK8e .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-sR9pxpZK8e .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-sR9pxpZK8e .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-sR9pxpZK8e .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-sR9pxpZK8e .icon-focus:before {
  content: '\e95e';
}
.cid-sR9pxpZK8e .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-sR9pxpZK8e .mbr-section-title {
  margin: 0;
}
.cid-sR9pxpZK8e .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sR9pxpZK8e .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sR9pxrymSe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sR9pxrymSe .card-wrapper {
  z-index: 3;
}
.cid-sR9pxrymSe .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sR9pxrymSe:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sR9pxrymSe .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sR9pxrymSe .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#custom-html-9y {
  /* Type valid CSS here */
}
#custom-html-9y div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
  background: #fd4f06;
}
#custom-html-9y p {
  font-size: 60px;
  color: #777;
}
.cid-sR9pxt9wUX {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-sR9pxt9wUX .content {
    text-align: center;
  }
  .cid-sR9pxt9wUX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sR9pxt9wUX .logo-subtitle {
  color: #8d97ad;
}
.cid-sR9pxt9wUX .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sR9pxt9wUX .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sR9pxt9wUX .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sR9pxt9wUX .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sR9pxt9wUX .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sR9pxt9wUX .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sR9pxt9wUX .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sR9pxt9wUX .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sR9pxt9wUX .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sR9pxt9wUX .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sR9pxt9wUX .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sR9pxt9wUX .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sR9pxt9wUX .list-item {
  display: flex;
}
.cid-sR9pxt9wUX .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sR9pxt9wUX ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sR9pxt9wUX ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sR9pxt9wUX ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sR9pxt9wUX .logo-subtitle,
.cid-sR9pxt9wUX .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-sR9pxt9wUX .copyright > p {
  color: #ffffff;
}
.cid-sR9pxt9wUX .column-title {
  color: #ffffff;
}
.cid-sR9pxt9wUX P {
  color: #ffffff;
}
.cid-sR9pxt9wUX .mbr-text {
  color: #ffffff;
}
.cid-sR9Blq6bSa .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-sR9Blq6bSa .nav-item,
.cid-sR9Blq6bSa .nav-link,
.cid-sR9Blq6bSa .navbar-caption {
  font-weight: normal;
}
.cid-sR9Blq6bSa .nav-item:focus,
.cid-sR9Blq6bSa .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sR9Blq6bSa .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sR9Blq6bSa .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-sR9Blq6bSa .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sR9Blq6bSa .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sR9Blq6bSa .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sR9Blq6bSa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sR9Blq6bSa .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-sR9Blq6bSa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sR9Blq6bSa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sR9Blq6bSa .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-sR9Blq6bSa .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-sR9Blq6bSa .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sR9Blq6bSa .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sR9Blq6bSa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sR9Blq6bSa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sR9Blq6bSa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sR9Blq6bSa .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sR9Blq6bSa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sR9Blq6bSa .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-sR9Blq6bSa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sR9Blq6bSa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sR9Blq6bSa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sR9Blq6bSa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sR9Blq6bSa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sR9Blq6bSa .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sR9Blq6bSa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sR9Blq6bSa .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-sR9Blq6bSa .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sR9Blq6bSa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sR9Blq6bSa .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sR9Blq6bSa .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sR9Blq6bSa .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sR9Blq6bSa .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sR9Blq6bSa .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-sR9Blq6bSa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sR9Blq6bSa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sR9Blq6bSa .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-sR9Blq6bSa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sR9Blq6bSa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sR9Blq6bSa .dropdown-item.active,
.cid-sR9Blq6bSa .dropdown-item:active {
  background-color: transparent;
}
.cid-sR9Blq6bSa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sR9Blq6bSa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sR9Blq6bSa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-sR9Blq6bSa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sR9Blq6bSa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sR9Blq6bSa ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sR9Blq6bSa .navbar-buttons {
  text-align: center;
}
.cid-sR9Blq6bSa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sR9Blq6bSa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-sR9Blq6bSa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sR9Blq6bSa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sR9Blq6bSa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sR9Blq6bSa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sR9Blq6bSa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sR9Blq6bSa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sR9Blq6bSa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sR9Blq6bSa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sR9Blq6bSa .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sR9Blq6bSa a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sR9Blq6bSa .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sR9Blq6bSa .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sR9Blq6bSa .soc-item {
  margin: .5rem .3rem;
}
.cid-sR9Blq6bSa .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-sR9Blq6bSa .navbar {
    height: 77px;
  }
  .cid-sR9Blq6bSa .navbar.opened {
    height: auto;
  }
  .cid-sR9Blq6bSa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sR9BlrRk5v {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #72d744;
}
.cid-sR9BlrRk5v .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-sR9BlrRk5v .text-block {
  position: relative;
  z-index: 0;
}
.cid-sR9BlrRk5v .box {
  width: 25%;
  height: 40%;
  background: #a61a3d;
  position: absolute;
  top: 4%;
}
.cid-sR9BlrRk5v .box {
  left: 20%;
}
.cid-sR9BlrRk5v .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-sR9BlrRk5v .mbr-section-text,
.cid-sR9BlrRk5v .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-sR9BlrRk5v .text-box {
    display: none;
  }
  .cid-sR9BlrRk5v .mbr-section-title,
  .cid-sR9BlrRk5v .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sR9BlrRk5v .box {
    display: none;
  }
  .cid-sR9BlrRk5v .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sR9BlrRk5v .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sR9BlrRk5v .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sR9BlrRk5v .mbr-section-text {
  color: #000000;
}
.cid-sR9BlrRk5v .mbr-section-title {
  color: #ffffff;
}
.cid-sR9BlsCGfU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006999;
}
.cid-sR9BlsPS1C {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sR9BlsPS1C .mbr-text,
.cid-sR9BlsPS1C .mbr-section-subtitle {
  color: #767676;
}
.cid-sR9BlsPS1C .card-title {
  color: #66458e;
}
.cid-sR9BlsPS1C .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sR9BlsPS1C .mbr-section-subtitle,
  .cid-sR9BlsPS1C .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sR9BlsPS1C .card-title,
.cid-sR9BlsPS1C .card-img {
  color: #fd4f06;
}
.cid-sR9BltFqL3 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sR9BltFqL3 .mbr-text,
.cid-sR9BltFqL3 .mbr-section-subtitle {
  color: #767676;
}
.cid-sR9BltFqL3 .card-title {
  color: #66458e;
}
.cid-sR9BltFqL3 .card .card-img span {
  color: #006999;
  font-size: 60px;
  background: linear-gradient(45deg, #006999, #fd4f06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sR9BltFqL3 .mbr-section-subtitle,
  .cid-sR9BltFqL3 .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sR9BltFqL3 .card .card-img span {
    background: none;
  }
}
.cid-sR9BltFqL3 .card-title,
.cid-sR9BltFqL3 .card-img {
  color: #006999;
}
.cid-sR9BluYZrw {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-sR9BluYZrw .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sR9BluYZrw .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sR9BluYZrw .card-img span {
  font-size: 100px;
}
.cid-sR9BluYZrw .mbr-text,
.cid-sR9BluYZrw .mbr-section-btn {
  color: #efefef;
}
.cid-sR9BluYZrw .mbr-section-title,
.cid-sR9BluYZrw .card-img {
  text-align: center;
}
.cid-sR9BlvJRlI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-sR9BlvJRlI .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-sR9BlvJRlI .mbr-section-title {
  margin: 0;
}
.cid-sR9BlvJRlI .card-img {
  text-align: center;
}
.cid-sR9BlvJRlI .mbr-section-subtitle,
.cid-sR9BlvJRlI .mbr-text {
  color: #8d97ad;
}
.cid-sR9BlvJRlI .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-sR9BlvJRlI .card-img,
  .cid-sR9BlvJRlI .mbr-text,
  .cid-sR9BlvJRlI .mbr-card-title,
  .cid-sR9BlvJRlI .mbr-section-subtitle,
  .cid-sR9BlvJRlI .mbr-section-title,
  .cid-sR9BlvJRlI .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-sR9BlvJRlI .row-item {
    margin-bottom: 2rem;
  }
}
.cid-sR9Blwjo6f {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1-1920x1440.jpg");
}
.cid-sR9Blwjo6f .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sR9Blwjo6f .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sR9Blwjo6f .card-img span {
  font-size: 100px;
}
.cid-sR9Blwjo6f .mbr-text,
.cid-sR9Blwjo6f .mbr-section-btn {
  color: #efefef;
}
.cid-sR9Blwjo6f .mbr-section-title,
.cid-sR9Blwjo6f .card-img {
  text-align: center;
}
.cid-sR9BlwDSRe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sR9BlwDSRe .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sR9BlwDSRe .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sR9BlwDSRe .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sR9BlwDSRe .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sR9BlwDSRe .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fd4f06;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #fd4f06, #006999) !important;
}
.cid-sR9BlwDSRe .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-sR9BlwDSRe .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-sR9BlwDSRe .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #006999 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 12px 15px 12px 15px;
}
.cid-sR9BlwDSRe .mbr-gallery-filter ul {
  display: block;
}
.cid-sR9BlwDSRe .mbr-gallery-filter ul li {
  position: relative;
}
.cid-sR9BlwDSRe .mbr-gallery-filter li.active .btn,
.cid-sR9BlwDSRe .mbr-gallery-filter li .btn.active {
  color: #fd4f06 !important;
  background: transparent;
}
.cid-sR9BlwDSRe .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #fd4f06 !important;
}
.cid-sR9BlwDSRe .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-sR9BlwDSRe .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-sR9BlwDSRe .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #fd4f06 !important;
}
.cid-sR9BlwDSRe .mbr-gallery-filter .mbr-gallery-filter-all.active .btn.active:after,
.cid-sR9BlwDSRe .mbr-gallery-filter .mbr-gallery-filter-all:not(.active) .btn.active:after {
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}
.cid-sR9BlwDSRe .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-sR9BlwDSRe .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-sR9BlwDSRe .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-sR9BlwDSRe .icon-focus:before {
  content: '\e95e';
}
.cid-sR9BlwDSRe .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-sR9BlwDSRe .mbr-section-title {
  margin: 0;
}
.cid-sR9BlwDSRe .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sR9BlwDSRe .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sR9BlxxpTF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sR9BlxxpTF .card-wrapper {
  z-index: 3;
}
.cid-sR9BlxxpTF .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sR9BlxxpTF:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sR9BlxxpTF .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sR9BlxxpTF .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#custom-html-aa {
  /* Type valid CSS here */
}
#custom-html-aa div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
  background: #fd4f06;
}
#custom-html-aa p {
  font-size: 60px;
  color: #777;
}
.cid-sR9BlyHfC2 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-sR9BlyHfC2 .content {
    text-align: center;
  }
  .cid-sR9BlyHfC2 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sR9BlyHfC2 .logo-subtitle {
  color: #8d97ad;
}
.cid-sR9BlyHfC2 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sR9BlyHfC2 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sR9BlyHfC2 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sR9BlyHfC2 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sR9BlyHfC2 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sR9BlyHfC2 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sR9BlyHfC2 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sR9BlyHfC2 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sR9BlyHfC2 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sR9BlyHfC2 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sR9BlyHfC2 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sR9BlyHfC2 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sR9BlyHfC2 .list-item {
  display: flex;
}
.cid-sR9BlyHfC2 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sR9BlyHfC2 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sR9BlyHfC2 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sR9BlyHfC2 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sR9BlyHfC2 .logo-subtitle,
.cid-sR9BlyHfC2 .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-sR9BlyHfC2 .copyright > p {
  color: #ffffff;
}
.cid-sR9BlyHfC2 .column-title {
  color: #ffffff;
}
.cid-sR9BlyHfC2 P {
  color: #ffffff;
}
.cid-sR9BlyHfC2 .mbr-text {
  color: #ffffff;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .nav-item,
.cid-rWEg2lhHpU .nav-link,
.cid-rWEg2lhHpU .navbar-caption {
  font-weight: normal;
}
.cid-rWEg2lhHpU .nav-item:focus,
.cid-rWEg2lhHpU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rWEg2lhHpU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rWEg2lhHpU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rWEg2lhHpU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-rWEg2lhHpU .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rWEg2lhHpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWEg2lhHpU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rWEg2lhHpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWEg2lhHpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWEg2lhHpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWEg2lhHpU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rWEg2lhHpU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rWEg2lhHpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWEg2lhHpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWEg2lhHpU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rWEg2lhHpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWEg2lhHpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rWEg2lhHpU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rWEg2lhHpU .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWEg2lhHpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWEg2lhHpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWEg2lhHpU .dropdown-item.active,
.cid-rWEg2lhHpU .dropdown-item:active {
  background-color: transparent;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWEg2lhHpU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-rWEg2lhHpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rWEg2lhHpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWEg2lhHpU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWEg2lhHpU .navbar-buttons {
  text-align: center;
}
.cid-rWEg2lhHpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWEg2lhHpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWEg2lhHpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWEg2lhHpU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWEg2lhHpU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWEg2lhHpU .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rWEg2lhHpU .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rWEg2lhHpU .soc-item {
  margin: .5rem .3rem;
}
.cid-rWEg2lhHpU .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-rWEg2lhHpU .navbar {
    height: 77px;
  }
  .cid-rWEg2lhHpU .navbar.opened {
    height: auto;
  }
  .cid-rWEg2lhHpU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYaur79POz {
  background: linear-gradient(90deg, #006999, #52e5e5);
}
.cid-rYaur79POz .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-rYaur79POz .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-rYaur79POz .mbr-section-subtitle,
.cid-rYaur79POz .mbr-section-btn {
  color: #ffffff;
}
.cid-rWEJKOipWR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .content {
    text-align: center;
  }
  .cid-rWEJKOipWR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWEJKOipWR .logo-subtitle {
  color: #8d97ad;
}
.cid-rWEJKOipWR .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWEJKOipWR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWEJKOipWR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWEJKOipWR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rWEJKOipWR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWEJKOipWR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWEJKOipWR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWEJKOipWR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWEJKOipWR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWEJKOipWR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rWEJKOipWR .list-item {
  display: flex;
}
.cid-rWEJKOipWR .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rWEJKOipWR ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rWEJKOipWR ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rWEJKOipWR ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rWEJKOipWR .logo-subtitle,
.cid-rWEJKOipWR .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-rWEJKOipWR .copyright > p {
  color: #ffffff;
}
.cid-rWEJKOipWR .column-title {
  color: #ffffff;
}
.cid-rWEJKOipWR P {
  color: #ffffff;
}
.cid-rWEJKOipWR .mbr-text {
  color: #ffffff;
}
.cid-suwqRBtsUS .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-suwqRBtsUS .nav-item,
.cid-suwqRBtsUS .nav-link,
.cid-suwqRBtsUS .navbar-caption {
  font-weight: normal;
}
.cid-suwqRBtsUS .nav-item:focus,
.cid-suwqRBtsUS .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-suwqRBtsUS .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-suwqRBtsUS .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-suwqRBtsUS .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-suwqRBtsUS .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-suwqRBtsUS .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-suwqRBtsUS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-suwqRBtsUS .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-suwqRBtsUS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-suwqRBtsUS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-suwqRBtsUS .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006999;
}
.cid-suwqRBtsUS .navbar.opened {
  transition: all .3s;
  background: #006999 !important;
}
.cid-suwqRBtsUS .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-suwqRBtsUS .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-suwqRBtsUS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-suwqRBtsUS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suwqRBtsUS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-suwqRBtsUS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-suwqRBtsUS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suwqRBtsUS .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-suwqRBtsUS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suwqRBtsUS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-suwqRBtsUS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-suwqRBtsUS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-suwqRBtsUS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suwqRBtsUS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-suwqRBtsUS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suwqRBtsUS .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-suwqRBtsUS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-suwqRBtsUS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suwqRBtsUS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-suwqRBtsUS .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-suwqRBtsUS .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-suwqRBtsUS .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-suwqRBtsUS .navbar.navbar-short {
  background: #006999 !important;
  min-height: 60px;
}
.cid-suwqRBtsUS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suwqRBtsUS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-suwqRBtsUS .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-suwqRBtsUS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suwqRBtsUS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suwqRBtsUS .dropdown-item.active,
.cid-suwqRBtsUS .dropdown-item:active {
  background-color: transparent;
}
.cid-suwqRBtsUS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suwqRBtsUS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suwqRBtsUS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006999;
}
.cid-suwqRBtsUS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suwqRBtsUS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suwqRBtsUS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-suwqRBtsUS .navbar-buttons {
  text-align: center;
}
.cid-suwqRBtsUS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suwqRBtsUS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fd4f06;
}
.cid-suwqRBtsUS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-suwqRBtsUS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-suwqRBtsUS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-suwqRBtsUS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-suwqRBtsUS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suwqRBtsUS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-suwqRBtsUS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-suwqRBtsUS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suwqRBtsUS .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-suwqRBtsUS a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-suwqRBtsUS .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-suwqRBtsUS .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-suwqRBtsUS .soc-item {
  margin: .5rem .3rem;
}
.cid-suwqRBtsUS .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-suwqRBtsUS .navbar {
    height: 77px;
  }
  .cid-suwqRBtsUS .navbar.opened {
    height: auto;
  }
  .cid-suwqRBtsUS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suwqRCcvgJ {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chef-units-background-the-food-truck-builders-1350x500.jpg");
}
.cid-suwqRCcvgJ .mbr-section-title,
.cid-suwqRCcvgJ .mbr-section-subtitle {
  color: #000000;
}
.cid-suwqRCcvgJ .mbr-section-text {
  color: #232323;
}
.cid-suwqRCcvgJ .mbr-text,
.cid-suwqRCcvgJ .typed-text,
.cid-suwqRCcvgJ .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-suwqRCcvgJ .btn {
  margin-left: 4px !important;
}
.cid-suwqRCcvgJ .animated-element {
  color: #fd4f06;
}
.cid-suwqRCcvgJ .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #fd4f06;
}
.cid-suwqRCcvgJ .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-suwqRCcvgJ .mbr-figure {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-suwqRCcvgJ .typed-text,
  .cid-suwqRCcvgJ .mbr-section-subtitle,
  .cid-suwqRCcvgJ .mbr-section-text,
  .cid-suwqRCcvgJ .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-suwqRCcvgJ .mbr-section-subtitle,
.cid-suwqRCcvgJ .typed-text {
  color: #ffffff;
}
.cid-suwqRCcvgJ .mbr-section-text,
.cid-suwqRCcvgJ .mbr-section-btn {
  color: #efefef;
  text-align: left;
}
.cid-suwqRCBliZ {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-suwqRCBliZ .mbr-figure img {
  border-radius: .25rem;
}
.cid-suwqRCBliZ .mbr-text {
  color: #8d97ad;
}
.cid-suwqRCBliZ .mbr-media {
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suwqRCBliZ .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: -3px;
}
.cid-suwqRCBliZ .btn-play {
  box-shadow: 2px 8px 20px rgba(115, 128, 157, 0.3);
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: relative;
  background: #fd4f06;
  width: 60px;
  height: 60px;
  border: 1px solid #fd4f06;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
  font-size: 27px;
  cursor: pointer;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.cid-suwqRCBliZ .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-suwqRCBliZ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-suwqRCBliZ .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-suwqRCBliZ .wrapper-video {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-suwqRCBliZ .icon-description {
  margin-left: 1rem;
}
.cid-suwqRCBliZ a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-suwqRCBliZ a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-suwqRCBliZ .mbr-section-title,
  .cid-suwqRCBliZ .mbr-text {
    text-align: center;
  }
  .cid-suwqRCBliZ .wrapper-video {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-suwqRCZiP6 {
  padding-top: 120px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-suwqRCZiP6 .container {
  margin-bottom: 15%;
}
.cid-suwqRCZiP6 .content-container .btn-bgr {
  z-index: 0;
}
.cid-suwqRCZiP6 .container-boxes {
  padding-bottom: 90px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #f4f8fa;
}
.cid-suwqRCZiP6 .icon-block-top span {
  background-color: #1dc9cb;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-suwqRCZiP6 .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-suwqRCZiP6 .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-suwqRCZiP6 .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-suwqRCZiP6 .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-suwqRCZiP6 .mbr-text,
.cid-suwqRCZiP6 .box-item-text {
  color: #8d97ad;
}
.cid-suwqRCZiP6 .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-suwqRCZiP6 .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-suwqRCZiP6 .box-list li:last-child {
  border-bottom: none;
}
.cid-suwqRCZiP6 .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-suwqRCZiP6 .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-suwqRCZiP6 .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-suwqRCZiP6 .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-suwqRCZiP6 .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-suwqRCZiP6 .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-suwqRCZiP6 .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-suwqRCZiP6 .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-suwqRCZiP6 H1 {
  color: #ffffff;
}
.cid-suwqRCZiP6 .mbr-text {
  color: #efefef;
}
.cid-suwqRDqPLD {
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(90deg, #006999, #52e5e5);
}
.cid-suwqRDqPLD .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-suwqRDqPLD .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-suwqRDqPLD .mbr-section-subtitle,
.cid-suwqRDqPLD .mbr-section-btn {
  color: #ffffff;
}
.cid-suwqRDGZii {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #006999, #006999);
}
.cid-suwqRDGZii .mbr-overlay {
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-suwqRDGZii .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-suwqRDGZii .card-wrap {
  background-color: #ffffff;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-suwqRDGZii .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-suwqRDGZii .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-sx4d9fmYbS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd4f06;
}
.cid-sx4d9fmYbS .card-wrapper {
  z-index: 3;
}
.cid-sx4d9fmYbS .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sx4d9fmYbS:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sx4d9fmYbS .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sx4d9fmYbS .popup-btn.card-wrapper {
  z-index: 1 !important;
}
#Formulario_Contacto {
  /* Type valid CSS here */
}
#Formulario_Contacto div {
  padding-top: 10%;
  padding-right: 25%;
  padding-bottom: 10%;
  padding-left: 25%;
  color: #777;
  text-align: center;
  background: #fd4f06;
}
#Formulario_Contacto p {
  font-size: 60px;
  color: #777;
}
.cid-suwqRE377A {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006999;
}
@media (max-width: 767px) {
  .cid-suwqRE377A .content {
    text-align: center;
  }
  .cid-suwqRE377A .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-suwqRE377A .logo-subtitle {
  color: #8d97ad;
}
.cid-suwqRE377A .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-suwqRE377A .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-suwqRE377A .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-suwqRE377A .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-suwqRE377A .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-suwqRE377A .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-suwqRE377A .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suwqRE377A .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-suwqRE377A .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-suwqRE377A .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-suwqRE377A .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-suwqRE377A .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-suwqRE377A .list-item {
  display: flex;
}
.cid-suwqRE377A .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-suwqRE377A ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-suwqRE377A ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-suwqRE377A ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-suwqRE377A .logo-subtitle,
.cid-suwqRE377A .media-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-suwqRE377A .copyright > p {
  color: #ffffff;
}
.cid-suwqRE377A .column-title {
  color: #ffffff;
}
.cid-suwqRE377A P {
  color: #ffffff;
}
.cid-suwqRE377A .mbr-text {
  color: #ffffff;
}
