@import url(https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);





.btn {
  border-width: 2px;
}
body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 0.5rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (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.3 * (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.32rem;
    font-size: calc( 0.79rem + (0.4 - 0.79) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.79rem + (0.4 - 0.79) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #2754d3 !important;
}
.bg-success {
  background-color: #1dc9cb !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #2754d3 !important;
  border-color: #2754d3 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #19378a !important;
  border-color: #19378a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #19378a !important;
  border-color: #19378a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #00dbef !important;
  border-color: #00dbef !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #008c98 !important;
  border-color: #008c98 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #008c98 !important;
  border-color: #008c98 !important;
}
.btn-info,
.btn-info:active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #0861ad !important;
  border-color: #0861ad !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0861ad !important;
  border-color: #0861ad !important;
}
.btn-success,
.btn-success:active {
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #127e7f !important;
  border-color: #127e7f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #127e7f !important;
  border-color: #127e7f !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #969696 !important;
  border-color: #969696 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #969696 !important;
  border-color: #969696 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #191919 !important;
  border-color: #191919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #191919 !important;
  border-color: #191919 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #2754d3;
  color: #2754d3;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #19378a !important;
  background-color: transparent!important;
  border-color: #19378a !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #2754d3 !important;
  border-color: #2754d3 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #00dbef;
  color: #00dbef;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #008c98 !important;
  background-color: transparent!important;
  border-color: #008c98 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #00dbef !important;
  border-color: #00dbef !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #188ef4;
  color: #188ef4;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0861ad !important;
  background-color: transparent!important;
  border-color: #0861ad !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #1dc9cb;
  color: #1dc9cb;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #127e7f !important;
  background-color: transparent!important;
  border-color: #127e7f !important;
  box-shadow: none!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 {
  background-color: transparent !important;
  border-color: #c1c1c1;
  color: #c1c1c1;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #969696 !important;
  background-color: transparent!important;
  border-color: #969696 !important;
  box-shadow: none!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 {
  background-color: transparent !important;
  border-color: #444444;
  color: #444444;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #191919 !important;
  background-color: transparent!important;
  border-color: #191919 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #2754d3 !important;
}
.text-secondary {
  color: #00dbef !important;
}
.text-success {
  color: #1dc9cb !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #17327d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #007e89 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #107172 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #2754d3;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-gallery-filter li.active .btn {
  background-color: #2754d3;
  border-color: #2754d3;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #2754d3;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d0daf6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bef5f6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #2754d3 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #2754d3;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #2754d3;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #2754d3;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #2754d3;
  border-bottom-color: #2754d3;
}
.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: #2754d3 !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: #00dbef !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%;
  width: 100%;
  height: auto;
}
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='%232754d3' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .nav-item,
.cid-sx8OqhfNNk .nav-link,
.cid-sx8OqhfNNk .navbar-caption {
  font-weight: normal;
}
.cid-sx8OqhfNNk .nav-item:focus,
.cid-sx8OqhfNNk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sx8OqhfNNk .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx8OqhfNNk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx8OqhfNNk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #e2e2e2;
}
.cid-sx8OqhfNNk .navbar.opened {
  transition: all .3s;
  background: #e2e2e2 !important;
}
.cid-sx8OqhfNNk .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sx8OqhfNNk .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx8OqhfNNk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx8OqhfNNk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx8OqhfNNk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2.8rem - 1rem);
  }
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8OqhfNNk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sx8OqhfNNk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx8OqhfNNk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sx8OqhfNNk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sx8OqhfNNk .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sx8OqhfNNk .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sx8OqhfNNk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sx8OqhfNNk .navbar.navbar-short {
  background: #e2e2e2 !important;
  min-height: 60px;
}
.cid-sx8OqhfNNk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sx8OqhfNNk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx8OqhfNNk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx8OqhfNNk .dropdown-item.active,
.cid-sx8OqhfNNk .dropdown-item:active {
  background-color: transparent;
}
.cid-sx8OqhfNNk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx8OqhfNNk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx8OqhfNNk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e2e2e2;
}
.cid-sx8OqhfNNk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx8OqhfNNk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx8OqhfNNk ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sx8OqhfNNk .navbar-buttons {
  text-align: center;
}
.cid-sx8OqhfNNk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8OqhfNNk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sx8OqhfNNk a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8OqhfNNk .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sx8OqhfNNk .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sx8OqhfNNk .soc-item {
  margin: .5rem .3rem;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar {
    height: 77px;
  }
  .cid-sx8OqhfNNk .navbar.opened {
    height: auto;
  }
  .cid-sx8OqhfNNk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svNj2Eki66 .modal-body .close {
  background: #1b1b1b;
}
.cid-svNj2Eki66 .modal-body .close span {
  font-style: normal;
}
.cid-svNj2Eki66 .carousel-inner > .active,
.cid-svNj2Eki66 .carousel-inner > .next,
.cid-svNj2Eki66 .carousel-inner > .prev {
  display: table;
}
.cid-svNj2Eki66 .mbr-iconfont {
  font-family: 'Moririse2' !important;
}
.cid-svNj2Eki66 .mbri-right:before {
  content: "\e909";
  font-weight: 900;
  padding-left: 5px;
}
.cid-svNj2Eki66 .mbri-left:before {
  content: "\e90a";
  font-weight: 900;
  padding-right: 5px;
}
.cid-svNj2Eki66 .carousel-control,
.cid-svNj2Eki66 .carousel-indicators li {
  background-color: #2754d3 !important;
  opacity: 0.7!important;
  border: none;
}
.cid-svNj2Eki66 .carousel-control:hover,
.cid-svNj2Eki66 .carousel-indicators li:hover {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-svNj2Eki66 .carousel-control .active,
.cid-svNj2Eki66 .carousel-indicators li .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-svNj2Eki66 .carousel-indicators .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-svNj2Eki66 .carousel-control .icon-next,
.cid-svNj2Eki66 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-svNj2Eki66 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-svNj2Eki66 .col-10 {
  max-width: 900px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-svNj2Eki66 .col-10 {
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .cid-svNj2Eki66 .carousel-control {
    width: 40px!important;
    height: 40px!important;
  }
  .cid-svNj2Eki66 .mbr-iconfont {
    font-size: 1rem!important;
  }
}
@media (max-width: 767px) {
  .cid-svNj2Eki66 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-svNj2Eki66 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-svNj2Eki66 .boxed-slider > div {
  position: relative;
}
.cid-svNj2Eki66 .container img {
  width: 100%;
}
.cid-svNj2Eki66 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-svNj2Eki66 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-svNj2Eki66 .mbr-table-cell {
  padding: 0;
}
.cid-svNj2Eki66 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-svNj2Eki66 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-svNj2Eki66 .mbr-overlay {
  z-index: 1;
}
.cid-svNj2Eki66 .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-svNj2Eki66 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-svNj2Eki66 .carousel-item .container {
    width: 100%;
  }
}
.cid-svNj2Eki66 .carousel-item-next.carousel-item-left,
.cid-svNj2Eki66 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-svNj2Eki66 .active.carousel-item-right,
.cid-svNj2Eki66 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-svNj2Eki66 .active.carousel-item-left,
.cid-svNj2Eki66 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-svNj2Eki66 .mbr-slider .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all .3s;
}
.cid-svNj2Eki66 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svNj2Eki66 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svNj2Eki66 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-svNj2Eki66 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-svNj2Eki66 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-svNj2Eki66 .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-svNj2Eki66 .mbr-slider .carousel-indicators li.active,
.cid-svNj2Eki66 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-svNj2Eki66 .mbr-slider .carousel-indicators li::after,
.cid-svNj2Eki66 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-svNj2Eki66 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-svNj2Eki66 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-svNj2Eki66 .mbr-slider > .container img {
  width: 100%;
}
.cid-svNj2Eki66 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-svNj2Eki66 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-svNj2Eki66 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-svNj2Eki66 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-svNj2Eki66 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-svNj2Eki66 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-svNj2Eki66 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-svNj2Eki66 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-svNj2Eki66 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-svNj2Eki66 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-svNj2Eki66 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-svNj2Eki66 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-svNj2Eki66 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-svZhCsgJ92 {
  padding-top: 150px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-svZhCsgJ92 .container {
  max-width: 1500px;
}
.cid-svZhCsgJ92 img {
  width: 100%;
}
.cid-svZhCsgJ92 h2 {
  padding: 0;
  margin: 0;
}
.cid-svZhCsgJ92 .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-svZhCsgJ92 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-svZhCsgJ92 .img-col {
  position: relative;
}
.cid-svZhCsgJ92 .img2 {
  position: absolute;
  right: 6rem;
  top: -6rem;
  width: 320px;
}
@media (max-width: 1200px) {
  .cid-svZhCsgJ92 .img2 {
    right: 3rem;
  }
}
@media (max-width: 992px) {
  .cid-svZhCsgJ92 .title-col {
    margin-bottom: 4rem!important;
  }
  .cid-svZhCsgJ92 .img2 {
    top: -2rem;
  }
  .cid-svZhCsgJ92 .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-svZhCsgJ92 .img2 {
    width: 50%;
  }
  .cid-svZhCsgJ92 .number {
    margin: auto;
  }
}
.cid-svZhCsgJ92 .mbr-text {
  color: #353535;
}
.cid-svZkb4MUy6 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-svZkb4MUy6 .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-svZkb4MUy6 .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-svZkb4MUy6 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-svZkb4MUy6 .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-svZkb4MUy6 .process-icon,
.cid-svZkb4MUy6 .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-svZkb4MUy6 .wrapper,
.cid-svZkb4MUy6 .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-svZkb4MUy6 .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #2754d3;
  opacity: .4;
}
.cid-svZkb4MUy6 .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-svZkb4MUy6 .icon-container a {
  display: inherit;
}
.cid-svZkb4MUy6 .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #188ef4 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-svZkb4MUy6 .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-svZkb4MUy6 .icon-main:hover .icon-wrapper {
  background-color: #188ef4 !important;
}
.cid-svZkb4MUy6 .icon-main:hover .icon-number {
  background-color: #2754d3 !important;
  color: #ffffff !important;
}
.cid-svZkb4MUy6 .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-svZkb4MUy6 .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-svZkb4MUy6 .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-svZkb4MUy6 .third-elem .wrapper:before {
    display: none;
  }
}
.cid-svZkb4MUy6 .mbr-section-title {
  margin: 0;
}
.cid-svZkb4MUy6 .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-svZorS0D5i {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1200.jpg");
}
.cid-svZorS0D5i .mbr-section-title {
  color: #ffffff;
}
.cid-svZGfPVDHI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #353535;
}
.cid-svZGfPVDHI section {
  position: relative;
}
.cid-svZGfPVDHI h4 {
  margin: 0;
}
.cid-svZGfPVDHI img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-svZGfPVDHI a {
  font-weight: 300;
}
.cid-svZGfPVDHI .img1 {
  color: #00b4de;
}
.cid-svZGfPVDHI .img2 {
  color: #f1894c;
}
.cid-svZGfPVDHI .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #777777;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-svZGfPVDHI .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-svZGfPVDHI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svZGfPVDHI .item,
.cid-svZGfPVDHI .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-svZGfPVDHI .item h4,
.cid-svZGfPVDHI .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-svZGfPVDHI .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-svZGfPVDHI .item {
    justify-content: center;
  }
}
.cid-svZGfPVDHI .item-title {
  color: #c1c1c1;
}
.cid-svZFtCCOOH {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #353535;
}
.cid-svZFtCCOOH .mbr-text a {
  background-size: 100% 0%;
}
.cid-svZFtCCOOH .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-svZFtCCOOH .media-container-row .mbr-text {
  color: #777777;
}
.cid-svZXdrbU3w {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-svZXdrbU3w .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-svZXdrbU3w .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-svZXdrbU3w .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-svZXdrbU3w .mbr-section-title {
  color: #00b4de;
}
.cid-svZXdrbU3w .mbr-text,
.cid-svZXdrbU3w .mbr-section-btn,
.cid-svZXdrbU3w .social-row {
  color: #ffffff;
}
.cid-sw0wzsOaXQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-svZYD30LGO {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-svZYD30LGO .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.cid-svZYD30LGO .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-svZYD30LGO .image-block:hover:before {
  opacity: 0.4;
}
.cid-svZYD30LGO .image-block:hover .wrap {
  opacity: 1;
}
.cid-svZYD30LGO .image-block:hover img {
  transform: scale(1.05);
}
.cid-svZYD30LGO h4 {
  letter-spacing: 2px;
}
.cid-svZYD30LGO figcaption {
  position: relative;
}
.cid-svZYD30LGO figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-svZYD30LGO img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-svZYD30LGO .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-svZYD30LGO .wrap {
    opacity: 1!important;
  }
  .cid-svZYD30LGO .image-block:before {
    opacity: 0.2!important;
  }
}
.cid-sw06gqmpZi {
  padding-top: 80px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-sw06gqmpZi .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-sw06gqmpZi .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sw06gqmpZi .text-content {
  padding-right: 1.5rem;
}
.cid-sw06gqmpZi .mbr-text,
.cid-sw06gqmpZi .mbr-section-btn {
  color: #353535;
}
.cid-sw06gqmpZi .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 153, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 153, 0.3);
  border-radius: .25rem;
}
.cid-sw06gqmpZi .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-sw06gqmpZi .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sw06gqmpZi .counter-container ul li {
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-sw06gqmpZi .main-row {
    margin: 0;
  }
  .cid-sw06gqmpZi .mbr-section-title,
  .cid-sw06gqmpZi .mbr-text,
  .cid-sw06gqmpZi .list,
  .cid-sw06gqmpZi .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sw06gqmpZi .text-content {
    padding: 0;
  }
}
.cid-swtBqZe58r {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-swtBqZe58r .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-swtBqZe58r .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-swtBqZe58r .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-swtBqZe58r .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-swtBqZe58r .process-icon,
.cid-swtBqZe58r .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-swtBqZe58r .wrapper,
.cid-swtBqZe58r .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-swtBqZe58r .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #2754d3;
  opacity: .4;
}
.cid-swtBqZe58r .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-swtBqZe58r .icon-container a {
  display: inherit;
}
.cid-swtBqZe58r .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #188ef4 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-swtBqZe58r .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-swtBqZe58r .icon-main:hover .icon-wrapper {
  background-color: #188ef4 !important;
}
.cid-swtBqZe58r .icon-main:hover .icon-number {
  background-color: #2754d3 !important;
  color: #ffffff !important;
}
.cid-swtBqZe58r .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-swtBqZe58r .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-swtBqZe58r .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-swtBqZe58r .third-elem .wrapper:before {
    display: none;
  }
}
.cid-swtBqZe58r .mbr-section-title {
  margin: 0;
}
.cid-swtBqZe58r .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-svZXdsJbip {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1200.jpg");
}
.cid-svZXdsJbip .mbr-section-title {
  color: #ffffff;
}
.cid-swtLvUJPKS {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #353535;
}
.cid-swtLvUJPKS section {
  position: relative;
}
.cid-swtLvUJPKS h4 {
  margin: 0;
}
.cid-swtLvUJPKS img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-swtLvUJPKS a {
  font-weight: 300;
}
.cid-swtLvUJPKS .img1 {
  color: #00b4de;
}
.cid-swtLvUJPKS .img2 {
  color: #f1894c;
}
.cid-swtLvUJPKS .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #777777;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-swtLvUJPKS .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-swtLvUJPKS .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-swtLvUJPKS .item,
.cid-swtLvUJPKS .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-swtLvUJPKS .item h4,
.cid-swtLvUJPKS .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-swtLvUJPKS .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-swtLvUJPKS .item {
    justify-content: center;
  }
}
.cid-swtLvUJPKS .item-title {
  color: #c1c1c1;
}
.cid-svZXdtHewA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #353535;
}
.cid-svZXdtHewA .mbr-text a {
  background-size: 100% 0%;
}
.cid-svZXdtHewA .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-svZXdtHewA .media-container-row .mbr-text {
  color: #777777;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .nav-item,
.cid-sx8OqhfNNk .nav-link,
.cid-sx8OqhfNNk .navbar-caption {
  font-weight: normal;
}
.cid-sx8OqhfNNk .nav-item:focus,
.cid-sx8OqhfNNk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sx8OqhfNNk .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx8OqhfNNk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx8OqhfNNk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #e2e2e2;
}
.cid-sx8OqhfNNk .navbar.opened {
  transition: all .3s;
  background: #e2e2e2 !important;
}
.cid-sx8OqhfNNk .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sx8OqhfNNk .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx8OqhfNNk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx8OqhfNNk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx8OqhfNNk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2.8rem - 1rem);
  }
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8OqhfNNk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sx8OqhfNNk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx8OqhfNNk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sx8OqhfNNk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sx8OqhfNNk .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sx8OqhfNNk .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sx8OqhfNNk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sx8OqhfNNk .navbar.navbar-short {
  background: #e2e2e2 !important;
  min-height: 60px;
}
.cid-sx8OqhfNNk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sx8OqhfNNk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx8OqhfNNk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx8OqhfNNk .dropdown-item.active,
.cid-sx8OqhfNNk .dropdown-item:active {
  background-color: transparent;
}
.cid-sx8OqhfNNk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx8OqhfNNk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx8OqhfNNk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e2e2e2;
}
.cid-sx8OqhfNNk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx8OqhfNNk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx8OqhfNNk ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sx8OqhfNNk .navbar-buttons {
  text-align: center;
}
.cid-sx8OqhfNNk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8OqhfNNk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sx8OqhfNNk a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8OqhfNNk .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sx8OqhfNNk .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sx8OqhfNNk .soc-item {
  margin: .5rem .3rem;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar {
    height: 77px;
  }
  .cid-sx8OqhfNNk .navbar.opened {
    height: auto;
  }
  .cid-sx8OqhfNNk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw05xODtxD {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1271.jpg");
}
.cid-sw05xODtxD .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-sw05xODtxD .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-sw05xODtxD .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-sw05xODtxD .mbr-section-title {
  color: #00b4de;
}
.cid-sw05xODtxD .mbr-text,
.cid-sw05xODtxD .mbr-section-btn,
.cid-sw05xODtxD .social-row {
  color: #ffffff;
}
.cid-sw07l7ddCO {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sw0712hRwk {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #777777;
}
.cid-sw0712hRwk .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-sw0712hRwk .mbr-section-title {
  margin: 0;
}
.cid-sw0712hRwk .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sw0712hRwk .card-img span {
  color: #1dc9cb;
}
.cid-sw0712hRwk .row-item {
  margin-bottom: 2rem;
}
.cid-sw0712hRwk .row-item:hover .wrapper {
  background: linear-gradient(90deg, #00b4de, #00dbef);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-sw0712hRwk .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-sw0712hRwk .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-sw0712hRwk .wrapper {
  padding: 2.5rem 1rem;
  background: #fafafa;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-sw0712hRwk .mbr-card-title,
.cid-sw0712hRwk .card-img {
  text-align: center;
}
.cid-swDMTpTIQc {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-swDMTpTIQc .container-fluid {
  padding: 0 3rem;
}
.cid-swDMTpTIQc .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #2754d3, #00dbef);
  display: inline-block;
}
.cid-swDMTpTIQc .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-swDMTpTIQc .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-swDMTpTIQc .card .card-wrapper {
  height: 1%;
}
.cid-swDMTpTIQc .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-swDMTpTIQc .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-swDMTpTIQc .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff3366;
}
.cid-swDMTpTIQc .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-swDMTpTIQc .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-swDMTpTIQc .container-fluid {
    padding: 0 1rem;
  }
}
.cid-swDMTpTIQc .mbr-section-title,
.cid-swDMTpTIQc .underline {
  text-align: center;
}
.cid-sw05xRe5zk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpg");
}
.cid-sw05xRe5zk .mbr-section-title {
  color: #ffffff;
}
.cid-swtLAnlJul {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #353535;
}
.cid-swtLAnlJul section {
  position: relative;
}
.cid-swtLAnlJul h4 {
  margin: 0;
}
.cid-swtLAnlJul img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-swtLAnlJul a {
  font-weight: 300;
}
.cid-swtLAnlJul .img1 {
  color: #00b4de;
}
.cid-swtLAnlJul .img2 {
  color: #f1894c;
}
.cid-swtLAnlJul .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #777777;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-swtLAnlJul .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-swtLAnlJul .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-swtLAnlJul .item,
.cid-swtLAnlJul .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-swtLAnlJul .item h4,
.cid-swtLAnlJul .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-swtLAnlJul .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-swtLAnlJul .item {
    justify-content: center;
  }
}
.cid-swtLAnlJul .item-title {
  color: #c1c1c1;
}
.cid-sw05xSaF26 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #353535;
}
.cid-sw05xSaF26 .mbr-text a {
  background-size: 100% 0%;
}
.cid-sw05xSaF26 .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-sw05xSaF26 .media-container-row .mbr-text {
  color: #777777;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .nav-item,
.cid-sx8OqhfNNk .nav-link,
.cid-sx8OqhfNNk .navbar-caption {
  font-weight: normal;
}
.cid-sx8OqhfNNk .nav-item:focus,
.cid-sx8OqhfNNk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sx8OqhfNNk .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx8OqhfNNk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx8OqhfNNk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #e2e2e2;
}
.cid-sx8OqhfNNk .navbar.opened {
  transition: all .3s;
  background: #e2e2e2 !important;
}
.cid-sx8OqhfNNk .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sx8OqhfNNk .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx8OqhfNNk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx8OqhfNNk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx8OqhfNNk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2.8rem - 1rem);
  }
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8OqhfNNk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sx8OqhfNNk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx8OqhfNNk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sx8OqhfNNk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sx8OqhfNNk .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sx8OqhfNNk .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sx8OqhfNNk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sx8OqhfNNk .navbar.navbar-short {
  background: #e2e2e2 !important;
  min-height: 60px;
}
.cid-sx8OqhfNNk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sx8OqhfNNk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx8OqhfNNk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx8OqhfNNk .dropdown-item.active,
.cid-sx8OqhfNNk .dropdown-item:active {
  background-color: transparent;
}
.cid-sx8OqhfNNk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx8OqhfNNk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx8OqhfNNk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e2e2e2;
}
.cid-sx8OqhfNNk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx8OqhfNNk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx8OqhfNNk ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sx8OqhfNNk .navbar-buttons {
  text-align: center;
}
.cid-sx8OqhfNNk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8OqhfNNk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sx8OqhfNNk a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8OqhfNNk .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sx8OqhfNNk .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sx8OqhfNNk .soc-item {
  margin: .5rem .3rem;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar {
    height: 77px;
  }
  .cid-sx8OqhfNNk .navbar.opened {
    height: auto;
  }
  .cid-sx8OqhfNNk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw06rzW2Qa {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1-1920x1271.jpg");
}
.cid-sw06rzW2Qa .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-sw06rzW2Qa .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-sw06rzW2Qa .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-sw06rzW2Qa .mbr-section-title {
  color: #00b4de;
}
.cid-sw06rzW2Qa .mbr-text,
.cid-sw06rzW2Qa .mbr-section-btn,
.cid-sw06rzW2Qa .social-row {
  color: #ffffff;
}
.cid-sw0dzwCEb4 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sw0e9OZREm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sw0e9OZREm .card-img {
  position: relative;
  overflow: hidden;
}
.cid-sw0e9OZREm section {
  position: relative;
}
.cid-sw0e9OZREm a {
  font-weight: 600;
}
.cid-sw0e9OZREm .btn-sm {
  padding: 0.6rem 2.2rem;
}
.cid-sw0e9OZREm .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  height: 100%;
  left: 0;
  background-color: #00b4de;
  opacity: 0;
  transform-origin: right center 0;
  transform: perspective(100px) rotateY(-120deg);
  transform-style: flat;
  transition: transform 0.5s ease-in-out, opacity 0.2s ease-in-out;
}
.cid-sw0e9OZREm .card-box {
  padding: 1rem;
  background-color: #2754d3;
  width: 85%;
  margin: auto;
  margin-top: -40px;
  position: relative;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  height: 80px;
  display: flex;
  align-items: center;
}
.cid-sw0e9OZREm .card-box h3 {
  font-weight: 600;
  width: 100%;
  display: inline-block;
  margin: 0;
}
.cid-sw0e9OZREm .card-wrapper {
  height: 100%;
}
.cid-sw0e9OZREm .card-wrapper:hover .card-img:before {
  opacity: 0.3;
  transform: perspective(100px) rotateY(0deg);
}
.cid-sw0e9OZREm .card-wrapper:hover .card-title a {
  color: #00dbef !important;
}
.cid-sw0e9OZREm .text {
  color: #767676;
}
.cid-sw0e9OZREm .card-title {
  color: #ffffff;
}
.cid-sw0e9OZREm .title {
  text-align: center;
}
.cid-sw0eCXikcN {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sw0eCXikcN .card-img {
  position: relative;
  overflow: hidden;
}
.cid-sw0eCXikcN section {
  position: relative;
}
.cid-sw0eCXikcN a {
  font-weight: 600;
}
.cid-sw0eCXikcN .btn-sm {
  padding: 0.6rem 2.2rem;
}
.cid-sw0eCXikcN .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  height: 100%;
  left: 0;
  background-color: #ffffff;
  opacity: 0;
  transform-origin: right center 0;
  transform: perspective(100px) rotateY(-120deg);
  transform-style: flat;
  transition: transform 0.5s ease-in-out, opacity 0.2s ease-in-out;
}
.cid-sw0eCXikcN .card-box {
  padding: 1rem;
  background-color: #2754d3;
  width: 85%;
  margin: auto;
  margin-top: -40px;
  position: relative;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  height: 80px;
  display: flex;
  align-items: center;
}
.cid-sw0eCXikcN .card-box h3 {
  font-weight: 600;
  width: 100%;
  display: inline-block;
  margin: 0;
}
.cid-sw0eCXikcN .card-wrapper {
  height: 100%;
}
.cid-sw0eCXikcN .card-wrapper:hover .card-img:before {
  opacity: 0.3;
  transform: perspective(100px) rotateY(0deg);
}
.cid-sw0eCXikcN .card-wrapper:hover .card-title a {
  color: #00dbef !important;
}
.cid-sw0eCXikcN .text {
  color: #767676;
}
.cid-sw0eCXikcN .card-title {
  color: #ffffff;
}
.cid-sw0eCXikcN .title {
  text-align: center;
}
.cid-sw06rC3r7E {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1200.jpg");
}
.cid-sw06rC3r7E .mbr-section-title {
  color: #ffffff;
}
.cid-swtLDCughM {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #353535;
}
.cid-swtLDCughM section {
  position: relative;
}
.cid-swtLDCughM h4 {
  margin: 0;
}
.cid-swtLDCughM img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-swtLDCughM a {
  font-weight: 300;
}
.cid-swtLDCughM .img1 {
  color: #00b4de;
}
.cid-swtLDCughM .img2 {
  color: #f1894c;
}
.cid-swtLDCughM .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #777777;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-swtLDCughM .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-swtLDCughM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-swtLDCughM .item,
.cid-swtLDCughM .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-swtLDCughM .item h4,
.cid-swtLDCughM .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-swtLDCughM .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-swtLDCughM .item {
    justify-content: center;
  }
}
.cid-swtLDCughM .item-title {
  color: #c1c1c1;
}
.cid-sw06rCOgBf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #353535;
}
.cid-sw06rCOgBf .mbr-text a {
  background-size: 100% 0%;
}
.cid-sw06rCOgBf .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-sw06rCOgBf .media-container-row .mbr-text {
  color: #777777;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .nav-item,
.cid-sx8OqhfNNk .nav-link,
.cid-sx8OqhfNNk .navbar-caption {
  font-weight: normal;
}
.cid-sx8OqhfNNk .nav-item:focus,
.cid-sx8OqhfNNk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sx8OqhfNNk .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx8OqhfNNk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx8OqhfNNk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #e2e2e2;
}
.cid-sx8OqhfNNk .navbar.opened {
  transition: all .3s;
  background: #e2e2e2 !important;
}
.cid-sx8OqhfNNk .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sx8OqhfNNk .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx8OqhfNNk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx8OqhfNNk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx8OqhfNNk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2.8rem - 1rem);
  }
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8OqhfNNk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sx8OqhfNNk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx8OqhfNNk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sx8OqhfNNk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sx8OqhfNNk .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sx8OqhfNNk .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sx8OqhfNNk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sx8OqhfNNk .navbar.navbar-short {
  background: #e2e2e2 !important;
  min-height: 60px;
}
.cid-sx8OqhfNNk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sx8OqhfNNk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx8OqhfNNk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx8OqhfNNk .dropdown-item.active,
.cid-sx8OqhfNNk .dropdown-item:active {
  background-color: transparent;
}
.cid-sx8OqhfNNk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx8OqhfNNk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx8OqhfNNk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e2e2e2;
}
.cid-sx8OqhfNNk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx8OqhfNNk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx8OqhfNNk ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sx8OqhfNNk .navbar-buttons {
  text-align: center;
}
.cid-sx8OqhfNNk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8OqhfNNk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sx8OqhfNNk a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8OqhfNNk .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sx8OqhfNNk .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sx8OqhfNNk .soc-item {
  margin: .5rem .3rem;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar {
    height: 77px;
  }
  .cid-sx8OqhfNNk .navbar.opened {
    height: auto;
  }
  .cid-sx8OqhfNNk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw0juoVBPj {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1281.jpg");
}
.cid-sw0juoVBPj .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-sw0juoVBPj .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-sw0juoVBPj .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-sw0juoVBPj .mbr-section-title {
  color: #00b4de;
}
.cid-sw0juoVBPj .mbr-text,
.cid-sw0juoVBPj .mbr-section-btn,
.cid-sw0juoVBPj .social-row {
  color: #ffffff;
}
.cid-sw0jupHoOg {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sw0lxqK5xs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sw0lxqK5xs .card-img {
  position: relative;
  overflow: hidden;
}
.cid-sw0lxqK5xs section {
  position: relative;
}
.cid-sw0lxqK5xs a {
  font-weight: 600;
}
.cid-sw0lxqK5xs .btn-sm {
  padding: 0.6rem 2.2rem;
}
.cid-sw0lxqK5xs .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  height: 100%;
  left: 0;
  background-color: #ffffff;
  opacity: 0;
  transform-origin: right center 0;
  transform: perspective(100px) rotateY(-120deg);
  transform-style: flat;
  transition: transform 0.5s ease-in-out, opacity 0.2s ease-in-out;
}
.cid-sw0lxqK5xs .card-box {
  padding: 1rem;
  background-color: #2754d3;
  width: 85%;
  margin: auto;
  margin-top: -40px;
  position: relative;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  height: 80px;
  display: flex;
  align-items: center;
}
.cid-sw0lxqK5xs .card-box h3 {
  font-weight: 600;
  width: 100%;
  display: inline-block;
  margin: 0;
}
.cid-sw0lxqK5xs .card-wrapper {
  height: 100%;
}
.cid-sw0lxqK5xs .card-wrapper:hover .card-img:before {
  opacity: 0.3;
  transform: perspective(100px) rotateY(0deg);
}
.cid-sw0lxqK5xs .card-wrapper:hover .card-title a {
  color: #00dbef !important;
}
.cid-sw0lxqK5xs .text {
  color: #767676;
}
.cid-sw0lxqK5xs .card-title {
  color: #ffffff;
}
.cid-sw0lxqK5xs .title {
  text-align: center;
}
.cid-sw0jur6d2R {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1200.jpg");
}
.cid-sw0jur6d2R .mbr-section-title {
  color: #ffffff;
}
.cid-swtLHDHFrw {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #353535;
}
.cid-swtLHDHFrw section {
  position: relative;
}
.cid-swtLHDHFrw h4 {
  margin: 0;
}
.cid-swtLHDHFrw img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-swtLHDHFrw a {
  font-weight: 300;
}
.cid-swtLHDHFrw .img1 {
  color: #00b4de;
}
.cid-swtLHDHFrw .img2 {
  color: #f1894c;
}
.cid-swtLHDHFrw .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #777777;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-swtLHDHFrw .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-swtLHDHFrw .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-swtLHDHFrw .item,
.cid-swtLHDHFrw .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-swtLHDHFrw .item h4,
.cid-swtLHDHFrw .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-swtLHDHFrw .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-swtLHDHFrw .item {
    justify-content: center;
  }
}
.cid-swtLHDHFrw .item-title {
  color: #c1c1c1;
}
.cid-sw0jushfbW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #353535;
}
.cid-sw0jushfbW .mbr-text a {
  background-size: 100% 0%;
}
.cid-sw0jushfbW .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-sw0jushfbW .media-container-row .mbr-text {
  color: #777777;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .nav-item,
.cid-sx8OqhfNNk .nav-link,
.cid-sx8OqhfNNk .navbar-caption {
  font-weight: normal;
}
.cid-sx8OqhfNNk .nav-item:focus,
.cid-sx8OqhfNNk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sx8OqhfNNk .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx8OqhfNNk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx8OqhfNNk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #e2e2e2;
}
.cid-sx8OqhfNNk .navbar.opened {
  transition: all .3s;
  background: #e2e2e2 !important;
}
.cid-sx8OqhfNNk .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sx8OqhfNNk .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx8OqhfNNk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx8OqhfNNk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx8OqhfNNk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2.8rem - 1rem);
  }
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8OqhfNNk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sx8OqhfNNk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx8OqhfNNk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sx8OqhfNNk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sx8OqhfNNk .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sx8OqhfNNk .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sx8OqhfNNk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sx8OqhfNNk .navbar.navbar-short {
  background: #e2e2e2 !important;
  min-height: 60px;
}
.cid-sx8OqhfNNk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sx8OqhfNNk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx8OqhfNNk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx8OqhfNNk .dropdown-item.active,
.cid-sx8OqhfNNk .dropdown-item:active {
  background-color: transparent;
}
.cid-sx8OqhfNNk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx8OqhfNNk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx8OqhfNNk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e2e2e2;
}
.cid-sx8OqhfNNk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx8OqhfNNk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx8OqhfNNk ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sx8OqhfNNk .navbar-buttons {
  text-align: center;
}
.cid-sx8OqhfNNk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8OqhfNNk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sx8OqhfNNk a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8OqhfNNk .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sx8OqhfNNk .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sx8OqhfNNk .soc-item {
  margin: .5rem .3rem;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar {
    height: 77px;
  }
  .cid-sx8OqhfNNk .navbar.opened {
    height: auto;
  }
  .cid-sx8OqhfNNk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw0mXYYaKN {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-2-1920x1271.jpg");
}
.cid-sw0mXYYaKN .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-sw0mXYYaKN .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-sw0mXYYaKN .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-sw0mXYYaKN .mbr-section-title {
  color: #00b4de;
}
.cid-sw0mXYYaKN .mbr-text,
.cid-sw0mXYYaKN .mbr-section-btn,
.cid-sw0mXYYaKN .social-row {
  color: #ffffff;
}
.cid-sw0mY1GEkL {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sw0nrhElm1 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sw0nrhElm1 .google-map {
  height: 25rem;
  position: relative;
}
.cid-sw0nrhElm1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sw0nrhElm1 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sw0nrhElm1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sw0nrhElm1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sw0nrhElm1 .wrapper {
  margin-top: -10rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-sw0nrhElm1 .form-container {
  padding: 3rem;
}
.cid-sw0nrhElm1 .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-sw0nrhElm1 .content-panel {
  padding: 2rem;
  background: linear-gradient(45deg, #4284df, #1dc9cb);
  height: 100%;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
  overflow: hidden;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sw0nrhElm1 .mbr-text {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-sw0nrhElm1 .form-group,
  .cid-sw0nrhElm1 .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-sw0nrhElm1 .form-control {
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
  padding: .5rem 1rem;
  background-color: #ffffff;
  border: 1px solid #efefef;
  color: #565656;
  border-radius: .25rem;
  font-size: 1rem;
  line-height: 1.43;
}
.cid-sw0nrhElm1 .form-control:focus,
.cid-sw0nrhElm1 .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #ffffff;
}
.cid-sw0nrhElm1 textarea.form-control {
  min-height: 170px;
}
.cid-sw0nrhElm1 .form-group {
  margin-bottom: 1rem;
}
.cid-sw0nrhElm1 input::-webkit-input-placeholder,
.cid-sw0nrhElm1 textarea::-webkit-input-placeholder {
  color: #565656;
}
.cid-sw0nrhElm1 input:-moz-placeholder,
.cid-sw0nrhElm1 textarea:-moz-placeholder {
  color: #565656;
}
.cid-sw0nrhElm1 .jq-selectbox li,
.cid-sw0nrhElm1 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sw0nrhElm1 .jq-selectbox li:hover,
.cid-sw0nrhElm1 .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sw0nrhElm1 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sw0nrhElm1 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sw0nrhElm1 .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sw0nrhElm1 .text-block {
    margin-bottom: 2rem;
  }
  .cid-sw0nrhElm1 .wrapper {
    margin-top: 0;
  }
}
.cid-sw0nrhElm1 .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sw0nrhElm1 .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-sw0nrhElm1 .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sw0nrhElm1 .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-sw0nrhElm1 .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sw0nrhElm1 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sw0nrhElm1 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-swtLL7ADic {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #353535;
}
.cid-swtLL7ADic section {
  position: relative;
}
.cid-swtLL7ADic h4 {
  margin: 0;
}
.cid-swtLL7ADic img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-swtLL7ADic a {
  font-weight: 300;
}
.cid-swtLL7ADic .img1 {
  color: #00b4de;
}
.cid-swtLL7ADic .img2 {
  color: #f1894c;
}
.cid-swtLL7ADic .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #777777;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-swtLL7ADic .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-swtLL7ADic .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-swtLL7ADic .item,
.cid-swtLL7ADic .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-swtLL7ADic .item h4,
.cid-swtLL7ADic .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-swtLL7ADic .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-swtLL7ADic .item {
    justify-content: center;
  }
}
.cid-swtLL7ADic .item-title {
  color: #c1c1c1;
}
.cid-sw0mY4OoIZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #353535;
}
.cid-sw0mY4OoIZ .mbr-text a {
  background-size: 100% 0%;
}
.cid-sw0mY4OoIZ .mbr-text a:hover {
  background-size: 100% 100%;
}
.cid-sw0mY4OoIZ .media-container-row .mbr-text {
  color: #777777;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .nav-item,
.cid-sx8OqhfNNk .nav-link,
.cid-sx8OqhfNNk .navbar-caption {
  font-weight: normal;
}
.cid-sx8OqhfNNk .nav-item:focus,
.cid-sx8OqhfNNk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sx8OqhfNNk .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sx8OqhfNNk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx8OqhfNNk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx8OqhfNNk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #e2e2e2;
}
.cid-sx8OqhfNNk .navbar.opened {
  transition: all .3s;
  background: #e2e2e2 !important;
}
.cid-sx8OqhfNNk .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sx8OqhfNNk .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx8OqhfNNk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx8OqhfNNk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx8OqhfNNk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2.8rem - 1rem);
  }
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx8OqhfNNk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8OqhfNNk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sx8OqhfNNk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx8OqhfNNk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sx8OqhfNNk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx8OqhfNNk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sx8OqhfNNk .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sx8OqhfNNk .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sx8OqhfNNk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sx8OqhfNNk .navbar.navbar-short {
  background: #e2e2e2 !important;
  min-height: 60px;
}
.cid-sx8OqhfNNk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sx8OqhfNNk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx8OqhfNNk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx8OqhfNNk .dropdown-item.active,
.cid-sx8OqhfNNk .dropdown-item:active {
  background-color: transparent;
}
.cid-sx8OqhfNNk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx8OqhfNNk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx8OqhfNNk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e2e2e2;
}
.cid-sx8OqhfNNk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx8OqhfNNk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx8OqhfNNk ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sx8OqhfNNk .navbar-buttons {
  text-align: center;
}
.cid-sx8OqhfNNk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8OqhfNNk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx8OqhfNNk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8OqhfNNk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sx8OqhfNNk a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8OqhfNNk .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sx8OqhfNNk .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sx8OqhfNNk .soc-item {
  margin: .5rem .3rem;
}
.cid-sx8OqhfNNk .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-sx8OqhfNNk .navbar {
    height: 77px;
  }
  .cid-sx8OqhfNNk .navbar.opened {
    height: auto;
  }
  .cid-sx8OqhfNNk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
