body {
  font-family: Poppins;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.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: 'Poppins', 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 {
  position: relative;
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: normal;
  margin: .4rem .8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,2s;
  transition-timing-function: ease-in-out;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  content: '';
  border: 1px solid;
  border-color: inherit;
  width: 100%;
  height: 100%;
  transition: border-radius 0.3s;
  position: absolute;
  left: 0%;
  top: 0%;
  opacity: 1;
  -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;
}
.note-popover .btn:after {
  display: none;
}
@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 {
  border: 1px solid;
  font-weight: 500;
  letter-spacing: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: normal;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: normal;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #66458e !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #66458e !important;
  border-color: #66458e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !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: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !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: #352449;
  color: #352449 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #66458e;
  border-color: #66458e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #66458e !important;
  border-color: #66458e !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: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !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: #66458e !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !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: #352449 !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: #c81c4d !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: #e96188;
}
.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: .3s,.3s,.3s,.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: #66458e;
  border-color: #66458e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #66458e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a68cc7;
}
.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: #ffffff;
}
.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;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #66458e;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  -webkit-justify-content: center;
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .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;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #66458e;
  color: #232323;
  cursor: pointer;
  border-radius: 100px;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #66458e;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
/* Footer */
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.cid-r8zkYoAkgu .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;
  -webkit-transform: scale(0, 1);
}
.cid-r8zkYoAkgu .nav-item,
.cid-r8zkYoAkgu .nav-link,
.cid-r8zkYoAkgu .navbar-caption {
  font-weight: normal;
}
.cid-r8zkYoAkgu .nav-item:focus,
.cid-r8zkYoAkgu .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-r8zkYoAkgu .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-r8zkYoAkgu .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-r8zkYoAkgu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r8zkYoAkgu .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-r8zkYoAkgu .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-r8zkYoAkgu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r8zkYoAkgu .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;
  -webkit-transform: scale(1, 1);
}
.cid-r8zkYoAkgu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r8zkYoAkgu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r8zkYoAkgu .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-r8zkYoAkgu .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-r8zkYoAkgu .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-r8zkYoAkgu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-r8zkYoAkgu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-r8zkYoAkgu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r8zkYoAkgu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r8zkYoAkgu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r8zkYoAkgu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r8zkYoAkgu .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-r8zkYoAkgu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r8zkYoAkgu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-r8zkYoAkgu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-r8zkYoAkgu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-r8zkYoAkgu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r8zkYoAkgu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r8zkYoAkgu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r8zkYoAkgu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r8zkYoAkgu .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-r8zkYoAkgu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r8zkYoAkgu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r8zkYoAkgu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-r8zkYoAkgu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-r8zkYoAkgu .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-r8zkYoAkgu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-r8zkYoAkgu .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-r8zkYoAkgu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r8zkYoAkgu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r8zkYoAkgu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-r8zkYoAkgu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r8zkYoAkgu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r8zkYoAkgu .dropdown-item.active,
.cid-r8zkYoAkgu .dropdown-item:active {
  background-color: transparent;
}
.cid-r8zkYoAkgu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r8zkYoAkgu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r8zkYoAkgu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r8zkYoAkgu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-r8zkYoAkgu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-r8zkYoAkgu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r8zkYoAkgu ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-r8zkYoAkgu .navbar-buttons {
  text-align: center;
}
.cid-r8zkYoAkgu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-r8zkYoAkgu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-r8zkYoAkgu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r8zkYoAkgu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r8zkYoAkgu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r8zkYoAkgu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r8zkYoAkgu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8zkYoAkgu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-r8zkYoAkgu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-r8zkYoAkgu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8zkYoAkgu .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r8zkYoAkgu a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-r8zkYoAkgu .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-r8zkYoAkgu .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-r8zkYoAkgu .soc-item {
  margin: .5rem .3rem;
}
.cid-r8zkYoAkgu .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-r8zkYoAkgu .navbar {
    height: 77px;
  }
  .cid-r8zkYoAkgu .navbar.opened {
    height: auto;
  }
  .cid-r8zkYoAkgu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r8zl05CtBk {
  background-image: url("../../../assets/images/sackcloth-1280529-1920-1920x1241.jpg");
}
.cid-r8zl05CtBk .mbr-overlay {
  background: #879a9f;
}
.cid-r8zl05CtBk .mbr-section-title {
  letter-spacing: -1px;
}
.cid-r8zozPKOv8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-r8zozPKOv8 .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-r8zozPKOv8 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-r8zozPKOv8 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-r8zozPKOv8 .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-r8zozPKOv8 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-r8zozPKOv8 .icon-transition span:hover {
  background-color: #e96188;
}
.cid-r8zozPKOv8 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-r8zozPKOv8 .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-r8zozPKOv8 .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-r8zozPKOv8 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-r8QD2Ao3Bu .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;
  -webkit-transform: scale(0, 1);
}
.cid-r8QD2Ao3Bu .nav-item,
.cid-r8QD2Ao3Bu .nav-link,
.cid-r8QD2Ao3Bu .navbar-caption {
  font-weight: normal;
}
.cid-r8QD2Ao3Bu .nav-item:focus,
.cid-r8QD2Ao3Bu .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-r8QD2Ao3Bu .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-r8QD2Ao3Bu .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-r8QD2Ao3Bu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r8QD2Ao3Bu .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-r8QD2Ao3Bu .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-r8QD2Ao3Bu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r8QD2Ao3Bu .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;
  -webkit-transform: scale(1, 1);
}
.cid-r8QD2Ao3Bu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r8QD2Ao3Bu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r8QD2Ao3Bu .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-r8QD2Ao3Bu .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-r8QD2Ao3Bu .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-r8QD2Ao3Bu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-r8QD2Ao3Bu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-r8QD2Ao3Bu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r8QD2Ao3Bu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r8QD2Ao3Bu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r8QD2Ao3Bu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r8QD2Ao3Bu .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-r8QD2Ao3Bu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r8QD2Ao3Bu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-r8QD2Ao3Bu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-r8QD2Ao3Bu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-r8QD2Ao3Bu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r8QD2Ao3Bu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r8QD2Ao3Bu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r8QD2Ao3Bu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r8QD2Ao3Bu .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-r8QD2Ao3Bu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r8QD2Ao3Bu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r8QD2Ao3Bu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-r8QD2Ao3Bu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-r8QD2Ao3Bu .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-r8QD2Ao3Bu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-r8QD2Ao3Bu .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-r8QD2Ao3Bu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r8QD2Ao3Bu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r8QD2Ao3Bu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-r8QD2Ao3Bu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r8QD2Ao3Bu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r8QD2Ao3Bu .dropdown-item.active,
.cid-r8QD2Ao3Bu .dropdown-item:active {
  background-color: transparent;
}
.cid-r8QD2Ao3Bu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r8QD2Ao3Bu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r8QD2Ao3Bu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r8QD2Ao3Bu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-r8QD2Ao3Bu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-r8QD2Ao3Bu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r8QD2Ao3Bu ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-r8QD2Ao3Bu .navbar-buttons {
  text-align: center;
}
.cid-r8QD2Ao3Bu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-r8QD2Ao3Bu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-r8QD2Ao3Bu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r8QD2Ao3Bu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QD2Ao3Bu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QD2Ao3Bu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r8QD2Ao3Bu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QD2Ao3Bu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-r8QD2Ao3Bu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-r8QD2Ao3Bu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QD2Ao3Bu .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r8QD2Ao3Bu a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-r8QD2Ao3Bu .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-r8QD2Ao3Bu .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-r8QD2Ao3Bu .soc-item {
  margin: .5rem .3rem;
}
.cid-r8QD2Ao3Bu .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-r8QD2Ao3Bu .navbar {
    height: 77px;
  }
  .cid-r8QD2Ao3Bu .navbar.opened {
    height: auto;
  }
  .cid-r8QD2Ao3Bu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r8KSsrMrU4 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #365c9a;
}
.cid-r8KSsrMrU4 .mbr-section-subtitle {
  color: #767676;
}
.cid-r8KSsrMrU4 .mbr-section-title {
  color: #ffffff;
}
.cid-r8KSuEji82 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #365c9a;
}
.cid-r8KSuEji82 .mbr-text {
  color: #ffffff;
}
.cid-r8KTwbFNyi {
  background: #365c9a;
  padding-top: 0px;
  padding-bottom: 45px;
}
.cid-r8KTwbFNyi .container-fluid {
  padding: 0 3rem;
}
.cid-r8KTwbFNyi .image-block {
  margin: auto;
}
.cid-r8KTwbFNyi .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-r8KTwbFNyi .container-fluid {
    padding: 0 1rem;
  }
  .cid-r8KTwbFNyi .image-block {
    width: 100% !important;
  }
}
.cid-r8KVrVhyOG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #365c9a;
}
.cid-r8KVrVhyOG .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r8KVrVhyOG .row-element,
.cid-r8KVrVhyOG .image-element {
  padding: 0;
}
.cid-r8KVrVhyOG .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8KVrVhyOG .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8KVrVhyOG .text-content {
  padding: 3rem;
}
.cid-r8KVrVhyOG .mbr-figure {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
@media (max-width: 767px) {
  .cid-r8KVrVhyOG .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8KVrVhyOG .mbr-title,
  .cid-r8KVrVhyOG .mbr-text,
  .cid-r8KVrVhyOG .mbr-section-btn,
  .cid-r8KVrVhyOG .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-r8QTke8Wj7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-r8QTke8Wj7 .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-r8QTke8Wj7 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-r8QTke8Wj7 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-r8QTke8Wj7 .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-r8QTke8Wj7 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-r8QTke8Wj7 .icon-transition span:hover {
  background-color: #e96188;
}
.cid-r8QTke8Wj7 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-r8QTke8Wj7 .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-r8QTke8Wj7 .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-r8QTke8Wj7 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-r8QCVqxPnP .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;
  -webkit-transform: scale(0, 1);
}
.cid-r8QCVqxPnP .nav-item,
.cid-r8QCVqxPnP .nav-link,
.cid-r8QCVqxPnP .navbar-caption {
  font-weight: normal;
}
.cid-r8QCVqxPnP .nav-item:focus,
.cid-r8QCVqxPnP .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-r8QCVqxPnP .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-r8QCVqxPnP .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-r8QCVqxPnP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r8QCVqxPnP .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-r8QCVqxPnP .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-r8QCVqxPnP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r8QCVqxPnP .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;
  -webkit-transform: scale(1, 1);
}
.cid-r8QCVqxPnP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r8QCVqxPnP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r8QCVqxPnP .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-r8QCVqxPnP .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-r8QCVqxPnP .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-r8QCVqxPnP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-r8QCVqxPnP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-r8QCVqxPnP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r8QCVqxPnP .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r8QCVqxPnP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r8QCVqxPnP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r8QCVqxPnP .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-r8QCVqxPnP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r8QCVqxPnP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-r8QCVqxPnP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-r8QCVqxPnP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-r8QCVqxPnP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r8QCVqxPnP .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r8QCVqxPnP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r8QCVqxPnP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r8QCVqxPnP .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-r8QCVqxPnP .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r8QCVqxPnP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r8QCVqxPnP .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-r8QCVqxPnP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCVqxPnP .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCVqxPnP .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-r8QCVqxPnP .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-r8QCVqxPnP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r8QCVqxPnP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r8QCVqxPnP .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-r8QCVqxPnP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r8QCVqxPnP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r8QCVqxPnP .dropdown-item.active,
.cid-r8QCVqxPnP .dropdown-item:active {
  background-color: transparent;
}
.cid-r8QCVqxPnP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r8QCVqxPnP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r8QCVqxPnP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r8QCVqxPnP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-r8QCVqxPnP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-r8QCVqxPnP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r8QCVqxPnP ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-r8QCVqxPnP .navbar-buttons {
  text-align: center;
}
.cid-r8QCVqxPnP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-r8QCVqxPnP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-r8QCVqxPnP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r8QCVqxPnP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCVqxPnP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCVqxPnP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r8QCVqxPnP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCVqxPnP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-r8QCVqxPnP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-r8QCVqxPnP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCVqxPnP .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r8QCVqxPnP a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-r8QCVqxPnP .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-r8QCVqxPnP .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-r8QCVqxPnP .soc-item {
  margin: .5rem .3rem;
}
.cid-r8QCVqxPnP .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-r8QCVqxPnP .navbar {
    height: 77px;
  }
  .cid-r8QCVqxPnP .navbar.opened {
    height: auto;
  }
  .cid-r8QCVqxPnP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r8KZEsb59m {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1152.jpg");
}
.cid-r8KZEsb59m .container-fluid {
  padding: 0 3rem;
}
.cid-r8KZEsb59m .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-r8KZEsb59m .container-fluid {
    padding: 0 1rem;
  }
}
.cid-r8KZEsb59m .mbr-text,
.cid-r8KZEsb59m .mbr-section-btn {
  text-align: left;
}
.cid-r8KYZy303v {
  background: #cccccc;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-r8KYZy303v .container-fluid {
  padding: 0 3rem;
}
.cid-r8KYZy303v .image-block {
  position: relative;
  margin: auto;
}
.cid-r8KYZy303v .image-block img {
  width: 100%;
}
.cid-r8KYZy303v .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-r8KYZy303v .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-r8KYZy303v .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-r8KYZy303v .container-fluid {
    padding: 0 1rem;
  }
}
.cid-r8QTbftPPR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-r8QTbftPPR .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-r8QTbftPPR .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-r8QTbftPPR .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-r8QTbftPPR .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-r8QTbftPPR .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-r8QTbftPPR .icon-transition span:hover {
  background-color: #e96188;
}
.cid-r8QTbftPPR .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-r8QTbftPPR .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-r8QTbftPPR .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-r8QTbftPPR .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-r8QCZLwFWK .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;
  -webkit-transform: scale(0, 1);
}
.cid-r8QCZLwFWK .nav-item,
.cid-r8QCZLwFWK .nav-link,
.cid-r8QCZLwFWK .navbar-caption {
  font-weight: normal;
}
.cid-r8QCZLwFWK .nav-item:focus,
.cid-r8QCZLwFWK .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-r8QCZLwFWK .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-r8QCZLwFWK .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-r8QCZLwFWK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r8QCZLwFWK .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-r8QCZLwFWK .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-r8QCZLwFWK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r8QCZLwFWK .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;
  -webkit-transform: scale(1, 1);
}
.cid-r8QCZLwFWK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r8QCZLwFWK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r8QCZLwFWK .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-r8QCZLwFWK .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-r8QCZLwFWK .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-r8QCZLwFWK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-r8QCZLwFWK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-r8QCZLwFWK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r8QCZLwFWK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r8QCZLwFWK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r8QCZLwFWK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r8QCZLwFWK .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-r8QCZLwFWK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r8QCZLwFWK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-r8QCZLwFWK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-r8QCZLwFWK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-r8QCZLwFWK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r8QCZLwFWK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r8QCZLwFWK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r8QCZLwFWK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r8QCZLwFWK .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-r8QCZLwFWK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r8QCZLwFWK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r8QCZLwFWK .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-r8QCZLwFWK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCZLwFWK .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCZLwFWK .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-r8QCZLwFWK .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-r8QCZLwFWK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r8QCZLwFWK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r8QCZLwFWK .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-r8QCZLwFWK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r8QCZLwFWK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r8QCZLwFWK .dropdown-item.active,
.cid-r8QCZLwFWK .dropdown-item:active {
  background-color: transparent;
}
.cid-r8QCZLwFWK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r8QCZLwFWK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r8QCZLwFWK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r8QCZLwFWK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-r8QCZLwFWK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-r8QCZLwFWK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r8QCZLwFWK ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-r8QCZLwFWK .navbar-buttons {
  text-align: center;
}
.cid-r8QCZLwFWK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-r8QCZLwFWK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-r8QCZLwFWK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r8QCZLwFWK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCZLwFWK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCZLwFWK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r8QCZLwFWK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCZLwFWK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-r8QCZLwFWK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-r8QCZLwFWK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCZLwFWK .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r8QCZLwFWK a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-r8QCZLwFWK .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-r8QCZLwFWK .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-r8QCZLwFWK .soc-item {
  margin: .5rem .3rem;
}
.cid-r8QCZLwFWK .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-r8QCZLwFWK .navbar {
    height: 77px;
  }
  .cid-r8QCZLwFWK .navbar.opened {
    height: auto;
  }
  .cid-r8QCZLwFWK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r8L18sOJPp {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #09c4b6;
}
.cid-r8L18sOJPp .container-fluid {
  padding: 0 3rem;
}
.cid-r8L18sOJPp .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-r8L18sOJPp .container-fluid {
    padding: 0 1rem;
  }
}
.cid-r8L18sOJPp .mbr-text,
.cid-r8L18sOJPp .mbr-section-btn {
  text-align: left;
}
.cid-r8L21nPcex {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-r8L21nPcex .container-fluid {
  padding: 0 3rem;
}
.cid-r8L21nPcex .image-block {
  position: relative;
  margin: auto;
}
.cid-r8L21nPcex .image-block img {
  width: 100%;
}
.cid-r8L21nPcex .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-r8L21nPcex .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-r8L21nPcex .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-r8L21nPcex .container-fluid {
    padding: 0 1rem;
  }
}
.cid-r8QThCuYv0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-r8QThCuYv0 .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-r8QThCuYv0 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-r8QThCuYv0 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-r8QThCuYv0 .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-r8QThCuYv0 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-r8QThCuYv0 .icon-transition span:hover {
  background-color: #e96188;
}
.cid-r8QThCuYv0 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-r8QThCuYv0 .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-r8QThCuYv0 .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-r8QThCuYv0 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-r8QCPPeDwt .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;
  -webkit-transform: scale(0, 1);
}
.cid-r8QCPPeDwt .nav-item,
.cid-r8QCPPeDwt .nav-link,
.cid-r8QCPPeDwt .navbar-caption {
  font-weight: normal;
}
.cid-r8QCPPeDwt .nav-item:focus,
.cid-r8QCPPeDwt .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-r8QCPPeDwt .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-r8QCPPeDwt .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-r8QCPPeDwt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r8QCPPeDwt .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-r8QCPPeDwt .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-r8QCPPeDwt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r8QCPPeDwt .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;
  -webkit-transform: scale(1, 1);
}
.cid-r8QCPPeDwt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r8QCPPeDwt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r8QCPPeDwt .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-r8QCPPeDwt .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-r8QCPPeDwt .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-r8QCPPeDwt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-r8QCPPeDwt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-r8QCPPeDwt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r8QCPPeDwt .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r8QCPPeDwt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r8QCPPeDwt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r8QCPPeDwt .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-r8QCPPeDwt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r8QCPPeDwt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-r8QCPPeDwt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-r8QCPPeDwt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-r8QCPPeDwt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r8QCPPeDwt .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r8QCPPeDwt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r8QCPPeDwt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r8QCPPeDwt .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-r8QCPPeDwt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r8QCPPeDwt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r8QCPPeDwt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-r8QCPPeDwt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCPPeDwt .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCPPeDwt .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-r8QCPPeDwt .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-r8QCPPeDwt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r8QCPPeDwt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r8QCPPeDwt .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-r8QCPPeDwt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r8QCPPeDwt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r8QCPPeDwt .dropdown-item.active,
.cid-r8QCPPeDwt .dropdown-item:active {
  background-color: transparent;
}
.cid-r8QCPPeDwt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r8QCPPeDwt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r8QCPPeDwt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r8QCPPeDwt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-r8QCPPeDwt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-r8QCPPeDwt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r8QCPPeDwt ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-r8QCPPeDwt .navbar-buttons {
  text-align: center;
}
.cid-r8QCPPeDwt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-r8QCPPeDwt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-r8QCPPeDwt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r8QCPPeDwt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCPPeDwt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCPPeDwt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r8QCPPeDwt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCPPeDwt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-r8QCPPeDwt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-r8QCPPeDwt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCPPeDwt .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r8QCPPeDwt a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-r8QCPPeDwt .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-r8QCPPeDwt .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-r8QCPPeDwt .soc-item {
  margin: .5rem .3rem;
}
.cid-r8QCPPeDwt .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-r8QCPPeDwt .navbar {
    height: 77px;
  }
  .cid-r8QCPPeDwt .navbar.opened {
    height: auto;
  }
  .cid-r8QCPPeDwt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r8L36uGdZd {
  padding-top: 105px;
  padding-bottom: 135px;
  background-color: #fac769;
}
.cid-r8L36uGdZd .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r8L36uGdZd .row-element,
.cid-r8L36uGdZd .image-element {
  padding: 0;
}
.cid-r8L36uGdZd .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8L36uGdZd .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8L36uGdZd .text-content {
  padding: 3rem;
}
.cid-r8L36uGdZd .mbr-figure {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
@media (max-width: 767px) {
  .cid-r8L36uGdZd .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8L36uGdZd .mbr-title,
  .cid-r8L36uGdZd .mbr-text,
  .cid-r8L36uGdZd .mbr-section-btn,
  .cid-r8L36uGdZd .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-r8PXmM3svo {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #fac769;
}
.cid-r8PXmM3svo .row-element,
.cid-r8PXmM3svo .image-element {
  padding: 0;
}
.cid-r8PXmM3svo .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8PXmM3svo .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8PXmM3svo .text-content {
  padding: 3rem;
}
.cid-r8PXmM3svo .mbr-figure {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
@media (max-width: 767px) {
  .cid-r8PXmM3svo .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8PXmM3svo .mbr-title,
  .cid-r8PXmM3svo .mbr-text,
  .cid-r8PXmM3svo .mbr-section-btn,
  .cid-r8PXmM3svo .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-r8QT812OsH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-r8QT812OsH .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-r8QT812OsH .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-r8QT812OsH .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-r8QT812OsH .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-r8QT812OsH .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-r8QT812OsH .icon-transition span:hover {
  background-color: #e96188;
}
.cid-r8QT812OsH .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-r8QT812OsH .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-r8QT812OsH .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-r8QT812OsH .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-r8QCyBIho4 .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;
  -webkit-transform: scale(0, 1);
}
.cid-r8QCyBIho4 .nav-item,
.cid-r8QCyBIho4 .nav-link,
.cid-r8QCyBIho4 .navbar-caption {
  font-weight: normal;
}
.cid-r8QCyBIho4 .nav-item:focus,
.cid-r8QCyBIho4 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-r8QCyBIho4 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-r8QCyBIho4 .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-r8QCyBIho4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r8QCyBIho4 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-r8QCyBIho4 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-r8QCyBIho4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r8QCyBIho4 .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;
  -webkit-transform: scale(1, 1);
}
.cid-r8QCyBIho4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r8QCyBIho4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r8QCyBIho4 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-r8QCyBIho4 .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-r8QCyBIho4 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-r8QCyBIho4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-r8QCyBIho4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-r8QCyBIho4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r8QCyBIho4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r8QCyBIho4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r8QCyBIho4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r8QCyBIho4 .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-r8QCyBIho4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r8QCyBIho4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-r8QCyBIho4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-r8QCyBIho4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-r8QCyBIho4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r8QCyBIho4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r8QCyBIho4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r8QCyBIho4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r8QCyBIho4 .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-r8QCyBIho4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r8QCyBIho4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r8QCyBIho4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-r8QCyBIho4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCyBIho4 .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCyBIho4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-r8QCyBIho4 .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-r8QCyBIho4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r8QCyBIho4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r8QCyBIho4 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-r8QCyBIho4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r8QCyBIho4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r8QCyBIho4 .dropdown-item.active,
.cid-r8QCyBIho4 .dropdown-item:active {
  background-color: transparent;
}
.cid-r8QCyBIho4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r8QCyBIho4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r8QCyBIho4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r8QCyBIho4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-r8QCyBIho4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-r8QCyBIho4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r8QCyBIho4 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-r8QCyBIho4 .navbar-buttons {
  text-align: center;
}
.cid-r8QCyBIho4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-r8QCyBIho4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-r8QCyBIho4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r8QCyBIho4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCyBIho4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCyBIho4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r8QCyBIho4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCyBIho4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-r8QCyBIho4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-r8QCyBIho4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCyBIho4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r8QCyBIho4 a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-r8QCyBIho4 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-r8QCyBIho4 .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-r8QCyBIho4 .soc-item {
  margin: .5rem .3rem;
}
.cid-r8QCyBIho4 .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-r8QCyBIho4 .navbar {
    height: 77px;
  }
  .cid-r8QCyBIho4 .navbar.opened {
    height: auto;
  }
  .cid-r8QCyBIho4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r8Q8LyAnb9 {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ed94ae;
}
.cid-r8Q8LyAnb9 .mbr-section-subtitle {
  color: #767676;
}
.cid-r8Q8LyAnb9 .mbr-section-title {
  color: #ffffff;
}
.cid-r8Q8MTl2M5 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-r8Q8PCIhRL {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-r8Q8PCIhRL .row-element,
.cid-r8Q8PCIhRL .image-element {
  padding: 0;
}
.cid-r8Q8PCIhRL .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8Q8PCIhRL .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8Q8PCIhRL .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-r8Q8PCIhRL .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8Q8PCIhRL .mbr-title,
  .cid-r8Q8PCIhRL .mbr-text,
  .cid-r8Q8PCIhRL .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8Q8PCIhRL .mbr-text,
.cid-r8Q8PCIhRL .mbr-section-btn {
  color: #767676;
}
.cid-r8Q8PCIhRL .mbr-title {
  color: #e96188;
}
.cid-r8Q8Qnsf4O {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r8Q8Qnsf4O .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r8Q8Qnsf4O .row-element,
.cid-r8Q8Qnsf4O .image-element {
  padding: 0;
}
.cid-r8Q8Qnsf4O .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8Q8Qnsf4O .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8Q8Qnsf4O .text-content {
  padding: 3rem;
}
.cid-r8Q8Qnsf4O .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-r8Q8Qnsf4O .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8Q8Qnsf4O .mbr-title,
  .cid-r8Q8Qnsf4O .underline,
  .cid-r8Q8Qnsf4O .mbr-text,
  .cid-r8Q8Qnsf4O .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8Q8Qnsf4O .mbr-text,
.cid-r8Q8Qnsf4O .mbr-section-btn {
  text-align: right;
}
.cid-r8Q8Qnsf4O .mbr-title {
  color: #e96188;
}
.cid-r8Q8RL3she {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-r8Q8RL3she .row-element,
.cid-r8Q8RL3she .image-element {
  padding: 0;
}
.cid-r8Q8RL3she .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8Q8RL3she .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8Q8RL3she .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-r8Q8RL3she .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8Q8RL3she .mbr-title,
  .cid-r8Q8RL3she .mbr-text,
  .cid-r8Q8RL3she .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8Q8RL3she .mbr-text,
.cid-r8Q8RL3she .mbr-section-btn {
  color: #767676;
}
.cid-r8Q8RL3she .mbr-title {
  color: #e96188;
}
.cid-r8Q8SjE9v6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r8Q8SjE9v6 .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r8Q8SjE9v6 .row-element,
.cid-r8Q8SjE9v6 .image-element {
  padding: 0;
}
.cid-r8Q8SjE9v6 .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8Q8SjE9v6 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8Q8SjE9v6 .text-content {
  padding: 3rem;
}
.cid-r8Q8SjE9v6 .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-r8Q8SjE9v6 .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8Q8SjE9v6 .mbr-title,
  .cid-r8Q8SjE9v6 .underline,
  .cid-r8Q8SjE9v6 .mbr-text,
  .cid-r8Q8SjE9v6 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8Q8SjE9v6 .mbr-text,
.cid-r8Q8SjE9v6 .mbr-section-btn {
  text-align: right;
}
.cid-r8Q8SjE9v6 .mbr-title {
  color: #e96188;
}
.cid-r8Q8TyCHcS {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-r8Q8TyCHcS .row-element,
.cid-r8Q8TyCHcS .image-element {
  padding: 0;
}
.cid-r8Q8TyCHcS .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8Q8TyCHcS .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8Q8TyCHcS .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-r8Q8TyCHcS .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8Q8TyCHcS .mbr-title,
  .cid-r8Q8TyCHcS .mbr-text,
  .cid-r8Q8TyCHcS .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8Q8TyCHcS .mbr-text,
.cid-r8Q8TyCHcS .mbr-section-btn {
  color: #767676;
}
.cid-r8Q8TyCHcS .mbr-title {
  color: #e96188;
}
.cid-r8Q8UlgDwM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r8Q8UlgDwM .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r8Q8UlgDwM .row-element,
.cid-r8Q8UlgDwM .image-element {
  padding: 0;
}
.cid-r8Q8UlgDwM .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8Q8UlgDwM .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8Q8UlgDwM .text-content {
  padding: 3rem;
}
.cid-r8Q8UlgDwM .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-r8Q8UlgDwM .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8Q8UlgDwM .mbr-title,
  .cid-r8Q8UlgDwM .underline,
  .cid-r8Q8UlgDwM .mbr-text,
  .cid-r8Q8UlgDwM .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8Q8UlgDwM .mbr-text,
.cid-r8Q8UlgDwM .mbr-section-btn {
  text-align: right;
}
.cid-r8Q8UlgDwM .mbr-title {
  color: #e96188;
}
.cid-r8Q8XdZv7G {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-r8Q8XdZv7G .row-element,
.cid-r8Q8XdZv7G .image-element {
  padding: 0;
}
.cid-r8Q8XdZv7G .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8Q8XdZv7G .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8Q8XdZv7G .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-r8Q8XdZv7G .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8Q8XdZv7G .mbr-title,
  .cid-r8Q8XdZv7G .mbr-text,
  .cid-r8Q8XdZv7G .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8Q8XdZv7G .mbr-text,
.cid-r8Q8XdZv7G .mbr-section-btn {
  color: #767676;
}
.cid-r8Q8XdZv7G .mbr-title {
  color: #e96188;
}
.cid-r8Q8Y8AJI7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r8Q8Y8AJI7 .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r8Q8Y8AJI7 .row-element,
.cid-r8Q8Y8AJI7 .image-element {
  padding: 0;
}
.cid-r8Q8Y8AJI7 .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8Q8Y8AJI7 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8Q8Y8AJI7 .text-content {
  padding: 3rem;
}
.cid-r8Q8Y8AJI7 .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-r8Q8Y8AJI7 .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8Q8Y8AJI7 .mbr-title,
  .cid-r8Q8Y8AJI7 .underline,
  .cid-r8Q8Y8AJI7 .mbr-text,
  .cid-r8Q8Y8AJI7 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8Q8Y8AJI7 .mbr-text,
.cid-r8Q8Y8AJI7 .mbr-section-btn {
  text-align: right;
}
.cid-r8Q8Y8AJI7 .mbr-title {
  color: #e96188;
}
.cid-r8QSU5cWR8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-r8QSU5cWR8 .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-r8QSU5cWR8 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-r8QSU5cWR8 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-r8QSU5cWR8 .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-r8QSU5cWR8 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-r8QSU5cWR8 .icon-transition span:hover {
  background-color: #e96188;
}
.cid-r8QSU5cWR8 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-r8QSU5cWR8 .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-r8QSU5cWR8 .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-r8QSU5cWR8 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-r8QCwv1Aou .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;
  -webkit-transform: scale(0, 1);
}
.cid-r8QCwv1Aou .nav-item,
.cid-r8QCwv1Aou .nav-link,
.cid-r8QCwv1Aou .navbar-caption {
  font-weight: normal;
}
.cid-r8QCwv1Aou .nav-item:focus,
.cid-r8QCwv1Aou .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-r8QCwv1Aou .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-r8QCwv1Aou .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-r8QCwv1Aou .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r8QCwv1Aou .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-r8QCwv1Aou .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-r8QCwv1Aou .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r8QCwv1Aou .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;
  -webkit-transform: scale(1, 1);
}
.cid-r8QCwv1Aou .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r8QCwv1Aou .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r8QCwv1Aou .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-r8QCwv1Aou .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-r8QCwv1Aou .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-r8QCwv1Aou .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-r8QCwv1Aou .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-r8QCwv1Aou .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r8QCwv1Aou .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r8QCwv1Aou .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r8QCwv1Aou .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r8QCwv1Aou .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-r8QCwv1Aou .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r8QCwv1Aou .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-r8QCwv1Aou .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-r8QCwv1Aou .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-r8QCwv1Aou .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r8QCwv1Aou .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r8QCwv1Aou .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r8QCwv1Aou .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r8QCwv1Aou .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-r8QCwv1Aou .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r8QCwv1Aou .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r8QCwv1Aou .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-r8QCwv1Aou .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCwv1Aou .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCwv1Aou .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-r8QCwv1Aou .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-r8QCwv1Aou .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r8QCwv1Aou .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r8QCwv1Aou .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-r8QCwv1Aou .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r8QCwv1Aou .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r8QCwv1Aou .dropdown-item.active,
.cid-r8QCwv1Aou .dropdown-item:active {
  background-color: transparent;
}
.cid-r8QCwv1Aou .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r8QCwv1Aou .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r8QCwv1Aou .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r8QCwv1Aou .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-r8QCwv1Aou .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-r8QCwv1Aou .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r8QCwv1Aou ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-r8QCwv1Aou .navbar-buttons {
  text-align: center;
}
.cid-r8QCwv1Aou button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-r8QCwv1Aou button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-r8QCwv1Aou button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r8QCwv1Aou button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCwv1Aou button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCwv1Aou button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r8QCwv1Aou nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCwv1Aou nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-r8QCwv1Aou nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-r8QCwv1Aou nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCwv1Aou .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r8QCwv1Aou a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-r8QCwv1Aou .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-r8QCwv1Aou .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-r8QCwv1Aou .soc-item {
  margin: .5rem .3rem;
}
.cid-r8QCwv1Aou .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-r8QCwv1Aou .navbar {
    height: 77px;
  }
  .cid-r8QCwv1Aou .navbar.opened {
    height: auto;
  }
  .cid-r8QCwv1Aou .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r8Qc45Hb9W {
  overflow: hidden !important;
  background-image: url("../../../assets/images/augmented-reality-1957411-2000x1500.jpg");
}
.cid-r8Qc45Hb9W .container-fluid {
  padding: 0 3rem;
}
.cid-r8Qc45Hb9W .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-r8Qc45Hb9W .container-fluid {
    padding: 0 1rem;
  }
}
.cid-r8Qc45Hb9W .mbr-text,
.cid-r8Qc45Hb9W .mbr-section-btn {
  text-align: left;
}
.cid-r8QcEBxLkP {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-r8QcEBxLkP .row-element,
.cid-r8QcEBxLkP .image-element {
  padding: 0;
}
.cid-r8QcEBxLkP .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8QcEBxLkP .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8QcEBxLkP .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-r8QcEBxLkP .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8QcEBxLkP .mbr-title,
  .cid-r8QcEBxLkP .mbr-text,
  .cid-r8QcEBxLkP .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8QcEBxLkP .mbr-text,
.cid-r8QcEBxLkP .mbr-section-btn {
  color: #767676;
}
.cid-r8QcEBxLkP .mbr-title {
  color: #e96188;
}
.cid-r8QlBvPwxU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r8QlBvPwxU .mbr-text {
  color: #232323;
}
.cid-r8QlBvPwxU .mbr-subtitle {
  color: #767676;
}
.cid-r8QlBvPwxU .mbr-title {
  color: #e96188;
}
.cid-r8QlG2zAwr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fac769;
}
.cid-r8QlG2zAwr .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r8QlG2zAwr .row-element,
.cid-r8QlG2zAwr .image-element {
  padding: 0;
}
.cid-r8QlG2zAwr .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8QlG2zAwr .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8QlG2zAwr .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-r8QlG2zAwr .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8QlG2zAwr .mbr-title,
  .cid-r8QlG2zAwr .underline,
  .cid-r8QlG2zAwr .mbr-text,
  .cid-r8QlG2zAwr .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8QlQ2P3f6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f8f8f8;
}
.cid-r8QlQ2P3f6 .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8QlQ2P3f6 .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-r8QlQ2P3f6 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-r8QlQ2P3f6 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-r8QlQ2P3f6 .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: #e96188;
}
.cid-r8QlQ2P3f6 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-r8QlQ2P3f6 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-r8QlQ2P3f6 .mbr-card-text {
  margin: 0;
}
.cid-r8QlQ2P3f6 .mbr-section-title {
  text-align: center;
}
.cid-r8QlQ2P3f6 .mbr-card-text,
.cid-r8QlQ2P3f6 .mbr-section-btn {
  text-align: left;
}
.cid-r8QSP2kiyS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-r8QSP2kiyS .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-r8QSP2kiyS .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-r8QSP2kiyS .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-r8QSP2kiyS .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-r8QSP2kiyS .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-r8QSP2kiyS .icon-transition span:hover {
  background-color: #e96188;
}
.cid-r8QSP2kiyS .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-r8QSP2kiyS .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-r8QSP2kiyS .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-r8QSP2kiyS .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-r8QCtVMaVg .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;
  -webkit-transform: scale(0, 1);
}
.cid-r8QCtVMaVg .nav-item,
.cid-r8QCtVMaVg .nav-link,
.cid-r8QCtVMaVg .navbar-caption {
  font-weight: normal;
}
.cid-r8QCtVMaVg .nav-item:focus,
.cid-r8QCtVMaVg .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-r8QCtVMaVg .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-r8QCtVMaVg .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-r8QCtVMaVg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r8QCtVMaVg .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-r8QCtVMaVg .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-r8QCtVMaVg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r8QCtVMaVg .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;
  -webkit-transform: scale(1, 1);
}
.cid-r8QCtVMaVg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r8QCtVMaVg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r8QCtVMaVg .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-r8QCtVMaVg .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-r8QCtVMaVg .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-r8QCtVMaVg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-r8QCtVMaVg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-r8QCtVMaVg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r8QCtVMaVg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r8QCtVMaVg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r8QCtVMaVg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r8QCtVMaVg .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-r8QCtVMaVg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r8QCtVMaVg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-r8QCtVMaVg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-r8QCtVMaVg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-r8QCtVMaVg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r8QCtVMaVg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r8QCtVMaVg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r8QCtVMaVg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r8QCtVMaVg .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-r8QCtVMaVg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r8QCtVMaVg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r8QCtVMaVg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-r8QCtVMaVg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCtVMaVg .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCtVMaVg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-r8QCtVMaVg .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-r8QCtVMaVg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r8QCtVMaVg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r8QCtVMaVg .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-r8QCtVMaVg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r8QCtVMaVg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r8QCtVMaVg .dropdown-item.active,
.cid-r8QCtVMaVg .dropdown-item:active {
  background-color: transparent;
}
.cid-r8QCtVMaVg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r8QCtVMaVg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r8QCtVMaVg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r8QCtVMaVg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-r8QCtVMaVg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-r8QCtVMaVg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r8QCtVMaVg ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-r8QCtVMaVg .navbar-buttons {
  text-align: center;
}
.cid-r8QCtVMaVg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-r8QCtVMaVg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-r8QCtVMaVg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r8QCtVMaVg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCtVMaVg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCtVMaVg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r8QCtVMaVg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCtVMaVg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-r8QCtVMaVg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-r8QCtVMaVg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCtVMaVg .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r8QCtVMaVg a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-r8QCtVMaVg .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-r8QCtVMaVg .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-r8QCtVMaVg .soc-item {
  margin: .5rem .3rem;
}
.cid-r8QCtVMaVg .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-r8QCtVMaVg .navbar {
    height: 77px;
  }
  .cid-r8QCtVMaVg .navbar.opened {
    height: auto;
  }
  .cid-r8QCtVMaVg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r8QqrbUwjy {
  overflow: hidden !important;
  background-image: url("../../../assets/images/cyber-glasses-1938449-2000x1332.jpg");
}
.cid-r8QqrbUwjy .container-fluid {
  padding: 0 3rem;
}
.cid-r8QqrbUwjy .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-r8QqrbUwjy .container-fluid {
    padding: 0 1rem;
  }
}
.cid-r8QqrbUwjy .mbr-text,
.cid-r8QqrbUwjy .mbr-section-btn {
  text-align: left;
}
.cid-r8QqAsgUrV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r8QqAsgUrV .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r8QqAsgUrV .row-element,
.cid-r8QqAsgUrV .image-element {
  padding: 0;
}
.cid-r8QqAsgUrV .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8QqAsgUrV .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8QqAsgUrV .text-content {
  padding: 3rem;
}
.cid-r8QqAsgUrV .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-r8QqAsgUrV .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8QqAsgUrV .mbr-title,
  .cid-r8QqAsgUrV .underline,
  .cid-r8QqAsgUrV .mbr-text,
  .cid-r8QqAsgUrV .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8QqAsgUrV .mbr-title {
  color: #66458e;
}
.cid-r8QqAsgUrV .mbr-text,
.cid-r8QqAsgUrV .mbr-section-btn {
  text-align: right;
}
.cid-r8QqAQokMt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r8QqAQokMt .row-element,
.cid-r8QqAQokMt .image-element {
  padding: 0;
}
.cid-r8QqAQokMt .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8QqAQokMt .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8QqAQokMt .text-content {
  padding: 3rem;
}
.cid-r8QqAQokMt .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-r8QqAQokMt .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8QqAQokMt .mbr-title,
  .cid-r8QqAQokMt .underline,
  .cid-r8QqAQokMt .mbr-text,
  .cid-r8QqAQokMt .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8QqAQokMt .mbr-title {
  color: #66458e;
}
.cid-r8QqAQokMt .mbr-text,
.cid-r8QqAQokMt .mbr-section-btn {
  text-align: left;
}
.cid-r8QqChSY3W {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r8QqChSY3W .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r8QqChSY3W .row-element,
.cid-r8QqChSY3W .image-element {
  padding: 0;
}
.cid-r8QqChSY3W .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8QqChSY3W .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8QqChSY3W .text-content {
  padding: 3rem;
}
.cid-r8QqChSY3W .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-r8QqChSY3W .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8QqChSY3W .mbr-title,
  .cid-r8QqChSY3W .underline,
  .cid-r8QqChSY3W .mbr-text,
  .cid-r8QqChSY3W .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8QqChSY3W .mbr-title {
  color: #66458e;
}
.cid-r8QqChSY3W .mbr-text,
.cid-r8QqChSY3W .mbr-section-btn {
  text-align: right;
}
.cid-r8QqJ6DMba {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-r8QqJ6DMba .mbr-text {
  color: #767676;
}
.cid-r8QqJ6DMba .mbr-section-subtitle {
  color: #767676;
}
.cid-r8QqJ6DMba .title {
  position: relative;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-r8QqJ6DMba .title .num {
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  -webkit-flex-shrink: 0;
  font-size: 4rem;
}
.cid-r8QqJ6DMba .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-r8QqJ6DMba .card-text {
  padding-top: 2rem;
}
.cid-r8QqJ6DMba .card-box {
  padding-bottom: 1rem;
}
.cid-r8QqJ6DMba .num {
  color: #fac769;
}
@media (max-width: 767px) {
  .cid-r8QqJ6DMba .num,
  .cid-r8QqJ6DMba .card-title,
  .cid-r8QqJ6DMba .mbr-text,
  .cid-r8QqJ6DMba .mbr-title,
  .cid-r8QqJ6DMba .mbr-section-subtitle,
  .cid-r8QqJ6DMba .mbr-section-btn,
  .cid-r8QqJ6DMba .mbr-section-title {
    text-align: center !important;
  }
  .cid-r8QqJ6DMba .content-column {
    margin-bottom: 2rem;
  }
}
.cid-r8QqJ6DMba .mbr-section-title {
  text-align: center;
}
.cid-r8Qr5I9iF5 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fac769;
}
.cid-r8Qr5I9iF5 .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r8Qr5I9iF5 .row-element,
.cid-r8Qr5I9iF5 .image-element {
  padding: 0;
}
.cid-r8Qr5I9iF5 .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8Qr5I9iF5 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8Qr5I9iF5 .text-content {
  padding: 3rem;
}
.cid-r8Qr5I9iF5 .mbr-figure {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
@media (max-width: 767px) {
  .cid-r8Qr5I9iF5 .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8Qr5I9iF5 .mbr-title,
  .cid-r8Qr5I9iF5 .mbr-text,
  .cid-r8Qr5I9iF5 .mbr-section-btn,
  .cid-r8Qr5I9iF5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-r8QuGiXUmb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #365c9a;
}
.cid-r8QuGiXUmb .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-r8QuGiXUmb .mbr-section-btn,
  .cid-r8QuGiXUmb .mbr-section-subtitle,
  .cid-r8QuGiXUmb .mbr-section-title {
    text-align: center !important;
  }
}
.cid-r8QrkEuCdC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #365c9a;
}
.cid-r8QrkEuCdC .row-element,
.cid-r8QrkEuCdC .image-element {
  padding: 0;
}
.cid-r8QrkEuCdC .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8QrkEuCdC .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8QrkEuCdC .text-content {
  padding: 3rem;
}
.cid-r8QrkEuCdC .mbr-figure {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
@media (max-width: 767px) {
  .cid-r8QrkEuCdC .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8QrkEuCdC .mbr-title,
  .cid-r8QrkEuCdC .mbr-text,
  .cid-r8QrkEuCdC .mbr-section-btn,
  .cid-r8QrkEuCdC .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-r8QwAgDbc5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e38580;
}
.cid-r8QwAgDbc5 .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r8QwAgDbc5 .row-element,
.cid-r8QwAgDbc5 .image-element {
  padding: 0;
}
.cid-r8QwAgDbc5 .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8QwAgDbc5 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8QwAgDbc5 .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-r8QwAgDbc5 .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8QwAgDbc5 .mbr-title,
  .cid-r8QwAgDbc5 .underline,
  .cid-r8QwAgDbc5 .mbr-text,
  .cid-r8QwAgDbc5 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8QrvL7K6W {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r8QrvL7K6W .header-text {
  display: -webkit-flex;
  align-items: center;
  color: #232323;
  -webkit-align-items: center;
}
.cid-r8QrvL7K6W .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-r8QrvL7K6W .mbr-section-subtitle {
  color: #767676;
}
.cid-r8QrvL7K6W .panel-group {
  width: 100%;
}
.cid-r8QrvL7K6W .panel-text {
  color: #767676;
}
.cid-r8QrvL7K6W .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-r8QrvL7K6W .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-r8QrvL7K6W .card .card-header a.panel-title {
  justify-content: space-between;
  transition: all .3s;
  background-color: #f6f6f6;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: -webkit-flex;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  -webkit-justify-content: space-between;
  -webkit-align-items: center;
}
.cid-r8QrvL7K6W .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-r8QrvL7K6W .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-r8QrvL7K6W .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-r8QrvL7K6W .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-r8QrvL7K6W .card .panel-body {
  background: #ffffff;
}
.cid-r8QrvL7K6W .sign {
  color: #232323;
}
.cid-r8QSLmyEsV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-r8QSLmyEsV .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-r8QSLmyEsV .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-r8QSLmyEsV .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-r8QSLmyEsV .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-r8QSLmyEsV .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-r8QSLmyEsV .icon-transition span:hover {
  background-color: #e96188;
}
.cid-r8QSLmyEsV .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-r8QSLmyEsV .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-r8QSLmyEsV .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-r8QSLmyEsV .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-r8QCXDOlBD .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;
  -webkit-transform: scale(0, 1);
}
.cid-r8QCXDOlBD .nav-item,
.cid-r8QCXDOlBD .nav-link,
.cid-r8QCXDOlBD .navbar-caption {
  font-weight: normal;
}
.cid-r8QCXDOlBD .nav-item:focus,
.cid-r8QCXDOlBD .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-r8QCXDOlBD .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-r8QCXDOlBD .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-r8QCXDOlBD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r8QCXDOlBD .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-r8QCXDOlBD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-r8QCXDOlBD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r8QCXDOlBD .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;
  -webkit-transform: scale(1, 1);
}
.cid-r8QCXDOlBD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r8QCXDOlBD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r8QCXDOlBD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-r8QCXDOlBD .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-r8QCXDOlBD .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-r8QCXDOlBD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-r8QCXDOlBD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-r8QCXDOlBD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r8QCXDOlBD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r8QCXDOlBD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r8QCXDOlBD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r8QCXDOlBD .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-r8QCXDOlBD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r8QCXDOlBD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-r8QCXDOlBD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-r8QCXDOlBD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-r8QCXDOlBD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r8QCXDOlBD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r8QCXDOlBD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r8QCXDOlBD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r8QCXDOlBD .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-r8QCXDOlBD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r8QCXDOlBD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r8QCXDOlBD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-r8QCXDOlBD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCXDOlBD .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCXDOlBD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-r8QCXDOlBD .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-r8QCXDOlBD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r8QCXDOlBD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r8QCXDOlBD .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-r8QCXDOlBD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r8QCXDOlBD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r8QCXDOlBD .dropdown-item.active,
.cid-r8QCXDOlBD .dropdown-item:active {
  background-color: transparent;
}
.cid-r8QCXDOlBD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r8QCXDOlBD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r8QCXDOlBD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r8QCXDOlBD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-r8QCXDOlBD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-r8QCXDOlBD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r8QCXDOlBD ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-r8QCXDOlBD .navbar-buttons {
  text-align: center;
}
.cid-r8QCXDOlBD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-r8QCXDOlBD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-r8QCXDOlBD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r8QCXDOlBD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCXDOlBD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCXDOlBD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r8QCXDOlBD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCXDOlBD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-r8QCXDOlBD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-r8QCXDOlBD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCXDOlBD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r8QCXDOlBD a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-r8QCXDOlBD .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-r8QCXDOlBD .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-r8QCXDOlBD .soc-item {
  margin: .5rem .3rem;
}
.cid-r8QCXDOlBD .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-r8QCXDOlBD .navbar {
    height: 77px;
  }
  .cid-r8QCXDOlBD .navbar.opened {
    height: auto;
  }
  .cid-r8QCXDOlBD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r8QzhGT2RN {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x640.jpg");
}
.cid-r8QzhGT2RN .container-fluid {
  padding: 0 3rem;
}
.cid-r8QzhGT2RN .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-r8QzhGT2RN .container-fluid {
    padding: 0 1rem;
  }
}
.cid-r8QzhGT2RN .mbr-text,
.cid-r8QzhGT2RN .mbr-section-btn {
  text-align: left;
}
.cid-r8QzhI4PLT {
  background: #767676;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-r8QzhI4PLT .container-fluid {
  padding: 0 3rem;
}
.cid-r8QzhI4PLT .image-block {
  position: relative;
  margin: auto;
}
.cid-r8QzhI4PLT .image-block img {
  width: 100%;
}
.cid-r8QzhI4PLT .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-r8QzhI4PLT .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-r8QzhI4PLT .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-r8QzhI4PLT .container-fluid {
    padding: 0 1rem;
  }
}
.cid-r8QTeESbuh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-r8QTeESbuh .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-r8QTeESbuh .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-r8QTeESbuh .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-r8QTeESbuh .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-r8QTeESbuh .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-r8QTeESbuh .icon-transition span:hover {
  background-color: #e96188;
}
.cid-r8QTeESbuh .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-r8QTeESbuh .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-r8QTeESbuh .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-r8QTeESbuh .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-r8QD2Ao3Bu .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;
  -webkit-transform: scale(0, 1);
}
.cid-r8QD2Ao3Bu .nav-item,
.cid-r8QD2Ao3Bu .nav-link,
.cid-r8QD2Ao3Bu .navbar-caption {
  font-weight: normal;
}
.cid-r8QD2Ao3Bu .nav-item:focus,
.cid-r8QD2Ao3Bu .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-r8QD2Ao3Bu .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-r8QD2Ao3Bu .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-r8QD2Ao3Bu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r8QD2Ao3Bu .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-r8QD2Ao3Bu .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-r8QD2Ao3Bu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r8QD2Ao3Bu .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;
  -webkit-transform: scale(1, 1);
}
.cid-r8QD2Ao3Bu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r8QD2Ao3Bu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r8QD2Ao3Bu .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-r8QD2Ao3Bu .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-r8QD2Ao3Bu .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-r8QD2Ao3Bu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-r8QD2Ao3Bu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-r8QD2Ao3Bu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r8QD2Ao3Bu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r8QD2Ao3Bu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r8QD2Ao3Bu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r8QD2Ao3Bu .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-r8QD2Ao3Bu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r8QD2Ao3Bu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-r8QD2Ao3Bu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-r8QD2Ao3Bu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-r8QD2Ao3Bu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r8QD2Ao3Bu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r8QD2Ao3Bu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r8QD2Ao3Bu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r8QD2Ao3Bu .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-r8QD2Ao3Bu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r8QD2Ao3Bu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r8QD2Ao3Bu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-r8QD2Ao3Bu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-r8QD2Ao3Bu .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-r8QD2Ao3Bu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-r8QD2Ao3Bu .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-r8QD2Ao3Bu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r8QD2Ao3Bu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r8QD2Ao3Bu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-r8QD2Ao3Bu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r8QD2Ao3Bu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r8QD2Ao3Bu .dropdown-item.active,
.cid-r8QD2Ao3Bu .dropdown-item:active {
  background-color: transparent;
}
.cid-r8QD2Ao3Bu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r8QD2Ao3Bu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r8QD2Ao3Bu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r8QD2Ao3Bu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-r8QD2Ao3Bu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-r8QD2Ao3Bu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r8QD2Ao3Bu ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-r8QD2Ao3Bu .navbar-buttons {
  text-align: center;
}
.cid-r8QD2Ao3Bu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-r8QD2Ao3Bu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-r8QD2Ao3Bu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r8QD2Ao3Bu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QD2Ao3Bu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QD2Ao3Bu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r8QD2Ao3Bu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QD2Ao3Bu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-r8QD2Ao3Bu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-r8QD2Ao3Bu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QD2Ao3Bu .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r8QD2Ao3Bu a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-r8QD2Ao3Bu .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-r8QD2Ao3Bu .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-r8QD2Ao3Bu .soc-item {
  margin: .5rem .3rem;
}
.cid-r8QD2Ao3Bu .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-r8QD2Ao3Bu .navbar {
    height: 77px;
  }
  .cid-r8QD2Ao3Bu .navbar.opened {
    height: auto;
  }
  .cid-r8QD2Ao3Bu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r8QOFqUCLh {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #4289a7;
}
.cid-r8QOFqUCLh .mbr-section-subtitle {
  color: #767676;
}
.cid-r8QOFqUCLh .mbr-section-title {
  color: #ffffff;
}
.cid-r8QP9G5AL3 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-r8QOGITNiU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-r8QOGITNiU .mbr-text {
  color: #232323;
}
.cid-r8QOGITNiU .mbr-subtitle {
  color: #767676;
}
.cid-r8QSFIEq5j {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-r8QSFIEq5j .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-r8QSFIEq5j .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-r8QSFIEq5j .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-r8QSFIEq5j .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-r8QSFIEq5j .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-r8QSFIEq5j .icon-transition span:hover {
  background-color: #e96188;
}
.cid-r8QSFIEq5j .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-r8QSFIEq5j .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-r8QSFIEq5j .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-r8QSFIEq5j .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rd4PncsDkn .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;
  -webkit-transform: scale(0, 1);
}
.cid-rd4PncsDkn .nav-item,
.cid-rd4PncsDkn .nav-link,
.cid-rd4PncsDkn .navbar-caption {
  font-weight: normal;
}
.cid-rd4PncsDkn .nav-item:focus,
.cid-rd4PncsDkn .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rd4PncsDkn .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-rd4PncsDkn .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-rd4PncsDkn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rd4PncsDkn .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rd4PncsDkn .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-rd4PncsDkn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rd4PncsDkn .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;
  -webkit-transform: scale(1, 1);
}
.cid-rd4PncsDkn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rd4PncsDkn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rd4PncsDkn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-rd4PncsDkn .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-rd4PncsDkn .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rd4PncsDkn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-rd4PncsDkn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rd4PncsDkn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rd4PncsDkn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rd4PncsDkn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rd4PncsDkn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rd4PncsDkn .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-rd4PncsDkn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rd4PncsDkn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rd4PncsDkn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rd4PncsDkn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rd4PncsDkn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rd4PncsDkn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rd4PncsDkn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rd4PncsDkn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rd4PncsDkn .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-rd4PncsDkn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rd4PncsDkn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rd4PncsDkn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rd4PncsDkn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-rd4PncsDkn .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-rd4PncsDkn .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rd4PncsDkn .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-rd4PncsDkn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rd4PncsDkn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rd4PncsDkn .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-rd4PncsDkn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rd4PncsDkn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rd4PncsDkn .dropdown-item.active,
.cid-rd4PncsDkn .dropdown-item:active {
  background-color: transparent;
}
.cid-rd4PncsDkn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rd4PncsDkn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rd4PncsDkn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rd4PncsDkn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-rd4PncsDkn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rd4PncsDkn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rd4PncsDkn ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-rd4PncsDkn .navbar-buttons {
  text-align: center;
}
.cid-rd4PncsDkn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-rd4PncsDkn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rd4PncsDkn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rd4PncsDkn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rd4PncsDkn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rd4PncsDkn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rd4PncsDkn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rd4PncsDkn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rd4PncsDkn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rd4PncsDkn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rd4PncsDkn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rd4PncsDkn a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-rd4PncsDkn .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-rd4PncsDkn .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rd4PncsDkn .soc-item {
  margin: .5rem .3rem;
}
.cid-rd4PncsDkn .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rd4PncsDkn .navbar {
    height: 77px;
  }
  .cid-rd4PncsDkn .navbar.opened {
    height: auto;
  }
  .cid-rd4PncsDkn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rd4PndAGO0 {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #357924;
}
.cid-rd4PndAGO0 .mbr-section-subtitle {
  color: #767676;
}
.cid-rd4PndAGO0 .mbr-section-title {
  color: #ffffff;
}
.cid-rd4Pnem3va {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rd4PneV7Nt {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rd4PneV7Nt .row-element,
.cid-rd4PneV7Nt .image-element {
  padding: 0;
}
.cid-rd4PneV7Nt .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rd4PneV7Nt .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rd4PneV7Nt .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-rd4PneV7Nt .text-content {
    padding: 2rem 1rem;
  }
  .cid-rd4PneV7Nt .mbr-title,
  .cid-rd4PneV7Nt .mbr-text,
  .cid-rd4PneV7Nt .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rd4PneV7Nt .mbr-text,
.cid-rd4PneV7Nt .mbr-section-btn {
  color: #000000;
}
.cid-rd4PneV7Nt .mbr-title {
  color: #357924;
}
.cid-rd4PnfMPzw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rd4PnfMPzw .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rd4PnfMPzw .row-element,
.cid-rd4PnfMPzw .image-element {
  padding: 0;
}
.cid-rd4PnfMPzw .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rd4PnfMPzw .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rd4PnfMPzw .text-content {
  padding: 3rem;
}
.cid-rd4PnfMPzw .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rd4PnfMPzw .text-content {
    padding: 2rem 1rem;
  }
  .cid-rd4PnfMPzw .mbr-title,
  .cid-rd4PnfMPzw .underline,
  .cid-rd4PnfMPzw .mbr-text,
  .cid-rd4PnfMPzw .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rd4PnfMPzw .mbr-text,
.cid-rd4PnfMPzw .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-rd4PnfMPzw .mbr-title {
  color: #357924;
}
.cid-rd4PngAMyK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rd4PngAMyK .row-element,
.cid-rd4PngAMyK .image-element {
  padding: 0;
}
.cid-rd4PngAMyK .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rd4PngAMyK .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rd4PngAMyK .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-rd4PngAMyK .text-content {
    padding: 2rem 1rem;
  }
  .cid-rd4PngAMyK .mbr-title,
  .cid-rd4PngAMyK .mbr-text,
  .cid-rd4PngAMyK .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rd4PngAMyK .mbr-text,
.cid-rd4PngAMyK .mbr-section-btn {
  color: #000000;
}
.cid-rd4PngAMyK .mbr-title {
  color: #357924;
}
.cid-rd4PnhlgzM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rd4PnhlgzM .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rd4PnhlgzM .row-element,
.cid-rd4PnhlgzM .image-element {
  padding: 0;
}
.cid-rd4PnhlgzM .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rd4PnhlgzM .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rd4PnhlgzM .text-content {
  padding: 3rem;
}
.cid-rd4PnhlgzM .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rd4PnhlgzM .text-content {
    padding: 2rem 1rem;
  }
  .cid-rd4PnhlgzM .mbr-title,
  .cid-rd4PnhlgzM .underline,
  .cid-rd4PnhlgzM .mbr-text,
  .cid-rd4PnhlgzM .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rd4PnhlgzM .mbr-text,
.cid-rd4PnhlgzM .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-rd4PnhlgzM .mbr-title {
  color: #357924;
}
.cid-rd4Pnlaa7y {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rd4Pnlaa7y .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-rd4Pnlaa7y .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rd4Pnlaa7y .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rd4Pnlaa7y .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-rd4Pnlaa7y .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rd4Pnlaa7y .icon-transition span:hover {
  background-color: #e96188;
}
.cid-rd4Pnlaa7y .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-rd4Pnlaa7y .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-rd4Pnlaa7y .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-rd4Pnlaa7y .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-r8QCyBIho4 .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;
  -webkit-transform: scale(0, 1);
}
.cid-r8QCyBIho4 .nav-item,
.cid-r8QCyBIho4 .nav-link,
.cid-r8QCyBIho4 .navbar-caption {
  font-weight: normal;
}
.cid-r8QCyBIho4 .nav-item:focus,
.cid-r8QCyBIho4 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-r8QCyBIho4 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-r8QCyBIho4 .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-r8QCyBIho4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r8QCyBIho4 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-r8QCyBIho4 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-r8QCyBIho4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r8QCyBIho4 .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;
  -webkit-transform: scale(1, 1);
}
.cid-r8QCyBIho4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r8QCyBIho4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r8QCyBIho4 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-r8QCyBIho4 .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-r8QCyBIho4 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-r8QCyBIho4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-r8QCyBIho4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-r8QCyBIho4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r8QCyBIho4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r8QCyBIho4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r8QCyBIho4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r8QCyBIho4 .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-r8QCyBIho4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r8QCyBIho4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-r8QCyBIho4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-r8QCyBIho4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-r8QCyBIho4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r8QCyBIho4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r8QCyBIho4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r8QCyBIho4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r8QCyBIho4 .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-r8QCyBIho4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r8QCyBIho4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r8QCyBIho4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-r8QCyBIho4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCyBIho4 .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-r8QCyBIho4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-r8QCyBIho4 .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-r8QCyBIho4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r8QCyBIho4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r8QCyBIho4 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-r8QCyBIho4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r8QCyBIho4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r8QCyBIho4 .dropdown-item.active,
.cid-r8QCyBIho4 .dropdown-item:active {
  background-color: transparent;
}
.cid-r8QCyBIho4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r8QCyBIho4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r8QCyBIho4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r8QCyBIho4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-r8QCyBIho4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-r8QCyBIho4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r8QCyBIho4 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-r8QCyBIho4 .navbar-buttons {
  text-align: center;
}
.cid-r8QCyBIho4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-r8QCyBIho4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-r8QCyBIho4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r8QCyBIho4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCyBIho4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r8QCyBIho4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r8QCyBIho4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCyBIho4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-r8QCyBIho4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-r8QCyBIho4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8QCyBIho4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r8QCyBIho4 a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-r8QCyBIho4 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-r8QCyBIho4 .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-r8QCyBIho4 .soc-item {
  margin: .5rem .3rem;
}
.cid-r8QCyBIho4 .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-r8QCyBIho4 .navbar {
    height: 77px;
  }
  .cid-r8QCyBIho4 .navbar.opened {
    height: auto;
  }
  .cid-r8QCyBIho4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r8Q8LyAnb9 {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #85bbdf;
}
.cid-r8Q8LyAnb9 .mbr-section-subtitle {
  color: #767676;
}
.cid-r8Q8LyAnb9 .mbr-section-title {
  color: #ffffff;
}
.cid-r8Q8MTl2M5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r8Q8PCIhRL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8f8f8;
}
.cid-r8Q8PCIhRL .row-element,
.cid-r8Q8PCIhRL .image-element {
  padding: 0;
}
.cid-r8Q8PCIhRL .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8Q8PCIhRL .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8Q8PCIhRL .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-r8Q8PCIhRL .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8Q8PCIhRL .mbr-title,
  .cid-r8Q8PCIhRL .mbr-text,
  .cid-r8Q8PCIhRL .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8Q8PCIhRL .mbr-text,
.cid-r8Q8PCIhRL .mbr-section-btn {
  color: #000000;
}
.cid-r8Q8PCIhRL .mbr-title {
  color: #4289a7;
}
.cid-r8Q8Qnsf4O {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r8Q8Qnsf4O .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r8Q8Qnsf4O .row-element,
.cid-r8Q8Qnsf4O .image-element {
  padding: 0;
}
.cid-r8Q8Qnsf4O .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8Q8Qnsf4O .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8Q8Qnsf4O .text-content {
  padding: 3rem;
}
.cid-r8Q8Qnsf4O .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-r8Q8Qnsf4O .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8Q8Qnsf4O .mbr-title,
  .cid-r8Q8Qnsf4O .underline,
  .cid-r8Q8Qnsf4O .mbr-text,
  .cid-r8Q8Qnsf4O .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8Q8Qnsf4O .mbr-text,
.cid-r8Q8Qnsf4O .mbr-section-btn {
  text-align: right;
  color: #232323;
}
.cid-r8Q8Qnsf4O .mbr-title {
  color: #365c9a;
}
.cid-r8Q8SjE9v6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8f8f8;
}
.cid-r8Q8SjE9v6 .row-element,
.cid-r8Q8SjE9v6 .image-element {
  padding: 0;
}
.cid-r8Q8SjE9v6 .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8Q8SjE9v6 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8Q8SjE9v6 .text-content {
  padding: 3rem;
}
.cid-r8Q8SjE9v6 .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-r8Q8SjE9v6 .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8Q8SjE9v6 .mbr-title,
  .cid-r8Q8SjE9v6 .underline,
  .cid-r8Q8SjE9v6 .mbr-text,
  .cid-r8Q8SjE9v6 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8Q8SjE9v6 .mbr-text,
.cid-r8Q8SjE9v6 .mbr-section-btn {
  text-align: left;
}
.cid-r8Q8SjE9v6 .mbr-title {
  color: #365c9a;
}
.cid-r8Q8TyCHcS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r8Q8TyCHcS .row-element,
.cid-r8Q8TyCHcS .image-element {
  padding: 0;
}
.cid-r8Q8TyCHcS .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8Q8TyCHcS .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8Q8TyCHcS .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-r8Q8TyCHcS .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8Q8TyCHcS .mbr-title,
  .cid-r8Q8TyCHcS .mbr-text,
  .cid-r8Q8TyCHcS .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8Q8TyCHcS .mbr-text,
.cid-r8Q8TyCHcS .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-r8Q8TyCHcS .mbr-title {
  color: #365c9a;
}
.cid-rli33v1mYH {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f8f8f8;
}
.cid-rli33v1mYH .card {
  display: block;
  position: relative;
}
.cid-rli33v1mYH .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-rli33v1mYH .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rli33v1mYH .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rli33v1mYH .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: #e96188;
}
.cid-rli33v1mYH .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rli33v1mYH .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rli33v1mYH .mbr-card-text {
  margin: 0;
}
.cid-rli33v1mYH .mbr-section-title {
  text-align: left;
  color: #365c9a;
}
.cid-rli33v1mYH .mbr-card-text,
.cid-rli33v1mYH .mbr-section-btn {
  text-align: left;
}
.cid-rlOUPdRgmO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rlOUPdRgmO .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rlOUPdRgmO .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-rlOUPdRgmO .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rlOUPdRgmO .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rlOUPdRgmO .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-rlOUPdRgmO .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rlOUPdRgmO .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rlOUPdRgmO .mbr-card-text {
  margin: 0;
}
.cid-rlOUPdRgmO .mbr-section-title {
  color: #4e84c2;
}
.cid-rlOUPdRgmO .mbr-card-text,
.cid-rlOUPdRgmO .mbr-section-btn {
  text-align: left;
}
.cid-r8Q8XdZv7G {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8f8f8;
}
.cid-r8Q8XdZv7G .row-element,
.cid-r8Q8XdZv7G .image-element {
  padding: 0;
}
.cid-r8Q8XdZv7G .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8Q8XdZv7G .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8Q8XdZv7G .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-r8Q8XdZv7G .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8Q8XdZv7G .mbr-title,
  .cid-r8Q8XdZv7G .mbr-text,
  .cid-r8Q8XdZv7G .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8Q8XdZv7G .mbr-text,
.cid-r8Q8XdZv7G .mbr-section-btn {
  color: #000000;
}
.cid-r8Q8XdZv7G .mbr-title {
  color: #365c9a;
}
.cid-rlP7aBXiLo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f8f8f8;
}
.cid-rlP7aBXiLo .card {
  display: block;
  position: relative;
}
.cid-rlP7aBXiLo .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-rlP7aBXiLo .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rlP7aBXiLo .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rlP7aBXiLo .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: #e96188;
}
.cid-rlP7aBXiLo .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rlP7aBXiLo .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rlP7aBXiLo .mbr-card-text {
  margin: 0;
}
.cid-rlP7aBXiLo .mbr-section-title {
  text-align: center;
  color: #365c9a;
}
.cid-rlP7aBXiLo .mbr-card-text,
.cid-rlP7aBXiLo .mbr-section-btn {
  text-align: left;
}
.cid-r8Q8Y8AJI7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r8Q8Y8AJI7 .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r8Q8Y8AJI7 .row-element,
.cid-r8Q8Y8AJI7 .image-element {
  padding: 0;
}
.cid-r8Q8Y8AJI7 .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8Q8Y8AJI7 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r8Q8Y8AJI7 .text-content {
  padding: 3rem;
}
.cid-r8Q8Y8AJI7 .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-r8Q8Y8AJI7 .text-content {
    padding: 2rem 1rem;
  }
  .cid-r8Q8Y8AJI7 .mbr-title,
  .cid-r8Q8Y8AJI7 .underline,
  .cid-r8Q8Y8AJI7 .mbr-text,
  .cid-r8Q8Y8AJI7 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r8Q8Y8AJI7 .mbr-text,
.cid-r8Q8Y8AJI7 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-r8Q8Y8AJI7 .mbr-title {
  color: #365c9a;
}
.cid-rlPepWCTdC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rlPepWCTdC .row-element,
.cid-rlPepWCTdC .image-element {
  padding: 0;
}
.cid-rlPepWCTdC .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rlPepWCTdC .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rlPepWCTdC .text-content {
  padding: 3rem;
}
.cid-rlPepWCTdC .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rlPepWCTdC .text-content {
    padding: 2rem 1rem;
  }
  .cid-rlPepWCTdC .mbr-title,
  .cid-rlPepWCTdC .underline,
  .cid-rlPepWCTdC .mbr-text,
  .cid-rlPepWCTdC .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rlPepWCTdC .mbr-text,
.cid-rlPepWCTdC .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-r8QSU5cWR8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-r8QSU5cWR8 .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-r8QSU5cWR8 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-r8QSU5cWR8 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-r8QSU5cWR8 .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-r8QSU5cWR8 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-r8QSU5cWR8 .icon-transition span:hover {
  background-color: #e96188;
}
.cid-r8QSU5cWR8 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-r8QSU5cWR8 .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-r8QSU5cWR8 .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-r8QSU5cWR8 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rQYA2UI7AR .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;
  -webkit-transform: scale(0, 1);
}
.cid-rQYA2UI7AR .nav-item,
.cid-rQYA2UI7AR .nav-link,
.cid-rQYA2UI7AR .navbar-caption {
  font-weight: normal;
}
.cid-rQYA2UI7AR .nav-item:focus,
.cid-rQYA2UI7AR .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rQYA2UI7AR .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-rQYA2UI7AR .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-rQYA2UI7AR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rQYA2UI7AR .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rQYA2UI7AR .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-rQYA2UI7AR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rQYA2UI7AR .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;
  -webkit-transform: scale(1, 1);
}
.cid-rQYA2UI7AR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rQYA2UI7AR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rQYA2UI7AR .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-rQYA2UI7AR .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-rQYA2UI7AR .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rQYA2UI7AR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-rQYA2UI7AR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rQYA2UI7AR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rQYA2UI7AR .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rQYA2UI7AR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rQYA2UI7AR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rQYA2UI7AR .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-rQYA2UI7AR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rQYA2UI7AR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rQYA2UI7AR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rQYA2UI7AR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rQYA2UI7AR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rQYA2UI7AR .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rQYA2UI7AR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rQYA2UI7AR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rQYA2UI7AR .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-rQYA2UI7AR .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rQYA2UI7AR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rQYA2UI7AR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rQYA2UI7AR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-rQYA2UI7AR .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-rQYA2UI7AR .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rQYA2UI7AR .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-rQYA2UI7AR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rQYA2UI7AR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rQYA2UI7AR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-rQYA2UI7AR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rQYA2UI7AR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rQYA2UI7AR .dropdown-item.active,
.cid-rQYA2UI7AR .dropdown-item:active {
  background-color: transparent;
}
.cid-rQYA2UI7AR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rQYA2UI7AR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rQYA2UI7AR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rQYA2UI7AR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-rQYA2UI7AR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rQYA2UI7AR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rQYA2UI7AR ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-rQYA2UI7AR .navbar-buttons {
  text-align: center;
}
.cid-rQYA2UI7AR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-rQYA2UI7AR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rQYA2UI7AR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rQYA2UI7AR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rQYA2UI7AR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rQYA2UI7AR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rQYA2UI7AR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQYA2UI7AR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rQYA2UI7AR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rQYA2UI7AR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQYA2UI7AR .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rQYA2UI7AR a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-rQYA2UI7AR .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-rQYA2UI7AR .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rQYA2UI7AR .soc-item {
  margin: .5rem .3rem;
}
.cid-rQYA2UI7AR .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rQYA2UI7AR .navbar {
    height: 77px;
  }
  .cid-rQYA2UI7AR .navbar.opened {
    height: auto;
  }
  .cid-rQYA2UI7AR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rQYA2VQU7x {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-rQYA2VQU7x .mbr-section-subtitle {
  color: #767676;
}
.cid-rQYA2VQU7x .mbr-section-title {
  color: #ffffff;
}
.cid-rQYA2WybRk {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rQYA2X76Hs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-rQYA2X76Hs .row-element,
.cid-rQYA2X76Hs .image-element {
  padding: 0;
}
.cid-rQYA2X76Hs .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rQYA2X76Hs .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rQYA2X76Hs .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-rQYA2X76Hs .text-content {
    padding: 2rem 1rem;
  }
  .cid-rQYA2X76Hs .mbr-title,
  .cid-rQYA2X76Hs .mbr-text,
  .cid-rQYA2X76Hs .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rQYA2X76Hs .mbr-text,
.cid-rQYA2X76Hs .mbr-section-btn {
  color: #000000;
}
.cid-rQYA2X76Hs .mbr-title {
  color: #767676;
}
.cid-rQYA2XW1ZR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rQYA2XW1ZR .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rQYA2XW1ZR .row-element,
.cid-rQYA2XW1ZR .image-element {
  padding: 0;
}
.cid-rQYA2XW1ZR .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rQYA2XW1ZR .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rQYA2XW1ZR .text-content {
  padding: 3rem;
}
.cid-rQYA2XW1ZR .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rQYA2XW1ZR .text-content {
    padding: 2rem 1rem;
  }
  .cid-rQYA2XW1ZR .mbr-title,
  .cid-rQYA2XW1ZR .underline,
  .cid-rQYA2XW1ZR .mbr-text,
  .cid-rQYA2XW1ZR .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rQYA2XW1ZR .mbr-text,
.cid-rQYA2XW1ZR .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-rQYA2XW1ZR .mbr-title {
  color: #767676;
}
.cid-rQYA2YFrXy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rQYA2YFrXy .row-element,
.cid-rQYA2YFrXy .image-element {
  padding: 0;
}
.cid-rQYA2YFrXy .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rQYA2YFrXy .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rQYA2YFrXy .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-rQYA2YFrXy .text-content {
    padding: 2rem 1rem;
  }
  .cid-rQYA2YFrXy .mbr-title,
  .cid-rQYA2YFrXy .mbr-text,
  .cid-rQYA2YFrXy .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rQYA2YFrXy .mbr-text,
.cid-rQYA2YFrXy .mbr-section-btn {
  color: #000000;
}
.cid-rQYA2YFrXy .mbr-title {
  color: #e96188;
}
.cid-rQYA2ZqF98 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-rQYA2ZqF98 .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rQYA2ZqF98 .row-element,
.cid-rQYA2ZqF98 .image-element {
  padding: 0;
}
.cid-rQYA2ZqF98 .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rQYA2ZqF98 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rQYA2ZqF98 .text-content {
  padding: 3rem;
}
.cid-rQYA2ZqF98 .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rQYA2ZqF98 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rQYA2ZqF98 .mbr-title,
  .cid-rQYA2ZqF98 .underline,
  .cid-rQYA2ZqF98 .mbr-text,
  .cid-rQYA2ZqF98 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rQYA2ZqF98 .mbr-text,
.cid-rQYA2ZqF98 .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-rQYA2ZqF98 .mbr-title {
  color: #767676;
}
.cid-rQYA30dvAH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rQYA30dvAH .row-element,
.cid-rQYA30dvAH .image-element {
  padding: 0;
}
.cid-rQYA30dvAH .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rQYA30dvAH .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rQYA30dvAH .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-rQYA30dvAH .text-content {
    padding: 2rem 1rem;
  }
  .cid-rQYA30dvAH .mbr-title,
  .cid-rQYA30dvAH .mbr-text,
  .cid-rQYA30dvAH .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rQYA30dvAH .mbr-text,
.cid-rQYA30dvAH .mbr-section-btn {
  color: #000000;
}
.cid-rQYA30dvAH .mbr-title {
  color: #767676;
}
.cid-rQYA30W2Jq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rQYA30W2Jq .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rQYA30W2Jq .row-element,
.cid-rQYA30W2Jq .image-element {
  padding: 0;
}
.cid-rQYA30W2Jq .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rQYA30W2Jq .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rQYA30W2Jq .text-content {
  padding: 3rem;
}
.cid-rQYA30W2Jq .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rQYA30W2Jq .text-content {
    padding: 2rem 1rem;
  }
  .cid-rQYA30W2Jq .mbr-title,
  .cid-rQYA30W2Jq .underline,
  .cid-rQYA30W2Jq .mbr-text,
  .cid-rQYA30W2Jq .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rQYA30W2Jq .mbr-text,
.cid-rQYA30W2Jq .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-rQYA30W2Jq .mbr-title {
  color: #e96188;
}
.cid-rQYA31IRMa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-rQYA31IRMa .row-element,
.cid-rQYA31IRMa .image-element {
  padding: 0;
}
.cid-rQYA31IRMa .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rQYA31IRMa .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rQYA31IRMa .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-rQYA31IRMa .text-content {
    padding: 2rem 1rem;
  }
  .cid-rQYA31IRMa .mbr-title,
  .cid-rQYA31IRMa .mbr-text,
  .cid-rQYA31IRMa .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rQYA31IRMa .mbr-text,
.cid-rQYA31IRMa .mbr-section-btn {
  color: #000000;
}
.cid-rQYA31IRMa .mbr-title {
  color: #465052;
}
.cid-rQYA32tuhq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-rQYA32tuhq .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rQYA32tuhq .row-element,
.cid-rQYA32tuhq .image-element {
  padding: 0;
}
.cid-rQYA32tuhq .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rQYA32tuhq .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rQYA32tuhq .text-content {
  padding: 3rem;
}
.cid-rQYA32tuhq .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rQYA32tuhq .text-content {
    padding: 2rem 1rem;
  }
  .cid-rQYA32tuhq .mbr-title,
  .cid-rQYA32tuhq .underline,
  .cid-rQYA32tuhq .mbr-text,
  .cid-rQYA32tuhq .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rQYA32tuhq .mbr-text,
.cid-rQYA32tuhq .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-rQYA32tuhq .mbr-title {
  color: #e96188;
}
.cid-rQYA33gGim {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rQYA33gGim .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-rQYA33gGim .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rQYA33gGim .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rQYA33gGim .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-rQYA33gGim .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rQYA33gGim .icon-transition span:hover {
  background-color: #e96188;
}
.cid-rQYA33gGim .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-rQYA33gGim .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-rQYA33gGim .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-rQYA33gGim .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rQZiY47txC {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #fac769;
}
.cid-rQZiY47txC .mbr-section-subtitle {
  color: #767676;
}
.cid-rQZiY47txC .mbr-section-title {
  color: #ffffff;
}
.cid-rQZhDMpq9u .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;
  -webkit-transform: scale(0, 1);
}
.cid-rQZhDMpq9u .nav-item,
.cid-rQZhDMpq9u .nav-link,
.cid-rQZhDMpq9u .navbar-caption {
  font-weight: normal;
}
.cid-rQZhDMpq9u .nav-item:focus,
.cid-rQZhDMpq9u .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rQZhDMpq9u .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-rQZhDMpq9u .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-rQZhDMpq9u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rQZhDMpq9u .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rQZhDMpq9u .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-rQZhDMpq9u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rQZhDMpq9u .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;
  -webkit-transform: scale(1, 1);
}
.cid-rQZhDMpq9u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rQZhDMpq9u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rQZhDMpq9u .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-rQZhDMpq9u .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-rQZhDMpq9u .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rQZhDMpq9u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-rQZhDMpq9u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rQZhDMpq9u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rQZhDMpq9u .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rQZhDMpq9u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rQZhDMpq9u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rQZhDMpq9u .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-rQZhDMpq9u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rQZhDMpq9u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rQZhDMpq9u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rQZhDMpq9u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rQZhDMpq9u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rQZhDMpq9u .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rQZhDMpq9u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rQZhDMpq9u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rQZhDMpq9u .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-rQZhDMpq9u .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rQZhDMpq9u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rQZhDMpq9u .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rQZhDMpq9u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-rQZhDMpq9u .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-rQZhDMpq9u .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rQZhDMpq9u .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-rQZhDMpq9u .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rQZhDMpq9u .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rQZhDMpq9u .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-rQZhDMpq9u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rQZhDMpq9u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rQZhDMpq9u .dropdown-item.active,
.cid-rQZhDMpq9u .dropdown-item:active {
  background-color: transparent;
}
.cid-rQZhDMpq9u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rQZhDMpq9u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rQZhDMpq9u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rQZhDMpq9u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-rQZhDMpq9u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rQZhDMpq9u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rQZhDMpq9u ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-rQZhDMpq9u .navbar-buttons {
  text-align: center;
}
.cid-rQZhDMpq9u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-rQZhDMpq9u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rQZhDMpq9u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rQZhDMpq9u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rQZhDMpq9u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rQZhDMpq9u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rQZhDMpq9u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQZhDMpq9u nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rQZhDMpq9u nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rQZhDMpq9u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQZhDMpq9u .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rQZhDMpq9u a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-rQZhDMpq9u .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-rQZhDMpq9u .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rQZhDMpq9u .soc-item {
  margin: .5rem .3rem;
}
.cid-rQZhDMpq9u .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rQZhDMpq9u .navbar {
    height: 77px;
  }
  .cid-rQZhDMpq9u .navbar.opened {
    height: auto;
  }
  .cid-rQZhDMpq9u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rQZhVVc1Fq {
  background: #ffffff;
}
.cid-rQZhVVc1Fq .container-fluid {
  padding: 0 3rem;
}
.cid-rQZhVVc1Fq .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rQZhVVc1Fq .image-block img {
  width: 100%;
}
.cid-rQZhVVc1Fq .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rQZhVVc1Fq .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rQZhVVc1Fq .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-rQZhVVc1Fq .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rQZhVVc1Fq P {
  text-align: center;
}
.cid-rQZhDOYhya {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rQZhDOYhya .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-rQZhDOYhya .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rQZhDOYhya .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rQZhDOYhya .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-rQZhDOYhya .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rQZhDOYhya .icon-transition span:hover {
  background-color: #e96188;
}
.cid-rQZhDOYhya .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-rQZhDOYhya .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-rQZhDOYhya .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-rQZhDOYhya .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rTpBX7JdlO .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;
  -webkit-transform: scale(0, 1);
}
.cid-rTpBX7JdlO .nav-item,
.cid-rTpBX7JdlO .nav-link,
.cid-rTpBX7JdlO .navbar-caption {
  font-weight: normal;
}
.cid-rTpBX7JdlO .nav-item:focus,
.cid-rTpBX7JdlO .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rTpBX7JdlO .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-rTpBX7JdlO .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-rTpBX7JdlO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rTpBX7JdlO .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rTpBX7JdlO .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-rTpBX7JdlO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rTpBX7JdlO .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;
  -webkit-transform: scale(1, 1);
}
.cid-rTpBX7JdlO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rTpBX7JdlO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rTpBX7JdlO .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-rTpBX7JdlO .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-rTpBX7JdlO .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rTpBX7JdlO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-rTpBX7JdlO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rTpBX7JdlO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rTpBX7JdlO .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rTpBX7JdlO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rTpBX7JdlO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rTpBX7JdlO .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-rTpBX7JdlO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rTpBX7JdlO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rTpBX7JdlO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rTpBX7JdlO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rTpBX7JdlO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rTpBX7JdlO .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rTpBX7JdlO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rTpBX7JdlO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rTpBX7JdlO .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-rTpBX7JdlO .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rTpBX7JdlO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rTpBX7JdlO .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rTpBX7JdlO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-rTpBX7JdlO .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-rTpBX7JdlO .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rTpBX7JdlO .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-rTpBX7JdlO .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rTpBX7JdlO .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rTpBX7JdlO .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-rTpBX7JdlO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rTpBX7JdlO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rTpBX7JdlO .dropdown-item.active,
.cid-rTpBX7JdlO .dropdown-item:active {
  background-color: transparent;
}
.cid-rTpBX7JdlO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rTpBX7JdlO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rTpBX7JdlO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rTpBX7JdlO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-rTpBX7JdlO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rTpBX7JdlO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rTpBX7JdlO ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-rTpBX7JdlO .navbar-buttons {
  text-align: center;
}
.cid-rTpBX7JdlO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-rTpBX7JdlO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rTpBX7JdlO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rTpBX7JdlO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rTpBX7JdlO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rTpBX7JdlO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rTpBX7JdlO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rTpBX7JdlO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rTpBX7JdlO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rTpBX7JdlO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rTpBX7JdlO .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rTpBX7JdlO a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-rTpBX7JdlO .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-rTpBX7JdlO .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rTpBX7JdlO .soc-item {
  margin: .5rem .3rem;
}
.cid-rTpBX7JdlO .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rTpBX7JdlO .navbar {
    height: 77px;
  }
  .cid-rTpBX7JdlO .navbar.opened {
    height: auto;
  }
  .cid-rTpBX7JdlO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rTpBX8JVC8 {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #0a8e82;
}
.cid-rTpBX8JVC8 .mbr-section-subtitle {
  color: #767676;
}
.cid-rTpBX8JVC8 .mbr-section-title {
  color: #ffffff;
}
.cid-rTpBX9lXMH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rTpBX9K2eJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rTpBX9K2eJ .row-element,
.cid-rTpBX9K2eJ .image-element {
  padding: 0;
}
.cid-rTpBX9K2eJ .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rTpBX9K2eJ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rTpBX9K2eJ .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-rTpBX9K2eJ .text-content {
    padding: 2rem 1rem;
  }
  .cid-rTpBX9K2eJ .mbr-title,
  .cid-rTpBX9K2eJ .mbr-text,
  .cid-rTpBX9K2eJ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rTpBX9K2eJ .mbr-text,
.cid-rTpBX9K2eJ .mbr-section-btn {
  color: #000000;
}
.cid-rTpBX9K2eJ .mbr-title {
  color: #0a8e82;
}
.cid-rTpBXayk6t {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rTpBXayk6t .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rTpBXayk6t .row-element,
.cid-rTpBXayk6t .image-element {
  padding: 0;
}
.cid-rTpBXayk6t .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rTpBXayk6t .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rTpBXayk6t .text-content {
  padding: 3rem;
}
.cid-rTpBXayk6t .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rTpBXayk6t .text-content {
    padding: 2rem 1rem;
  }
  .cid-rTpBXayk6t .mbr-title,
  .cid-rTpBXayk6t .underline,
  .cid-rTpBXayk6t .mbr-text,
  .cid-rTpBXayk6t .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rTpBXayk6t .mbr-text,
.cid-rTpBXayk6t .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-rTpBXayk6t .mbr-title {
  color: #0a8e82;
}
.cid-rTpBXbhQ4S {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rTpBXbhQ4S .row-element,
.cid-rTpBXbhQ4S .image-element {
  padding: 0;
}
.cid-rTpBXbhQ4S .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rTpBXbhQ4S .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rTpBXbhQ4S .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-rTpBXbhQ4S .text-content {
    padding: 2rem 1rem;
  }
  .cid-rTpBXbhQ4S .mbr-title,
  .cid-rTpBXbhQ4S .mbr-text,
  .cid-rTpBXbhQ4S .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rTpBXbhQ4S .mbr-text,
.cid-rTpBXbhQ4S .mbr-section-btn {
  color: #000000;
}
.cid-rTpBXbhQ4S .mbr-title {
  color: #357924;
}
.cid-rTpBXbZVgN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rTpBXbZVgN .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rTpBXbZVgN .row-element,
.cid-rTpBXbZVgN .image-element {
  padding: 0;
}
.cid-rTpBXbZVgN .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rTpBXbZVgN .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rTpBXbZVgN .text-content {
  padding: 3rem;
}
.cid-rTpBXbZVgN .mbr-section-subtitle {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-rTpBXbZVgN .text-content {
    padding: 2rem 1rem;
  }
  .cid-rTpBXbZVgN .mbr-title,
  .cid-rTpBXbZVgN .underline,
  .cid-rTpBXbZVgN .mbr-text,
  .cid-rTpBXbZVgN .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rTpBXbZVgN .mbr-text,
.cid-rTpBXbZVgN .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-rTpBXbZVgN .mbr-title {
  color: #357924;
}
.cid-rTpSkAwCc0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rTpSkAwCc0 .row-element,
.cid-rTpSkAwCc0 .image-element {
  padding: 0;
}
.cid-rTpSkAwCc0 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rTpSkAwCc0 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rTpSkAwCc0 .text-content {
  padding: 3rem;
}
.cid-rTpSkAwCc0 .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rTpSkAwCc0 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rTpSkAwCc0 .mbr-title,
  .cid-rTpSkAwCc0 .underline,
  .cid-rTpSkAwCc0 .mbr-text,
  .cid-rTpSkAwCc0 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rTpSkAwCc0 .mbr-title {
  color: #0a8e82;
}
.cid-rTpSkAwCc0 .mbr-text,
.cid-rTpSkAwCc0 .mbr-section-btn {
  text-align: left;
}
.cid-rTpWhuVrNT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rTpWhuVrNT .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rTpWhuVrNT .row-element,
.cid-rTpWhuVrNT .image-element {
  padding: 0;
}
.cid-rTpWhuVrNT .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rTpWhuVrNT .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rTpWhuVrNT .text-content {
  padding: 3rem;
}
.cid-rTpWhuVrNT .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rTpWhuVrNT .text-content {
    padding: 2rem 1rem;
  }
  .cid-rTpWhuVrNT .mbr-title,
  .cid-rTpWhuVrNT .underline,
  .cid-rTpWhuVrNT .mbr-text,
  .cid-rTpWhuVrNT .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rTpWhuVrNT .mbr-text,
.cid-rTpWhuVrNT .mbr-section-btn {
  text-align: right;
}
.cid-rTpYdd9y4T {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rTpYdd9y4T .row-element,
.cid-rTpYdd9y4T .image-element {
  padding: 0;
}
.cid-rTpYdd9y4T .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rTpYdd9y4T .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rTpYdd9y4T .text-content {
  padding: 3rem;
}
.cid-rTpYdd9y4T .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rTpYdd9y4T .text-content {
    padding: 2rem 1rem;
  }
  .cid-rTpYdd9y4T .mbr-title,
  .cid-rTpYdd9y4T .underline,
  .cid-rTpYdd9y4T .mbr-text,
  .cid-rTpYdd9y4T .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rTpYdd9y4T .mbr-text,
.cid-rTpYdd9y4T .mbr-section-btn {
  text-align: left;
}
.cid-rTpBXcLSws {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rTpBXcLSws .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-rTpBXcLSws .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rTpBXcLSws .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rTpBXcLSws .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-rTpBXcLSws .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rTpBXcLSws .icon-transition span:hover {
  background-color: #e96188;
}
.cid-rTpBXcLSws .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-rTpBXcLSws .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-rTpBXcLSws .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-rTpBXcLSws .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rU3mBjoNHc .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;
  -webkit-transform: scale(0, 1);
}
.cid-rU3mBjoNHc .nav-item,
.cid-rU3mBjoNHc .nav-link,
.cid-rU3mBjoNHc .navbar-caption {
  font-weight: normal;
}
.cid-rU3mBjoNHc .nav-item:focus,
.cid-rU3mBjoNHc .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rU3mBjoNHc .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-rU3mBjoNHc .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-rU3mBjoNHc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rU3mBjoNHc .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rU3mBjoNHc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-rU3mBjoNHc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rU3mBjoNHc .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;
  -webkit-transform: scale(1, 1);
}
.cid-rU3mBjoNHc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rU3mBjoNHc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rU3mBjoNHc .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-rU3mBjoNHc .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-rU3mBjoNHc .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rU3mBjoNHc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-rU3mBjoNHc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rU3mBjoNHc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rU3mBjoNHc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rU3mBjoNHc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rU3mBjoNHc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rU3mBjoNHc .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-rU3mBjoNHc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rU3mBjoNHc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rU3mBjoNHc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rU3mBjoNHc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rU3mBjoNHc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rU3mBjoNHc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rU3mBjoNHc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rU3mBjoNHc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rU3mBjoNHc .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-rU3mBjoNHc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rU3mBjoNHc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rU3mBjoNHc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rU3mBjoNHc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-rU3mBjoNHc .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-rU3mBjoNHc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rU3mBjoNHc .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-rU3mBjoNHc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rU3mBjoNHc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rU3mBjoNHc .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-rU3mBjoNHc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rU3mBjoNHc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rU3mBjoNHc .dropdown-item.active,
.cid-rU3mBjoNHc .dropdown-item:active {
  background-color: transparent;
}
.cid-rU3mBjoNHc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rU3mBjoNHc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rU3mBjoNHc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rU3mBjoNHc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-rU3mBjoNHc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rU3mBjoNHc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rU3mBjoNHc ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-rU3mBjoNHc .navbar-buttons {
  text-align: center;
}
.cid-rU3mBjoNHc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-rU3mBjoNHc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rU3mBjoNHc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rU3mBjoNHc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rU3mBjoNHc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rU3mBjoNHc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rU3mBjoNHc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rU3mBjoNHc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rU3mBjoNHc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rU3mBjoNHc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rU3mBjoNHc .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rU3mBjoNHc a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-rU3mBjoNHc .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-rU3mBjoNHc .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rU3mBjoNHc .soc-item {
  margin: .5rem .3rem;
}
.cid-rU3mBjoNHc .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rU3mBjoNHc .navbar {
    height: 77px;
  }
  .cid-rU3mBjoNHc .navbar.opened {
    height: auto;
  }
  .cid-rU3mBjoNHc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rU3mBksjJN {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #4e8b8b;
}
.cid-rU3mBksjJN .mbr-section-subtitle {
  color: #767676;
}
.cid-rU3mBksjJN .mbr-section-title {
  color: #ffffff;
}
.cid-rU3mBl4bYg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rU3mBl4bYg .mbr-text {
  color: #232323;
}
.cid-rU3mBlxXCl {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rU3mBlxXCl .row-element,
.cid-rU3mBlxXCl .image-element {
  padding: 0;
}
.cid-rU3mBlxXCl .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rU3mBlxXCl .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rU3mBlxXCl .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-rU3mBlxXCl .text-content {
    padding: 2rem 1rem;
  }
  .cid-rU3mBlxXCl .mbr-title,
  .cid-rU3mBlxXCl .mbr-text,
  .cid-rU3mBlxXCl .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rU3mBlxXCl .mbr-text,
.cid-rU3mBlxXCl .mbr-section-btn {
  color: #000000;
}
.cid-rU3mBlxXCl .mbr-title {
  color: #4e8b8b;
}
.cid-rU3mBmktFn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rU3mBmktFn .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rU3mBmktFn .row-element,
.cid-rU3mBmktFn .image-element {
  padding: 0;
}
.cid-rU3mBmktFn .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rU3mBmktFn .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rU3mBmktFn .text-content {
  padding: 3rem;
}
.cid-rU3mBmktFn .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rU3mBmktFn .text-content {
    padding: 2rem 1rem;
  }
  .cid-rU3mBmktFn .mbr-title,
  .cid-rU3mBmktFn .underline,
  .cid-rU3mBmktFn .mbr-text,
  .cid-rU3mBmktFn .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rU3mBmktFn .mbr-text,
.cid-rU3mBmktFn .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-rU3mBmktFn .mbr-title {
  color: #0a8e82;
}
.cid-rU3mBn1JK2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rU3mBn1JK2 .row-element,
.cid-rU3mBn1JK2 .image-element {
  padding: 0;
}
.cid-rU3mBn1JK2 .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rU3mBn1JK2 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rU3mBn1JK2 .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-rU3mBn1JK2 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rU3mBn1JK2 .mbr-title,
  .cid-rU3mBn1JK2 .mbr-text,
  .cid-rU3mBn1JK2 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rU3mBn1JK2 .mbr-text,
.cid-rU3mBn1JK2 .mbr-section-btn {
  color: #000000;
}
.cid-rU3mBn1JK2 .mbr-title {
  color: #0a8e82;
}
.cid-rU3mBnPRSg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rU3mBnPRSg .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rU3mBnPRSg .row-element,
.cid-rU3mBnPRSg .image-element {
  padding: 0;
}
.cid-rU3mBnPRSg .image-element {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rU3mBnPRSg .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rU3mBnPRSg .text-content {
  padding: 3rem;
}
.cid-rU3mBnPRSg .mbr-section-subtitle {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-rU3mBnPRSg .text-content {
    padding: 2rem 1rem;
  }
  .cid-rU3mBnPRSg .mbr-title,
  .cid-rU3mBnPRSg .underline,
  .cid-rU3mBnPRSg .mbr-text,
  .cid-rU3mBnPRSg .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rU3mBnPRSg .mbr-text,
.cid-rU3mBnPRSg .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-rU3mBnPRSg .mbr-title {
  color: #0a8e82;
}
.cid-rU3mBouo4w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rU3mBouo4w .row-element,
.cid-rU3mBouo4w .image-element {
  padding: 0;
}
.cid-rU3mBouo4w .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rU3mBouo4w .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rU3mBouo4w .text-content {
  padding: 3rem;
}
.cid-rU3mBouo4w .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rU3mBouo4w .text-content {
    padding: 2rem 1rem;
  }
  .cid-rU3mBouo4w .mbr-title,
  .cid-rU3mBouo4w .underline,
  .cid-rU3mBouo4w .mbr-text,
  .cid-rU3mBouo4w .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rU3mBouo4w .mbr-title {
  color: #0a8e82;
}
.cid-rU3mBouo4w .mbr-text,
.cid-rU3mBouo4w .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-rU5gByJJjs {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rU3mBqJc6H {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rU3mBqJc6H .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-rU3mBqJc6H .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rU3mBqJc6H .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rU3mBqJc6H .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-rU3mBqJc6H .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rU3mBqJc6H .icon-transition span:hover {
  background-color: #e96188;
}
.cid-rU3mBqJc6H .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-rU3mBqJc6H .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-rU3mBqJc6H .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-rU3mBqJc6H .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tChBGdcDP6 .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;
  -webkit-transform: scale(0, 1);
}
.cid-tChBGdcDP6 .nav-item,
.cid-tChBGdcDP6 .nav-link,
.cid-tChBGdcDP6 .navbar-caption {
  font-weight: normal;
}
.cid-tChBGdcDP6 .nav-item:focus,
.cid-tChBGdcDP6 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tChBGdcDP6 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-tChBGdcDP6 .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-tChBGdcDP6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tChBGdcDP6 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tChBGdcDP6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-tChBGdcDP6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tChBGdcDP6 .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;
  -webkit-transform: scale(1, 1);
}
.cid-tChBGdcDP6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tChBGdcDP6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tChBGdcDP6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-tChBGdcDP6 .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-tChBGdcDP6 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tChBGdcDP6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-tChBGdcDP6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tChBGdcDP6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tChBGdcDP6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tChBGdcDP6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tChBGdcDP6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tChBGdcDP6 .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-tChBGdcDP6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tChBGdcDP6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tChBGdcDP6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tChBGdcDP6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tChBGdcDP6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tChBGdcDP6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tChBGdcDP6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tChBGdcDP6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tChBGdcDP6 .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-tChBGdcDP6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tChBGdcDP6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tChBGdcDP6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tChBGdcDP6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-tChBGdcDP6 .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-tChBGdcDP6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tChBGdcDP6 .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-tChBGdcDP6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tChBGdcDP6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tChBGdcDP6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-tChBGdcDP6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tChBGdcDP6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tChBGdcDP6 .dropdown-item.active,
.cid-tChBGdcDP6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tChBGdcDP6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tChBGdcDP6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tChBGdcDP6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tChBGdcDP6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-tChBGdcDP6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tChBGdcDP6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tChBGdcDP6 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-tChBGdcDP6 .navbar-buttons {
  text-align: center;
}
.cid-tChBGdcDP6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-tChBGdcDP6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tChBGdcDP6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tChBGdcDP6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tChBGdcDP6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tChBGdcDP6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tChBGdcDP6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tChBGdcDP6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tChBGdcDP6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tChBGdcDP6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tChBGdcDP6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tChBGdcDP6 a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-tChBGdcDP6 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-tChBGdcDP6 .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tChBGdcDP6 .soc-item {
  margin: .5rem .3rem;
}
.cid-tChBGdcDP6 .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tChBGdcDP6 .navbar {
    height: 77px;
  }
  .cid-tChBGdcDP6 .navbar.opened {
    height: auto;
  }
  .cid-tChBGdcDP6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tChBGdGVRG {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #4e8b8b;
}
.cid-tChBGdGVRG .mbr-section-subtitle {
  color: #767676;
}
.cid-tChBGdGVRG .mbr-section-title {
  color: #ffffff;
}
.cid-tChCtYlVzo {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tChCtYlVzo .card {
  display: block;
  position: relative;
}
.cid-tChCtYlVzo .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tChCtYlVzo .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tChCtYlVzo .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tChCtYlVzo .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-tChCtYlVzo .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tChCtYlVzo .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tChCtYlVzo .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tChCtYlVzo .mbr-title {
  color: #ffffff;
}
.cid-tCmROVk1it {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tCmROVk1it .card {
  display: block;
  position: relative;
}
.cid-tCmROVk1it .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tCmROVk1it .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tCmROVk1it .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tCmROVk1it .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-tCmROVk1it .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tCmROVk1it .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tCmROVk1it .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tCmROVk1it .mbr-title {
  color: #ffffff;
}
.cid-tCmUxmScvx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tCmUxmScvx .card {
  display: block;
  position: relative;
}
.cid-tCmUxmScvx .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tCmUxmScvx .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tCmUxmScvx .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tCmUxmScvx .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-tCmUxmScvx .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tCmUxmScvx .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tCmUxmScvx .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tCmUxmScvx .mbr-title {
  color: #ffffff;
}
.cid-tCmWVPO1oe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tCmWVPO1oe .card {
  display: block;
  position: relative;
}
.cid-tCmWVPO1oe .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tCmWVPO1oe .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tCmWVPO1oe .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tCmWVPO1oe .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-tCmWVPO1oe .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tCmWVPO1oe .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tCmWVPO1oe .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tCmWVPO1oe .mbr-title {
  color: #ffffff;
}
.cid-tCmYsal7du {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tCmYsal7du .card {
  display: block;
  position: relative;
}
.cid-tCmYsal7du .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tCmYsal7du .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tCmYsal7du .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tCmYsal7du .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-tCmYsal7du .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tCmYsal7du .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tCmYsal7du .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tCmYsal7du .mbr-title {
  color: #ffffff;
}
.cid-tCmZKahIxu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tCmZKahIxu .card {
  display: block;
  position: relative;
}
.cid-tCmZKahIxu .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-tCmZKahIxu .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tCmZKahIxu .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tCmZKahIxu .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-tCmZKahIxu .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tCmZKahIxu .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tCmZKahIxu .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tCmZKahIxu .mbr-title {
  color: #ffffff;
}
.cid-tChBGf56lh {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tChBGf56lh .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-tChBGf56lh .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tChBGf56lh .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tChBGf56lh .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-tChBGf56lh .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tChBGf56lh .icon-transition span:hover {
  background-color: #e96188;
}
.cid-tChBGf56lh .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-tChBGf56lh .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-tChBGf56lh .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-tChBGf56lh .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tCn4y4Ez5f .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;
  -webkit-transform: scale(0, 1);
}
.cid-tCn4y4Ez5f .nav-item,
.cid-tCn4y4Ez5f .nav-link,
.cid-tCn4y4Ez5f .navbar-caption {
  font-weight: normal;
}
.cid-tCn4y4Ez5f .nav-item:focus,
.cid-tCn4y4Ez5f .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tCn4y4Ez5f .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
}
.cid-tCn4y4Ez5f .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-tCn4y4Ez5f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCn4y4Ez5f .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tCn4y4Ez5f .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-tCn4y4Ez5f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tCn4y4Ez5f .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;
  -webkit-transform: scale(1, 1);
}
.cid-tCn4y4Ez5f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCn4y4Ez5f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCn4y4Ez5f .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #767676;
  background: none;
}
.cid-tCn4y4Ez5f .navbar.opened {
  transition: all .3s;
  background: #767676 !important;
}
.cid-tCn4y4Ez5f .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tCn4y4Ez5f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-tCn4y4Ez5f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCn4y4Ez5f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tCn4y4Ez5f .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tCn4y4Ez5f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCn4y4Ez5f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCn4y4Ez5f .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-tCn4y4Ez5f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCn4y4Ez5f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tCn4y4Ez5f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tCn4y4Ez5f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCn4y4Ez5f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCn4y4Ez5f .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tCn4y4Ez5f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCn4y4Ez5f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCn4y4Ez5f .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-tCn4y4Ez5f .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tCn4y4Ez5f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCn4y4Ez5f .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCn4y4Ez5f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-tCn4y4Ez5f .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
  .cid-tCn4y4Ez5f .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tCn4y4Ez5f .navbar.navbar-short {
  background: #767676 !important;
  min-height: 60px;
}
.cid-tCn4y4Ez5f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tCn4y4Ez5f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tCn4y4Ez5f .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-tCn4y4Ez5f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCn4y4Ez5f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCn4y4Ez5f .dropdown-item.active,
.cid-tCn4y4Ez5f .dropdown-item:active {
  background-color: transparent;
}
.cid-tCn4y4Ez5f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCn4y4Ez5f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCn4y4Ez5f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCn4y4Ez5f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #767676;
}
.cid-tCn4y4Ez5f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCn4y4Ez5f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCn4y4Ez5f ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-tCn4y4Ez5f .navbar-buttons {
  text-align: center;
}
.cid-tCn4y4Ez5f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-tCn4y4Ez5f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tCn4y4Ez5f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tCn4y4Ez5f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tCn4y4Ez5f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tCn4y4Ez5f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tCn4y4Ez5f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCn4y4Ez5f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tCn4y4Ez5f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tCn4y4Ez5f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCn4y4Ez5f .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tCn4y4Ez5f a.nav-link {
  justify-content: center;
  display: -webkit-flex;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-tCn4y4Ez5f .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: -webkit-inline-flex;
}
.cid-tCn4y4Ez5f .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tCn4y4Ez5f .soc-item {
  margin: .5rem .3rem;
}
.cid-tCn4y4Ez5f .icons-menu {
  flex-wrap: wrap;
  display: -webkit-flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCn4y4Ez5f .navbar {
    height: 77px;
  }
  .cid-tCn4y4Ez5f .navbar.opened {
    height: auto;
  }
  .cid-tCn4y4Ez5f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCn4y5vlMQ {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #4289a7;
}
.cid-tCn4y5vlMQ .mbr-section-subtitle {
  color: #767676;
}
.cid-tCn4y5vlMQ .mbr-section-title {
  color: #ffffff;
}
.cid-tCn4IzsoFO {
  background: #ffffff;
}
.cid-tCn4IzsoFO .container-fluid {
  padding: 0 3rem;
}
.cid-tCn4IzsoFO .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-tCn4IzsoFO .image-block img {
  width: 100%;
}
.cid-tCn4IzsoFO .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-tCn4IzsoFO .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tCn4IzsoFO .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-tCn4IzsoFO .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tCn4y6hJj5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tCn4y6hJj5 .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
}
.cid-tCn4y6hJj5 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tCn4y6hJj5 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tCn4y6hJj5 .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  -webkit-align-items: center;
  -webkit-justify-content: flex-start;
}
.cid-tCn4y6hJj5 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tCn4y6hJj5 .icon-transition span:hover {
  background-color: #e96188;
}
.cid-tCn4y6hJj5 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-tCn4y6hJj5 .social-media {
    justify-content: center;
    padding-right: 0rem;
    -webkit-justify-content: center;
  }
  .cid-tCn4y6hJj5 .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
    -webkit-justify-content: center;
  }
  .cid-tCn4y6hJj5 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
