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





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #39bab1 !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #0c6969 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #39bab1 !important;
  border-color: #39bab1 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #277f79 !important;
  border-color: #277f79 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #277f79 !important;
  border-color: #277f79 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #0c6969 !important;
  border-color: #0c6969 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #042424 !important;
  border-color: #042424 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #042424 !important;
  border-color: #042424 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #216c67;
  color: #216c67 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #39bab1;
  border-color: #39bab1;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #39bab1 !important;
  border-color: #39bab1 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #020d0d;
  color: #020d0d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #0c6969;
  border-color: #0c6969;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0c6969 !important;
  border-color: #0c6969 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #39bab1 !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #0c6969 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #216c67 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #020d0d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #365c9a;
}
.alert-info {
  background-color: #0c6969;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #39bab1;
  border-color: #39bab1;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #39bab1;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #94ded9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7e9ed2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #19dbdb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #39bab1;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #39bab1;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #39bab1;
  border-bottom-color: #39bab1;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #39bab1 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ca4336 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2339bab1' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-rL6emBtTxY .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  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-rL6emBtTxY .nav-item,
.cid-rL6emBtTxY .nav-link,
.cid-rL6emBtTxY .navbar-caption {
  font-weight: normal;
}
.cid-rL6emBtTxY .nav-item:focus,
.cid-rL6emBtTxY .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rL6emBtTxY .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item {
  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-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rL6emBtTxY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rL6emBtTxY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rL6emBtTxY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rL6emBtTxY .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rL6emBtTxY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rL6emBtTxY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rL6emBtTxY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rL6emBtTxY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rL6emBtTxY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rL6emBtTxY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rL6emBtTxY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rL6emBtTxY .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-rL6emBtTxY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rL6emBtTxY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rL6emBtTxY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rL6emBtTxY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rL6emBtTxY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rL6emBtTxY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rL6emBtTxY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rL6emBtTxY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rL6emBtTxY .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-rL6emBtTxY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rL6emBtTxY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rL6emBtTxY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rL6emBtTxY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rL6emBtTxY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rL6emBtTxY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rL6emBtTxY .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rL6emBtTxY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rL6emBtTxY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rL6emBtTxY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rL6emBtTxY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rL6emBtTxY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rL6emBtTxY .dropdown-item.active,
.cid-rL6emBtTxY .dropdown-item:active {
  background-color: transparent;
}
.cid-rL6emBtTxY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rL6emBtTxY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rL6emBtTxY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rL6emBtTxY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rL6emBtTxY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rL6emBtTxY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rL6emBtTxY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rL6emBtTxY .navbar-buttons {
  text-align: center;
}
.cid-rL6emBtTxY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rL6emBtTxY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rL6emBtTxY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rL6emBtTxY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rL6emBtTxY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rL6emBtTxY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rL6emBtTxY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rL6emBtTxY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rL6emBtTxY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rL6emBtTxY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rL6emBtTxY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rL6emBtTxY a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-rL6emBtTxY .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-rL6emBtTxY .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rL6emBtTxY .soc-item {
  margin: .5rem .3rem;
}
.cid-rL6emBtTxY .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rL6emBtTxY .navbar {
    height: 77px;
  }
  .cid-rL6emBtTxY .navbar.opened {
    height: auto;
  }
  .cid-rL6emBtTxY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJNcyZahn8 {
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-rJNcyZahn8 .mbr-overlay {
  background: #39bab1;
}
.cid-rJNcyZahn8 .mbr-section-title {
  letter-spacing: -1px;
}
.cid-rJNdOrfSvG {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rJNdOrfSvG .row-element,
.cid-rJNdOrfSvG .image-element {
  padding: 0;
}
.cid-rJNdOrfSvG .image-element {
  display: flex;
  justify-content: center;
}
.cid-rJNdOrfSvG .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rJNdOrfSvG .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-rJNdOrfSvG .text-content {
    padding: 2rem 1rem;
  }
  .cid-rJNdOrfSvG .mbr-title,
  .cid-rJNdOrfSvG .mbr-text,
  .cid-rJNdOrfSvG .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rJNdOrfSvG .mbr-text,
.cid-rJNdOrfSvG .mbr-section-btn {
  color: #767676;
}
.cid-rJNdOrfSvG .mbr-title {
  color: #0c6969;
}
.cid-rJNcVjd69q {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/watch2-2000x1500.jpg");
}
.cid-rJNcVjd69q .mbr-overlay {
  background: #39bab1;
}
.cid-rJNcVjd69q .mbr-section-title {
  letter-spacing: -1px;
  color: #ffffff;
}
.cid-rJNcVjd69q .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rNt4aqS2BY {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNt4aqS2BY .main {
  flex-direction: row-reverse;
}
.cid-rNt4aqS2BY .row-element,
.cid-rNt4aqS2BY .image-element {
  padding: 0;
}
.cid-rNt4aqS2BY .image-element {
  display: flex;
  justify-content: center;
}
.cid-rNt4aqS2BY .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rNt4aqS2BY .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-rNt4aqS2BY .text-content {
    padding: 2rem 1rem;
  }
  .cid-rNt4aqS2BY .mbr-title,
  .cid-rNt4aqS2BY .mbr-text,
  .cid-rNt4aqS2BY .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rNt4aqS2BY .mbr-text,
.cid-rNt4aqS2BY .mbr-section-btn {
  color: #767676;
}
.cid-rNt4aqS2BY .mbr-title {
  color: #0c6969;
}
.cid-rNtjwYoRSg {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rNtjwYoRSg .row-element,
.cid-rNtjwYoRSg .image-element {
  padding: 0;
}
.cid-rNtjwYoRSg .image-element {
  display: flex;
  justify-content: center;
}
.cid-rNtjwYoRSg .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rNtjwYoRSg .text-content {
  padding: 3rem;
}
.cid-rNtjwYoRSg .mbr-section-subtitle {
  color: #b2ccd2;
}
@media (max-width: 767px) {
  .cid-rNtjwYoRSg .text-content {
    padding: 2rem 1rem;
  }
  .cid-rNtjwYoRSg .mbr-title,
  .cid-rNtjwYoRSg .mbr-text,
  .cid-rNtjwYoRSg .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rNtjwYoRSg .mbr-text,
.cid-rNtjwYoRSg .mbr-section-btn {
  color: #767676;
  text-align: left;
}
.cid-rNtjwYoRSg .mbr-title {
  text-align: left;
  color: #39bab1;
}
.cid-rOdHD8Ok8A {
  display: flex;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-rOdHD8Ok8A .mbr-overlay {
  background: #0c6969;
}
.cid-rOdHD8Ok8A .mbr-section-title {
  margin: 0;
}
.cid-rOdHD8Ok8A .mbr-text {
  color: #efefef;
}
.cid-rOdHD8Ok8A .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-rOdHD8Ok8A .card-img {
  text-align: left;
}
.cid-rOdHD8Ok8A .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-rOdHD8Ok8A .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rOdHD8Ok8A .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rOdHD8Ok8A .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-rOdHD8Ok8A .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rOdHD8Ok8A .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-rOdHD8Ok8A .card-box .mbr-text {
  text-align: center;
}
.cid-rOdHD8Ok8A .card-title,
.cid-rOdHD8Ok8A .card-img {
  text-align: center;
}
.cid-rOdHD8Ok8A .mbr-section-subtitle,
.cid-rOdHD8Ok8A .mbr-section-btn {
  text-align: center;
}
.cid-rOdHD8Ok8A .title-cont,
.cid-rOdHD8Ok8A .mbr-section-title {
  text-align: center;
}
.cid-rOfMIHKytu {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rOfMIHKytu .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-rOfMIHKytu .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-rOfMIHKytu .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rOfMIHKytu .wrapper {
  padding: 2rem 1rem 1rem 1rem;
}
.cid-rOfMIHKytu .card-overlay {
  display: none;
  background: #92b5d5;
}
@media (min-width: 768px) {
  .cid-rOfMIHKytu .image-element:hover .card-overlay {
    opacity: 0.6;
    border-bottom-right-radius: 7rem;
  }
  .cid-rOfMIHKytu .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-rOfMIHKytu .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-rOfMIHKytu .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-rOfMIHKytu .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rOfMIHKytu .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rOfMIHKytu .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rOfMIHKytu .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rOfMIHKytu .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-rOfMIHKytu .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-rOfMIHKytu .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-rOfMIHKytu .card-title,
  .cid-rOfMIHKytu .underline,
  .cid-rOfMIHKytu .mbr-text,
  .cid-rOfMIHKytu .mbr-section-btn,
  .cid-rOfMIHKytu .mbr-section-subtitle,
  .cid-rOfMIHKytu .mbr-section-title {
    text-align: center !important;
  }
  .cid-rOfMIHKytu .wrapper {
    background-color: #92b5d5;
  }
}
.cid-rOfMIHKytu .mbr-section-title {
  text-align: left;
}
.cid-rOfMIHKytu .mbr-section-title,
.cid-rOfMIHKytu .underline {
  text-align: center;
  color: #0c6969;
}
.cid-rT7GkKcqmA {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rT7GkKcqmA h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-rT7GkKcqmA .mbr-section-subtitle {
  color: #767676;
}
.cid-rT7GkKcqmA .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-rT7GkKcqmA .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-rT7GkKcqmA .article-counter-right {
  color: #0c6969;
}
.cid-rT7GkKcqmA .article-counter-left {
  color: #0c6969;
}
.cid-rT7GD1hmSK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rT7GD1hmSK h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-rT7GD1hmSK .mbr-section-subtitle {
  color: #767676;
}
.cid-rT7GD1hmSK .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-rT7GD1hmSK .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-rT7GD1hmSK .article-counter-left {
  color: #0c6969;
}
.cid-rT7GD1hmSK .article-counter-right {
  color: #0c6969;
}
.cid-rT7GDKv4KR {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rT7GDKv4KR h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-rT7GDKv4KR .mbr-section-subtitle {
  color: #767676;
}
.cid-rT7GDKv4KR .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-rT7GDKv4KR .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-rT7GDKv4KR .article-counter-left {
  color: #0c6969;
}
.cid-rT7GDKv4KR .article-counter-right {
  color: #0c6969;
}
.cid-rOuRG28wXm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rOuRG28wXm .card {
  display: block;
  position: relative;
}
.cid-rOuRG28wXm .card .card-wrapper {
  background: #0c6969;
  height: 1%;
}
.cid-rOuRG28wXm .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rOuRG28wXm .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rOuRG28wXm .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-rOuRG28wXm .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rOuRG28wXm .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rOuRG28wXm .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-rOuRG28wXm .mbr-section-title {
  text-align: center;
  color: #0c6969;
}
.cid-rOuRG28wXm .mbr-title {
  text-align: center;
  color: #ffffff;
}
.cid-rOuRG28wXm .mbr-card-text,
.cid-rOuRG28wXm .mbr-section-btn {
  text-align: center;
}
.cid-rJNvy6F9KK {
  padding-top: 60px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-rJNvy6F9KK .header-text {
  display: flex;
  align-items: center;
  color: #232323;
}
.cid-rJNvy6F9KK .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rJNvy6F9KK .mbr-section-subtitle {
  color: #767676;
}
.cid-rJNvy6F9KK .panel-group {
  width: 100%;
}
.cid-rJNvy6F9KK .panel-text {
  color: #767676;
}
.cid-rJNvy6F9KK .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-rJNvy6F9KK .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJNvy6F9KK .card .card-header a.panel-title {
  justify-content: space-between;
  transition: all .3s;
  background-color: #39bab1;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJNvy6F9KK .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-rJNvy6F9KK .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJNvy6F9KK .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-rJNvy6F9KK .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rJNvy6F9KK .card .panel-body {
  background: #ffffff;
}
.cid-rJNvy6F9KK .sign {
  color: #232323;
}
.cid-rJNvy6F9KK .header-text,
.cid-rJNvy6F9KK .sign {
  color: #ffffff;
}
.cid-rJNvy6F9KK .mbr-section-title {
  color: #0c6969;
}
.cid-shr8qyqAII {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0c6969;
}
.cid-shr8qyqAII .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-shr8qyqAII .mbr-section-btn,
  .cid-shr8qyqAII .mbr-section-subtitle,
  .cid-shr8qyqAII .mbr-section-title {
    text-align: center !important;
  }
}
.cid-shr8qyqAII .mbr-section-title {
  text-align: center;
}
.cid-shr8ujxFL7 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-shr8ujxFL7 .form-control {
  color: #000000 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #000000;
}
.cid-shr8ujxFL7 .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-shr8ujxFL7 input::-webkit-input-placeholder {
  color: #000000;
}
.cid-shr8ujxFL7 input::-moz-placeholder {
  color: #000000;
}
.cid-shr8ujxFL7 textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-shr8ujxFL7 textarea::-moz-placeholder {
  color: #000000;
}
.cid-shr8ujxFL7 textarea.form-control {
  min-height: 83px;
}
.cid-shr8ujxFL7 .mbr-section-subtitle {
  color: #767676;
}
.cid-shrgpYN8tz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-shrgpYN8tz a:link {
  text-decoration: none;
}
.cid-shrgpYN8tz .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-shrgpYN8tz .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-shrgpYN8tz .inner-text {
  line-height: 3em;
}
.cid-shrgpYN8tz .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-shrgpYN8tz .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-shrgpYN8tz .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-shrgpYN8tz .content-text,
.cid-shrgpYN8tz .inner-text {
  color: #c1c1c1;
}
.cid-rL6emBtTxY .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  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-rL6emBtTxY .nav-item,
.cid-rL6emBtTxY .nav-link,
.cid-rL6emBtTxY .navbar-caption {
  font-weight: normal;
}
.cid-rL6emBtTxY .nav-item:focus,
.cid-rL6emBtTxY .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rL6emBtTxY .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item {
  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-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rL6emBtTxY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rL6emBtTxY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rL6emBtTxY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rL6emBtTxY .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rL6emBtTxY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rL6emBtTxY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rL6emBtTxY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rL6emBtTxY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rL6emBtTxY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rL6emBtTxY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rL6emBtTxY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rL6emBtTxY .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-rL6emBtTxY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rL6emBtTxY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rL6emBtTxY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rL6emBtTxY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rL6emBtTxY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rL6emBtTxY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rL6emBtTxY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rL6emBtTxY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rL6emBtTxY .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-rL6emBtTxY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rL6emBtTxY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rL6emBtTxY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rL6emBtTxY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rL6emBtTxY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rL6emBtTxY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rL6emBtTxY .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rL6emBtTxY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rL6emBtTxY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rL6emBtTxY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rL6emBtTxY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rL6emBtTxY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rL6emBtTxY .dropdown-item.active,
.cid-rL6emBtTxY .dropdown-item:active {
  background-color: transparent;
}
.cid-rL6emBtTxY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rL6emBtTxY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rL6emBtTxY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rL6emBtTxY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rL6emBtTxY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rL6emBtTxY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rL6emBtTxY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rL6emBtTxY .navbar-buttons {
  text-align: center;
}
.cid-rL6emBtTxY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rL6emBtTxY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rL6emBtTxY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rL6emBtTxY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rL6emBtTxY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rL6emBtTxY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rL6emBtTxY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rL6emBtTxY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rL6emBtTxY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rL6emBtTxY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rL6emBtTxY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rL6emBtTxY a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-rL6emBtTxY .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-rL6emBtTxY .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rL6emBtTxY .soc-item {
  margin: .5rem .3rem;
}
.cid-rL6emBtTxY .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rL6emBtTxY .navbar {
    height: 77px;
  }
  .cid-rL6emBtTxY .navbar.opened {
    height: auto;
  }
  .cid-rL6emBtTxY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rSsdVqN7xz {
  background-image: url("../../../assets/images/mbr-2-1620x1080.jpg");
  background-position: right;
}
.cid-rSsdVqN7xz .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-rSsdVqN7xz .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-rSsdVqN7xz .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-rSsdVqN7xz img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-rSsdVqN7xz .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-rSsdHzA4L8 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rSsdHzA4L8 .mbr-section-subtitle {
  color: #767676;
}
.cid-rSse2XkTmC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1794x1080.jpg");
}
@media (max-width: 768px) {
  .cid-rSse2XkTmC .mbr-text,
  .cid-rSse2XkTmC .mbr-section-subtitle,
  .cid-rSse2XkTmC .mbr-section-title {
    text-align: center !important;
  }
}
.cid-rSsgewOpqZ {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rSsgewOpqZ .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-rSsgewOpqZ .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-rSsgewOpqZ .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-rSsgewOpqZ .card-title {
  color: #0087ab;
  margin: 0;
  text-align: center;
}
.cid-rSsgewOpqZ .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-rSsgewOpqZ .card-box {
  padding: 1rem;
}
.cid-rSsgewOpqZ .mbr-section-title,
.cid-rSsgewOpqZ .line-wrap {
  text-align: center;
}
.cid-rSsgewOpqZ .card-box > p,
.cid-rSsgewOpqZ .mbr-section-btn {
  text-align: center;
  color: #9e9e9e;
}
.cid-rSsgnDE8Wi {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSsgnDE8Wi .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-rSsgnDE8Wi .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-rSsgnDE8Wi .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-rSsgnDE8Wi .card-title {
  color: #0087ab;
  margin: 0;
  text-align: center;
}
.cid-rSsgnDE8Wi .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-rSsgnDE8Wi .card-box {
  padding: 1rem;
}
.cid-rSsgnDE8Wi .mbr-section-title,
.cid-rSsgnDE8Wi .line-wrap {
  text-align: center;
}
.cid-rSsgnDE8Wi .card-box > p,
.cid-rSsgnDE8Wi .mbr-section-btn {
  text-align: center;
  color: #9e9e9e;
}
.cid-rSsgoiN8bG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSsgoiN8bG .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-rSsgoiN8bG .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-rSsgoiN8bG .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-rSsgoiN8bG .card-title {
  color: #0087ab;
  margin: 0;
  text-align: center;
}
.cid-rSsgoiN8bG .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-rSsgoiN8bG .card-box {
  padding: 1rem;
}
.cid-rSsgoiN8bG .mbr-section-title,
.cid-rSsgoiN8bG .line-wrap {
  text-align: center;
}
.cid-rSsgoiN8bG .card-box > p,
.cid-rSsgoiN8bG .mbr-section-btn {
  text-align: center;
  color: #9e9e9e;
}
.cid-shrndilIx6 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  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-shrndilIx6 .nav-item,
.cid-shrndilIx6 .nav-link,
.cid-shrndilIx6 .navbar-caption {
  font-weight: normal;
}
.cid-shrndilIx6 .nav-item:focus,
.cid-shrndilIx6 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-shrndilIx6 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-shrndilIx6 .dropdown .dropdown-menu .dropdown-item {
  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-shrndilIx6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-shrndilIx6 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-shrndilIx6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-shrndilIx6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-shrndilIx6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-shrndilIx6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-shrndilIx6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-shrndilIx6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-shrndilIx6 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-shrndilIx6 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-shrndilIx6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-shrndilIx6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-shrndilIx6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-shrndilIx6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-shrndilIx6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-shrndilIx6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-shrndilIx6 .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-shrndilIx6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-shrndilIx6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-shrndilIx6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-shrndilIx6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-shrndilIx6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-shrndilIx6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-shrndilIx6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-shrndilIx6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-shrndilIx6 .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-shrndilIx6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-shrndilIx6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-shrndilIx6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-shrndilIx6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-shrndilIx6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-shrndilIx6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-shrndilIx6 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-shrndilIx6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-shrndilIx6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-shrndilIx6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-shrndilIx6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-shrndilIx6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-shrndilIx6 .dropdown-item.active,
.cid-shrndilIx6 .dropdown-item:active {
  background-color: transparent;
}
.cid-shrndilIx6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-shrndilIx6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-shrndilIx6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-shrndilIx6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-shrndilIx6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-shrndilIx6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-shrndilIx6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-shrndilIx6 .navbar-buttons {
  text-align: center;
}
.cid-shrndilIx6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-shrndilIx6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-shrndilIx6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-shrndilIx6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-shrndilIx6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-shrndilIx6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-shrndilIx6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-shrndilIx6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-shrndilIx6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-shrndilIx6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-shrndilIx6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-shrndilIx6 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-shrndilIx6 .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-shrndilIx6 .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-shrndilIx6 .soc-item {
  margin: .5rem .3rem;
}
.cid-shrndilIx6 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-shrndilIx6 .navbar {
    height: 77px;
  }
  .cid-shrndilIx6 .navbar.opened {
    height: auto;
  }
  .cid-shrndilIx6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-shrndjcmUH {
  padding-top: 150px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-shrndjcmUH .mbr-section-subtitle {
  color: #767676;
}
.cid-shrndjDg61 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rL6emBtTxY .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  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-rL6emBtTxY .nav-item,
.cid-rL6emBtTxY .nav-link,
.cid-rL6emBtTxY .navbar-caption {
  font-weight: normal;
}
.cid-rL6emBtTxY .nav-item:focus,
.cid-rL6emBtTxY .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rL6emBtTxY .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item {
  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-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rL6emBtTxY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rL6emBtTxY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rL6emBtTxY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rL6emBtTxY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rL6emBtTxY .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rL6emBtTxY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rL6emBtTxY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rL6emBtTxY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rL6emBtTxY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rL6emBtTxY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rL6emBtTxY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rL6emBtTxY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rL6emBtTxY .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-rL6emBtTxY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rL6emBtTxY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rL6emBtTxY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rL6emBtTxY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rL6emBtTxY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rL6emBtTxY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rL6emBtTxY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rL6emBtTxY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rL6emBtTxY .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-rL6emBtTxY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rL6emBtTxY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rL6emBtTxY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rL6emBtTxY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rL6emBtTxY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rL6emBtTxY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rL6emBtTxY .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rL6emBtTxY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rL6emBtTxY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rL6emBtTxY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rL6emBtTxY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rL6emBtTxY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rL6emBtTxY .dropdown-item.active,
.cid-rL6emBtTxY .dropdown-item:active {
  background-color: transparent;
}
.cid-rL6emBtTxY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rL6emBtTxY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rL6emBtTxY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rL6emBtTxY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rL6emBtTxY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rL6emBtTxY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rL6emBtTxY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rL6emBtTxY .navbar-buttons {
  text-align: center;
}
.cid-rL6emBtTxY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rL6emBtTxY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rL6emBtTxY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rL6emBtTxY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rL6emBtTxY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rL6emBtTxY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rL6emBtTxY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rL6emBtTxY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rL6emBtTxY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rL6emBtTxY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rL6emBtTxY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rL6emBtTxY a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-rL6emBtTxY .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-rL6emBtTxY .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rL6emBtTxY .soc-item {
  margin: .5rem .3rem;
}
.cid-rL6emBtTxY .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rL6emBtTxY .navbar {
    height: 77px;
  }
  .cid-rL6emBtTxY .navbar.opened {
    height: auto;
  }
  .cid-rL6emBtTxY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-shrljaNVI8 {
  padding-top: 150px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-shrljaNVI8 .mbr-section-subtitle {
  color: #767676;
}
.cid-shrl9iWTwi {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
