body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins-Bold';
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins-Bold';
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins-SemiBold';
  font-size: 1rem;
}
.display-5 {
  font-family: 'Comfortaa-Medium';
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa-Regular';
  font-size: 1.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: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #a38dfd !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #879a9f !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #6642fc;
  border-color: #6642fc;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe0613;
  border-color: #fe0613;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13709e;
  border-color: #13709e;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82acb6;
  border-color: #82acb6;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #617479;
  border-color: #617479;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.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:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.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:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.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 {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a38dfd;
  border-color: #a38dfd;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #5229fb;
  color: #5229fb !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #a38dfd;
  border-color: #a38dfd;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe525b;
  border-color: #fe525b;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fe525b !important;
  border-color: #fe525b !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #879a9f;
  border-color: #879a9f;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.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:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.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;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #a38dfd !important;
}
.text-secondary {
  color: #fe525b !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #879a9f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #5229fb !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9010d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !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: #b2ccd2;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.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: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  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: #a38dfd;
  border-color: #a38dfd;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a38dfd;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Comfortaa-Regular';
  font-size: 1.1rem;
}
blockquote {
  border-color: #a38dfd;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 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;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #a38dfd;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #a38dfd;
  border-bottom-color: #a38dfd;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #a38dfd !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #fe525b !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23a38dfd' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-qN750zsFwt .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qN750zsFwt .nav-item:focus,
.cid-qN750zsFwt .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qN750zsFwt .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qN750zsFwt .nav-item .nav-link {
    position: relative;
  }
  .cid-qN750zsFwt .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qN750zsFwt .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qN750zsFwt .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qN750zsFwt .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-qN750zsFwt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qN750zsFwt .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qN750zsFwt .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qN750zsFwt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qN750zsFwt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qN750zsFwt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qN750zsFwt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qN750zsFwt .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #03426a;
}
.cid-qN750zsFwt .navbar.opened {
  transition: all .3s;
  background: #03426a !important;
}
.cid-qN750zsFwt .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qN750zsFwt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qN750zsFwt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qN750zsFwt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qN750zsFwt .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qN750zsFwt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qN750zsFwt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qN750zsFwt .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-qN750zsFwt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qN750zsFwt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qN750zsFwt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qN750zsFwt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qN750zsFwt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qN750zsFwt .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qN750zsFwt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qN750zsFwt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qN750zsFwt .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-qN750zsFwt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qN750zsFwt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qN750zsFwt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qN750zsFwt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qN750zsFwt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qN750zsFwt .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qN750zsFwt .navbar.navbar-short {
  background: #03426a !important;
  min-height: 60px;
}
.cid-qN750zsFwt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qN750zsFwt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qN750zsFwt .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qN750zsFwt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qN750zsFwt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qN750zsFwt .dropdown-item.active,
.cid-qN750zsFwt .dropdown-item:active {
  background-color: transparent;
}
.cid-qN750zsFwt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qN750zsFwt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qN750zsFwt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qN750zsFwt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #03426a;
}
.cid-qN750zsFwt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qN750zsFwt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qN750zsFwt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qN750zsFwt .navbar-buttons {
  text-align: center;
}
.cid-qN750zsFwt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qN750zsFwt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qN750zsFwt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qN750zsFwt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qN750zsFwt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qN750zsFwt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qN750zsFwt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qN750zsFwt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qN750zsFwt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qN750zsFwt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qN750zsFwt .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qN750zsFwt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qN750zsFwt .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qN750zsFwt .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qN750zsFwt .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qN750zsFwt .navbar {
    height: 77px;
  }
  .cid-qN750zsFwt .navbar.opened {
    height: auto;
  }
  .cid-qN750zsFwt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qN75gDQ7ft {
  background-image: url("../../../assets/images/mbr-1920x602.jpg");
  overflow: hidden !important;
}
.cid-qN75gDQ7ft .container-fluid {
  padding: 0 3rem;
}
.cid-qN75gDQ7ft .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-qN75gDQ7ft .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qN75gDQ7ft .myunderline {
  text-decoration: underline;
}
.cid-qN75gDQ7ft .mbr-section-subtitle,
.cid-qN75gDQ7ft .mbr-section-btn {
  color: #ffffff;
}
.cid-qN75t8VfZS {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #ffffff;
  overflow-x: hidden;
}
.cid-qN75t8VfZS .mbr-text,
.cid-qN75t8VfZS blockquote {
  color: #232323;
}
.cid-tVLfIQDJww {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-tVLfIQDJww .mbr-text,
.cid-tVLfIQDJww blockquote {
  color: #232323;
}
.cid-qN75xZdbbR {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #e2e2e2;
}
.cid-qN75xZdbbR .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qN75xZdbbR .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qN75xZdbbR .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qN75xZdbbR .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qN75xZdbbR .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #879a9f;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qN75xZdbbR .icon-transition span:hover {
  background-color: #fe525b;
}
.cid-qN75xZdbbR .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qN75xZdbbR .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qN75xZdbbR .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qN75xZdbbR .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-qN750zsFwt .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qN750zsFwt .nav-item:focus,
.cid-qN750zsFwt .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qN750zsFwt .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qN750zsFwt .nav-item .nav-link {
    position: relative;
  }
  .cid-qN750zsFwt .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qN750zsFwt .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qN750zsFwt .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qN750zsFwt .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-qN750zsFwt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qN750zsFwt .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qN750zsFwt .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qN750zsFwt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qN750zsFwt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qN750zsFwt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qN750zsFwt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qN750zsFwt .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #03426a;
}
.cid-qN750zsFwt .navbar.opened {
  transition: all .3s;
  background: #03426a !important;
}
.cid-qN750zsFwt .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qN750zsFwt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qN750zsFwt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qN750zsFwt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qN750zsFwt .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qN750zsFwt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qN750zsFwt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qN750zsFwt .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-qN750zsFwt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qN750zsFwt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qN750zsFwt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qN750zsFwt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qN750zsFwt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qN750zsFwt .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qN750zsFwt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qN750zsFwt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qN750zsFwt .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-qN750zsFwt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qN750zsFwt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qN750zsFwt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qN750zsFwt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qN750zsFwt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qN750zsFwt .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qN750zsFwt .navbar.navbar-short {
  background: #03426a !important;
  min-height: 60px;
}
.cid-qN750zsFwt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qN750zsFwt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qN750zsFwt .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qN750zsFwt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qN750zsFwt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qN750zsFwt .dropdown-item.active,
.cid-qN750zsFwt .dropdown-item:active {
  background-color: transparent;
}
.cid-qN750zsFwt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qN750zsFwt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qN750zsFwt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qN750zsFwt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #03426a;
}
.cid-qN750zsFwt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qN750zsFwt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qN750zsFwt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qN750zsFwt .navbar-buttons {
  text-align: center;
}
.cid-qN750zsFwt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qN750zsFwt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qN750zsFwt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qN750zsFwt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qN750zsFwt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qN750zsFwt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qN750zsFwt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qN750zsFwt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qN750zsFwt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qN750zsFwt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qN750zsFwt .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qN750zsFwt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qN750zsFwt .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qN750zsFwt .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qN750zsFwt .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qN750zsFwt .navbar {
    height: 77px;
  }
  .cid-qN750zsFwt .navbar.opened {
    height: auto;
  }
  .cid-qN750zsFwt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rGsTwnHbT9 {
  background-image: url("../../../assets/images/mbr-1920x960.jpg");
}
.cid-rGsTwnHbT9 .mbr-overlay {
  background: #000000;
  background: linear-gradient(45deg, #000000, #000000);
  background: radial-gradient(#000000, #000000);
}
.cid-rGsTwnHbT9 .mbr-section-title {
  margin: 0;
}
.cid-rGsVhTwZtr {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rGsVhTwZtr .mbr-text,
.cid-rGsVhTwZtr blockquote {
  color: #232323;
}
.cid-rGsVhTwZtr body,
.cid-rGsVhTwZtr textarea {
  font-family: Verdana, Sans-Serif;
  font-size: 14px;
}
.cid-rGsVhTwZtr span.pflichtfeld {
  font-size: 12px;
  color: Red;
}
.cid-rGsVhTwZtr span.hilfetext {
  font-size: 10px;
  font-style: Oblique;
}
.cid-rGsVhTwZtr input[type=submit] {
  background-color: #cccccc;
  border: 1px solid #888888;
  border-radius: 30px;
  color: white;
  padding: 8px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}
.cid-rGsVhTwZtr input[type=submit]:hover {
  background-color: #efefef;
  color: black;
}
.cid-rGsVhTwZtr ::placeholder {
  color: #e2e2e2;
}
.cid-rGsVhTwZtr :-ms-input-placeholder {
  color: #e2e2e2;
}
.cid-rGsVhTwZtr ::-ms-input-placeholder {
  color: #e2e2e2;
}
.cid-rGt03CSWLr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rGt03CSWLr .container-fluid {
  padding: 0 3rem;
}
.cid-rGt03CSWLr .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rGt03CSWLr svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rGt03CSWLr .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-rGt03CSWLr .blockquote-quote {
    text-align: left;
  }
  .cid-rGt03CSWLr .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rGtgfsZWm7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #b2ccd2;
}
.cid-rGtgfsZWm7 p {
  color: #767676;
}
.cid-rGtgfsZWm7 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rGtgfsZWm7 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rGtgfsZWm7 .row-element,
.cid-rGtgfsZWm7 .image-element {
  padding: 0;
}
.cid-rGtgfsZWm7 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rGtgfsZWm7 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rGtgfsZWm7 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rGtgfsZWm7 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rGtgfsZWm7 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rGtgfsZWm7 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rGtgfsZWm7 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rGtgfsZWm7 .underline .line {
    height: 2px;
  }
  .cid-rGtgfsZWm7 .mbr-title,
  .cid-rGtgfsZWm7 .underline,
  .cid-rGtgfsZWm7 .mbr-text,
  .cid-rGtgfsZWm7 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qN75xZdbbR {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #e2e2e2;
}
.cid-qN75xZdbbR .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qN75xZdbbR .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qN75xZdbbR .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qN75xZdbbR .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qN75xZdbbR .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #879a9f;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qN75xZdbbR .icon-transition span:hover {
  background-color: #fe525b;
}
.cid-qN75xZdbbR .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qN75xZdbbR .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qN75xZdbbR .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qN75xZdbbR .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rNxgdJLF9i .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rNxgdJLF9i .nav-item:focus,
.cid-rNxgdJLF9i .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rNxgdJLF9i .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rNxgdJLF9i .nav-item .nav-link {
    position: relative;
  }
  .cid-rNxgdJLF9i .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rNxgdJLF9i .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rNxgdJLF9i .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rNxgdJLF9i .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-rNxgdJLF9i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rNxgdJLF9i .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rNxgdJLF9i .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rNxgdJLF9i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rNxgdJLF9i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rNxgdJLF9i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rNxgdJLF9i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rNxgdJLF9i .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #03426a;
}
.cid-rNxgdJLF9i .navbar.opened {
  transition: all .3s;
  background: #03426a !important;
}
.cid-rNxgdJLF9i .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rNxgdJLF9i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rNxgdJLF9i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rNxgdJLF9i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rNxgdJLF9i .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rNxgdJLF9i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rNxgdJLF9i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rNxgdJLF9i .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-rNxgdJLF9i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rNxgdJLF9i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rNxgdJLF9i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rNxgdJLF9i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rNxgdJLF9i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rNxgdJLF9i .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rNxgdJLF9i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rNxgdJLF9i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rNxgdJLF9i .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-rNxgdJLF9i .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rNxgdJLF9i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rNxgdJLF9i .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rNxgdJLF9i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rNxgdJLF9i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rNxgdJLF9i .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rNxgdJLF9i .navbar.navbar-short {
  background: #03426a !important;
  min-height: 60px;
}
.cid-rNxgdJLF9i .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rNxgdJLF9i .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rNxgdJLF9i .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rNxgdJLF9i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rNxgdJLF9i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rNxgdJLF9i .dropdown-item.active,
.cid-rNxgdJLF9i .dropdown-item:active {
  background-color: transparent;
}
.cid-rNxgdJLF9i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rNxgdJLF9i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rNxgdJLF9i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rNxgdJLF9i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #03426a;
}
.cid-rNxgdJLF9i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rNxgdJLF9i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rNxgdJLF9i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rNxgdJLF9i .navbar-buttons {
  text-align: center;
}
.cid-rNxgdJLF9i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rNxgdJLF9i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rNxgdJLF9i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rNxgdJLF9i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rNxgdJLF9i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rNxgdJLF9i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rNxgdJLF9i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rNxgdJLF9i nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rNxgdJLF9i nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rNxgdJLF9i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rNxgdJLF9i .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rNxgdJLF9i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rNxgdJLF9i .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rNxgdJLF9i .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rNxgdJLF9i .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rNxgdJLF9i .navbar {
    height: 77px;
  }
  .cid-rNxgdJLF9i .navbar.opened {
    height: auto;
  }
  .cid-rNxgdJLF9i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rNxgdKesrx {
  background-image: url("../../../assets/images/mbr-2-1920x1079.jpg");
}
.cid-rNxgdKesrx .mbr-overlay {
  background: #000000;
  background: linear-gradient(45deg, #000000, #000000);
  background: radial-gradient(#000000, #000000);
}
.cid-rNxgdKesrx .mbr-section-title {
  margin: 0;
}
.cid-rNxgdKesrx .mbr-text,
.cid-rNxgdKesrx .mbr-section-btn {
  color: #ffef00;
}
.cid-rNxgdKesrx .mytextlink {
  text-decoration: underline;
}
.cid-rNxgdKZGi6 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rNxgdKZGi6 .container-fluid {
  padding: 0 3rem;
}
.cid-rNxgdKZGi6 .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rNxgdKZGi6 svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rNxgdKZGi6 .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-rNxgdKZGi6 .blockquote-quote {
    text-align: left;
  }
  .cid-rNxgdKZGi6 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rNxgdKZGi6 .mbr-section-title {
  color: #5a31fb;
}
.cid-rNxsuDufGO {
  background: #cccccc;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-rNxsuDufGO .container-fluid {
  padding: 0 3rem;
}
.cid-rNxsuDufGO .image-block {
  margin: auto;
}
.cid-rNxsuDufGO .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rNxsuDufGO .container-fluid {
    padding: 0 1rem;
  }
  .cid-rNxsuDufGO .image-block {
    width: 100% !important;
  }
}
.cid-rNxtrLAusU {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rNxtrLAusU .container-fluid {
  padding: 0 3rem;
}
.cid-rNxtrLAusU .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rNxtrLAusU svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rNxtrLAusU .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-rNxtrLAusU .blockquote-quote {
    text-align: left;
  }
  .cid-rNxtrLAusU .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rNxtrLAusU .mbr-section-title {
  color: #5a31fb;
}
.cid-rNxvK5mK0G {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #cccccc;
}
.cid-rNxvK5mK0G .container-fluid {
  padding: 0 2rem;
}
.cid-rNxvK5mK0G .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-rNxvK5mK0G .mbr-title {
  padding: 0 1rem;
}
.cid-rNxvK5mK0G .mbr-section-subtitle {
  margin-top: .8rem;
  margin-bottom: 1.3rem;
}
.cid-rNxvK5mK0G .underline {
  padding: .5rem 1rem .5rem 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rNxvK5mK0G .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-rNxvK5mK0G .image-wrap {
  width: 100%;
}
.cid-rNxvK5mK0G .image-wrap img {
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.cid-rNxvK5mK0G .btn {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.cid-rNxvK5mK0G .card-wrapper {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-rNxvK5mK0G .container-fluid {
    padding: 0rem;
  }
}
.cid-rNxSuAysAs {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rNxSuAysAs .container-fluid {
  padding: 0 3rem;
}
.cid-rNxSuAysAs .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rNxSuAysAs svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rNxSuAysAs .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-rNxSuAysAs .blockquote-quote {
    text-align: left;
  }
  .cid-rNxSuAysAs .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rNxSuAysAs .mbr-section-title {
  color: #5a31fb;
}
@media (min-width: 992px) {
  .cid-rNxSuAysAs #zeigeLink {
    display: none;
  }
}
.cid-rNxSuAysAs #myFrame {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .cid-rNxSuAysAs #myFrame {
    display: none;
    margin-bottom: 0px;
  }
}
.cid-rNCcfgtL7v {
  background: #cccccc;
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-rNCcfgtL7v .container-fluid {
  padding: 0 3rem;
}
.cid-rNCcfgtL7v .image-block {
  margin: auto;
}
.cid-rNCcfgtL7v .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rNCcfgtL7v .container-fluid {
    padding: 0 1rem;
  }
  .cid-rNCcfgtL7v .image-block {
    width: 100% !important;
  }
}
.cid-rNxgdM0tNr {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #e2e2e2;
}
.cid-rNxgdM0tNr .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rNxgdM0tNr .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rNxgdM0tNr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rNxgdM0tNr .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rNxgdM0tNr .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #879a9f;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rNxgdM0tNr .icon-transition span:hover {
  background-color: #fe525b;
}
.cid-rNxgdM0tNr .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-rNxgdM0tNr .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-rNxgdM0tNr .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-rNxgdM0tNr .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-qN750zsFwt .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qN750zsFwt .nav-item:focus,
.cid-qN750zsFwt .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qN750zsFwt .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qN750zsFwt .nav-item .nav-link {
    position: relative;
  }
  .cid-qN750zsFwt .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qN750zsFwt .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qN750zsFwt .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qN750zsFwt .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-qN750zsFwt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qN750zsFwt .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qN750zsFwt .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qN750zsFwt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qN750zsFwt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qN750zsFwt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qN750zsFwt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qN750zsFwt .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #03426a;
}
.cid-qN750zsFwt .navbar.opened {
  transition: all .3s;
  background: #03426a !important;
}
.cid-qN750zsFwt .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qN750zsFwt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qN750zsFwt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qN750zsFwt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qN750zsFwt .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qN750zsFwt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qN750zsFwt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qN750zsFwt .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-qN750zsFwt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qN750zsFwt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qN750zsFwt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qN750zsFwt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qN750zsFwt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qN750zsFwt .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qN750zsFwt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qN750zsFwt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qN750zsFwt .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-qN750zsFwt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qN750zsFwt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qN750zsFwt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qN750zsFwt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qN750zsFwt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qN750zsFwt .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qN750zsFwt .navbar.navbar-short {
  background: #03426a !important;
  min-height: 60px;
}
.cid-qN750zsFwt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qN750zsFwt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qN750zsFwt .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qN750zsFwt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qN750zsFwt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qN750zsFwt .dropdown-item.active,
.cid-qN750zsFwt .dropdown-item:active {
  background-color: transparent;
}
.cid-qN750zsFwt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qN750zsFwt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qN750zsFwt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qN750zsFwt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #03426a;
}
.cid-qN750zsFwt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qN750zsFwt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qN750zsFwt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qN750zsFwt .navbar-buttons {
  text-align: center;
}
.cid-qN750zsFwt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qN750zsFwt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qN750zsFwt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qN750zsFwt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qN750zsFwt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qN750zsFwt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qN750zsFwt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qN750zsFwt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qN750zsFwt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qN750zsFwt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qN750zsFwt .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qN750zsFwt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qN750zsFwt .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qN750zsFwt .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qN750zsFwt .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qN750zsFwt .navbar {
    height: 77px;
  }
  .cid-qN750zsFwt .navbar.opened {
    height: auto;
  }
  .cid-qN750zsFwt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-swCotPwZDj {
  background-image: url("../../../assets/images/mbr-1920x602.jpg");
}
.cid-swCotPwZDj .mbr-overlay {
  background: #000000;
}
.cid-swCotPwZDj .mbr-section-title {
  margin: 0;
}
.cid-swCotPwZDj .text-white {
  text-decoration: underline;
}
.cid-swECflyKWO {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-swECflyKWO .mbr-text,
.cid-swECflyKWO blockquote {
  color: #767676;
}
.cid-swECflyKWO a:hover {
  text-decoration: underline;
}
.cid-swCFgQPjel {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-swCFgQPjel .container-fluid {
  padding: 0 3rem;
}
.cid-swCFgQPjel .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-swCFgQPjel svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-swCFgQPjel .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-swCFgQPjel .blockquote-quote {
    text-align: left;
  }
  .cid-swCFgQPjel .container-fluid {
    padding: 0 1rem;
  }
}
.cid-swCFgQPjel .mbr-section-title {
  color: #5a31fb;
}
.cid-swCFgQPjel a:hover {
  text-decoration: underline;
}
.cid-swCXOwHGsg {
  background: #cccccc;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-swCXOwHGsg .container-fluid {
  padding: 0 3rem;
}
.cid-swCXOwHGsg .image-block {
  position: relative;
  margin: auto;
}
.cid-swCXOwHGsg .image-block img {
  width: 100%;
}
.cid-swCXOwHGsg .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-swCXOwHGsg .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-swCXOwHGsg .container-fluid {
    padding: 0 1rem;
  }
  .cid-swCXOwHGsg .image-block {
    width: 100% !important;
  }
}
.cid-swCYY7Q1ng {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-swCYY7Q1ng .container-fluid {
  padding: 0 3rem;
}
.cid-swCYY7Q1ng .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-swCYY7Q1ng svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-swCYY7Q1ng .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-swCYY7Q1ng .blockquote-quote {
    text-align: left;
  }
  .cid-swCYY7Q1ng .container-fluid {
    padding: 0 1rem;
  }
}
.cid-swCYY7Q1ng .mbr-section-title {
  color: #5a31fb;
}
.cid-swCZkXvLxz {
  background: #cccccc;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-swCZkXvLxz .container-fluid {
  padding: 0 3rem;
}
.cid-swCZkXvLxz .image-block {
  position: relative;
  margin: auto;
}
.cid-swCZkXvLxz .image-block img {
  width: 100%;
}
.cid-swCZkXvLxz .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-swCZkXvLxz .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-swCZkXvLxz .container-fluid {
    padding: 0 1rem;
  }
  .cid-swCZkXvLxz .image-block {
    width: 100% !important;
  }
}
.cid-swCZNWUzSv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-swCZNWUzSv .container-fluid {
  padding: 0 3rem;
}
.cid-swCZNWUzSv .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-swCZNWUzSv svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-swCZNWUzSv .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-swCZNWUzSv .blockquote-quote {
    text-align: left;
  }
  .cid-swCZNWUzSv .container-fluid {
    padding: 0 1rem;
  }
}
.cid-swCZNWUzSv .mbr-section-title {
  color: #5a31fb;
}
.cid-swCZNWUzSv a:hover {
  text-decoration: underline;
}
.cid-swD0iE57sn {
  background: #cccccc;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-swD0iE57sn .container-fluid {
  padding: 0 3rem;
}
.cid-swD0iE57sn .image-block {
  position: relative;
  margin: auto;
}
.cid-swD0iE57sn .image-block img {
  width: 100%;
}
.cid-swD0iE57sn .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-swD0iE57sn .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-swD0iE57sn .container-fluid {
    padding: 0 1rem;
  }
  .cid-swD0iE57sn .image-block {
    width: 100% !important;
  }
}
.cid-sxEetGMUf8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sxEetGMUf8 .container-fluid {
  padding: 0 3rem;
}
.cid-sxEetGMUf8 .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-sxEetGMUf8 svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-sxEetGMUf8 .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-sxEetGMUf8 .blockquote-quote {
    text-align: left;
  }
  .cid-sxEetGMUf8 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sxEetGMUf8 .mbr-section-title {
  color: #5a31fb;
}
.cid-sxElm3YGy2 {
  background: #cccccc;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sxElm3YGy2 .container-fluid {
  padding: 0 3rem;
}
.cid-sxElm3YGy2 .image-block {
  position: relative;
  margin: auto;
}
.cid-sxElm3YGy2 .image-block img {
  width: 100%;
}
.cid-sxElm3YGy2 .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-sxElm3YGy2 .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-sxElm3YGy2 .container-fluid {
    padding: 0 1rem;
  }
  .cid-sxElm3YGy2 .image-block {
    width: 100% !important;
  }
}
.cid-swD18dIcJz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-swD18dIcJz .container-fluid {
  padding: 0 3rem;
}
.cid-swD18dIcJz .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-swD18dIcJz svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-swD18dIcJz .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-swD18dIcJz .blockquote-quote {
    text-align: left;
  }
  .cid-swD18dIcJz .container-fluid {
    padding: 0 1rem;
  }
}
.cid-swD18dIcJz .mbr-section-title {
  color: #5a31fb;
}
.cid-swD19s2KzE {
  background: #cccccc;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-swD19s2KzE .container-fluid {
  padding: 0 3rem;
}
.cid-swD19s2KzE .image-block {
  position: relative;
  margin: auto;
}
.cid-swD19s2KzE .image-block img {
  width: 100%;
}
.cid-swD19s2KzE .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-swD19s2KzE .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-swD19s2KzE .container-fluid {
    padding: 0 1rem;
  }
  .cid-swD19s2KzE .image-block {
    width: 100% !important;
  }
}
.cid-swD1YrvZ8o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-swD1YrvZ8o .container-fluid {
  padding: 0 3rem;
}
.cid-swD1YrvZ8o .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-swD1YrvZ8o svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-swD1YrvZ8o .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-swD1YrvZ8o .blockquote-quote {
    text-align: left;
  }
  .cid-swD1YrvZ8o .container-fluid {
    padding: 0 1rem;
  }
}
.cid-swD1YrvZ8o .mbr-section-title {
  color: #5a31fb;
}
.cid-swD1Z9Eg8X {
  background: #cccccc;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-swD1Z9Eg8X .container-fluid {
  padding: 0 3rem;
}
.cid-swD1Z9Eg8X .image-block {
  position: relative;
  margin: auto;
}
.cid-swD1Z9Eg8X .image-block img {
  width: 100%;
}
.cid-swD1Z9Eg8X .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-swD1Z9Eg8X .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-swD1Z9Eg8X .container-fluid {
    padding: 0 1rem;
  }
  .cid-swD1Z9Eg8X .image-block {
    width: 100% !important;
  }
}
.cid-swD2OBE1C4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-swD2OBE1C4 .container-fluid {
  padding: 0 3rem;
}
.cid-swD2OBE1C4 .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-swD2OBE1C4 svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-swD2OBE1C4 .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-swD2OBE1C4 .blockquote-quote {
    text-align: left;
  }
  .cid-swD2OBE1C4 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-swD2OBE1C4 .mbr-section-title {
  color: #5a31fb;
}
.cid-swD2OBE1C4 .code-farbe {
  background-color: #efefef;
}
.cid-swD2OBE1C4 a:hover {
  text-decoration: underline;
}
.cid-swD2P8HOJN {
  background: #cccccc;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-swD2P8HOJN .container-fluid {
  padding: 0 3rem;
}
.cid-swD2P8HOJN .image-block {
  position: relative;
  margin: auto;
}
.cid-swD2P8HOJN .image-block img {
  width: 100%;
}
.cid-swD2P8HOJN .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-swD2P8HOJN .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-swD2P8HOJN .container-fluid {
    padding: 0 1rem;
  }
  .cid-swD2P8HOJN .image-block {
    width: 100% !important;
  }
}
.cid-sx53uMKbmW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sx53uMKbmW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sx53uMKbmW .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-sx53uMKbmW .mbr-text {
  color: #232323;
}
.cid-qN75xZdbbR {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #e2e2e2;
}
.cid-qN75xZdbbR .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qN75xZdbbR .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qN75xZdbbR .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qN75xZdbbR .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qN75xZdbbR .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #879a9f;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qN75xZdbbR .icon-transition span:hover {
  background-color: #fe525b;
}
.cid-qN75xZdbbR .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qN75xZdbbR .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qN75xZdbbR .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qN75xZdbbR .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-sxgW437Ury .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sxgW437Ury .nav-item:focus,
.cid-sxgW437Ury .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sxgW437Ury .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sxgW437Ury .nav-item .nav-link {
    position: relative;
  }
  .cid-sxgW437Ury .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sxgW437Ury .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sxgW437Ury .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxgW437Ury .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-sxgW437Ury .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxgW437Ury .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-sxgW437Ury .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sxgW437Ury .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sxgW437Ury .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sxgW437Ury .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxgW437Ury .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxgW437Ury .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #03426a;
}
.cid-sxgW437Ury .navbar.opened {
  transition: all .3s;
  background: #03426a !important;
}
.cid-sxgW437Ury .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sxgW437Ury .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxgW437Ury .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxgW437Ury .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sxgW437Ury .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sxgW437Ury .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxgW437Ury .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxgW437Ury .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-sxgW437Ury .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxgW437Ury .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sxgW437Ury .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sxgW437Ury .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxgW437Ury .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxgW437Ury .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sxgW437Ury .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxgW437Ury .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxgW437Ury .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-sxgW437Ury .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sxgW437Ury .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxgW437Ury .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxgW437Ury .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sxgW437Ury .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxgW437Ury .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sxgW437Ury .navbar.navbar-short {
  background: #03426a !important;
  min-height: 60px;
}
.cid-sxgW437Ury .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sxgW437Ury .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sxgW437Ury .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sxgW437Ury .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxgW437Ury .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxgW437Ury .dropdown-item.active,
.cid-sxgW437Ury .dropdown-item:active {
  background-color: transparent;
}
.cid-sxgW437Ury .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxgW437Ury .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxgW437Ury .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxgW437Ury .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #03426a;
}
.cid-sxgW437Ury .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxgW437Ury .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxgW437Ury ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxgW437Ury .navbar-buttons {
  text-align: center;
}
.cid-sxgW437Ury button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sxgW437Ury button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sxgW437Ury button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sxgW437Ury button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sxgW437Ury button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sxgW437Ury button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sxgW437Ury nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sxgW437Ury nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sxgW437Ury nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sxgW437Ury nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sxgW437Ury .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sxgW437Ury a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxgW437Ury .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sxgW437Ury .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sxgW437Ury .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sxgW437Ury .navbar {
    height: 77px;
  }
  .cid-sxgW437Ury .navbar.opened {
    height: auto;
  }
  .cid-sxgW437Ury .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxgW43yqmh {
  background-image: url("../../../assets/images/mbr-1920x602.jpg");
}
.cid-sxgW43yqmh .mbr-overlay {
  background: #000000;
}
.cid-sxgW43yqmh .mbr-section-title {
  margin: 0;
}
.cid-sxgW43yqmh .text-white {
  text-decoration: underline;
}
.cid-sxgW43OCqf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow-x: hidden;
}
.cid-sxgW43OCqf .mbr-text,
.cid-sxgW43OCqf blockquote {
  color: #767676;
}
.cid-sxgW43OCqf a:hover {
  text-decoration: underline;
}
.cid-sxgW43UMpH {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sxgW43UMpH .container-fluid {
  padding: 0 3rem;
}
.cid-sxgW43UMpH .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-sxgW43UMpH svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-sxgW43UMpH .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-sxgW43UMpH .blockquote-quote {
    text-align: left;
  }
  .cid-sxgW43UMpH .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sxgW43UMpH .mbr-section-title {
  color: #5a31fb;
}
.cid-sxgW43UMpH a:hover {
  text-decoration: underline;
}
.cid-sxgW444uh8 {
  background: #cccccc;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sxgW444uh8 .container-fluid {
  padding: 0 3rem;
}
.cid-sxgW444uh8 .image-block {
  position: relative;
  margin: auto;
}
.cid-sxgW444uh8 .image-block img {
  width: 100%;
}
.cid-sxgW444uh8 .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-sxgW444uh8 .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-sxgW444uh8 .container-fluid {
    padding: 0 1rem;
  }
  .cid-sxgW444uh8 .image-block {
    width: 100% !important;
  }
}
.cid-sxrVaByAMT {
  background: #cccccc;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sxrVaByAMT .container-fluid {
  padding: 0 3rem;
}
.cid-sxrVaByAMT .image-block {
  position: relative;
  margin: auto;
}
.cid-sxrVaByAMT .image-block img {
  width: 100%;
}
.cid-sxrVaByAMT .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-sxrVaByAMT .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-sxrVaByAMT .container-fluid {
    padding: 0 1rem;
  }
  .cid-sxrVaByAMT .image-block {
    width: 100% !important;
  }
}
.cid-sxrZVDAo0s {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-sxrZVDAo0s .mbr-section-subtitle {
  color: #767676;
}
.cid-sxrZVDAo0s .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sxrZVDAo0s .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-sxrZVDAo0s .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-sxrZVDAo0s .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sxrZVDAo0s .wrapper {
  padding: 2rem 1rem 1rem 1rem;
  background: #ffffff;
}
.cid-sxrZVDAo0s .card-overlay {
  display: none;
}
.cid-sxrZVDAo0s .mbr-section-title,
.cid-sxrZVDAo0s .underline,
.cid-sxrZVDAo0s .mbr-section-subtitle {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .cid-sxrZVDAo0s .image-element:hover .card-overlay {
    opacity: .5;
    border-bottom-right-radius: 7rem;
  }
  .cid-sxrZVDAo0s .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-sxrZVDAo0s .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-sxrZVDAo0s .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-sxrZVDAo0s .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sxrZVDAo0s .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sxrZVDAo0s .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sxrZVDAo0s .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sxrZVDAo0s .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-sxrZVDAo0s .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-sxrZVDAo0s .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-sxrZVDAo0s .underline .line {
    height: 2px;
  }
  .cid-sxrZVDAo0s .card-title,
  .cid-sxrZVDAo0s .underline,
  .cid-sxrZVDAo0s .mbr-text,
  .cid-sxrZVDAo0s .mbr-section-btn,
  .cid-sxrZVDAo0s .mbr-section-subtitle,
  .cid-sxrZVDAo0s .mbr-section-title {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .cid-sxrZVDAo0s .main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .cid-sxrZVDAo0s .mbr-section-title,
  .cid-sxrZVDAo0s .underline,
  .cid-sxrZVDAo0s .mbr-section-subtitle {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-sxrZVDAo0s H3 {
  color: #c1c1c1;
}
.cid-sxrZVDAo0s .mbr-text,
.cid-sxrZVDAo0s .mbr-section-btn {
  color: #c1c1c1;
}
.cid-sxgW47xD33 {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #e2e2e2;
}
.cid-sxgW47xD33 .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-sxgW47xD33 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sxgW47xD33 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sxgW47xD33 .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-sxgW47xD33 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #879a9f;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-sxgW47xD33 .icon-transition span:hover {
  background-color: #fe525b;
}
.cid-sxgW47xD33 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-sxgW47xD33 .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-sxgW47xD33 .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-sxgW47xD33 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-sCJVEawxAG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sCJVEawxAG .nav-item:focus,
.cid-sCJVEawxAG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sCJVEawxAG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sCJVEawxAG .nav-item .nav-link {
    position: relative;
  }
  .cid-sCJVEawxAG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sCJVEawxAG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sCJVEawxAG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCJVEawxAG .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-sCJVEawxAG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCJVEawxAG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-sCJVEawxAG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sCJVEawxAG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCJVEawxAG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sCJVEawxAG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCJVEawxAG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCJVEawxAG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #03426a;
}
.cid-sCJVEawxAG .navbar.opened {
  transition: all .3s;
  background: #03426a !important;
}
.cid-sCJVEawxAG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sCJVEawxAG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sCJVEawxAG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCJVEawxAG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sCJVEawxAG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sCJVEawxAG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCJVEawxAG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCJVEawxAG .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-sCJVEawxAG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCJVEawxAG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sCJVEawxAG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sCJVEawxAG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCJVEawxAG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCJVEawxAG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sCJVEawxAG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCJVEawxAG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCJVEawxAG .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-sCJVEawxAG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sCJVEawxAG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCJVEawxAG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCJVEawxAG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sCJVEawxAG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCJVEawxAG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sCJVEawxAG .navbar.navbar-short {
  background: #03426a !important;
  min-height: 60px;
}
.cid-sCJVEawxAG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sCJVEawxAG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sCJVEawxAG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCJVEawxAG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCJVEawxAG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCJVEawxAG .dropdown-item.active,
.cid-sCJVEawxAG .dropdown-item:active {
  background-color: transparent;
}
.cid-sCJVEawxAG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCJVEawxAG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCJVEawxAG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCJVEawxAG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #03426a;
}
.cid-sCJVEawxAG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCJVEawxAG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCJVEawxAG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sCJVEawxAG .navbar-buttons {
  text-align: center;
}
.cid-sCJVEawxAG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sCJVEawxAG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sCJVEawxAG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sCJVEawxAG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sCJVEawxAG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sCJVEawxAG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sCJVEawxAG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCJVEawxAG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sCJVEawxAG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sCJVEawxAG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCJVEawxAG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sCJVEawxAG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCJVEawxAG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sCJVEawxAG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sCJVEawxAG .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sCJVEawxAG .navbar {
    height: 77px;
  }
  .cid-sCJVEawxAG .navbar.opened {
    height: auto;
  }
  .cid-sCJVEawxAG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCJVEb2KXf {
  background-image: url("../../../assets/images/mbr-1920x602.jpg");
}
.cid-sCJVEb2KXf .mbr-overlay {
  background: #000000;
}
.cid-sCJVEb2KXf .mbr-section-title {
  margin: 0;
}
.cid-sCJVEb2KXf .text-white {
  text-decoration: underline;
}
.cid-sCQ7Wr8EUK {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
.cid-sCKldT4iqJ {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-sCKldT4iqJ .mbr-text,
.cid-sCKldT4iqJ blockquote {
  color: #232323;
}
.cid-sCJVEbfg7P {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #efefef;
  overflow-x: hidden;
}
.cid-sCJVEbfg7P .mbr-text,
.cid-sCJVEbfg7P blockquote {
  color: #767676;
}
.cid-sCJVEbfg7P a:hover {
  text-decoration: underline;
}
.cid-sFEv1xhlDF {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sFEv1xhlDF .container-fluid {
  padding: 0 3rem;
}
.cid-sFEv1xhlDF .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-sFEv1xhlDF svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-sFEv1xhlDF .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-sFEv1xhlDF .blockquote-quote {
    text-align: left;
  }
  .cid-sFEv1xhlDF .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sFEv1xhlDF .mbr-section-title {
  color: #5a31fb;
}
.cid-sFEv1xhlDF a:hover {
  text-decoration: underline;
}
.cid-sFExdaeHuh {
  background: #cccccc;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sFExdaeHuh .container-fluid {
  padding: 0 3rem;
}
.cid-sFExdaeHuh .image-block {
  position: relative;
  margin: auto;
}
.cid-sFExdaeHuh .image-block img {
  width: 100%;
}
.cid-sFExdaeHuh .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-sFExdaeHuh .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-sFExdaeHuh .container-fluid {
    padding: 0 1rem;
  }
  .cid-sFExdaeHuh .image-block {
    width: 100% !important;
  }
}
.cid-sFEzaIo4WQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-sFEzaIo4WQ .mbr-section-subtitle {
  color: #767676;
}
.cid-sFEzaIo4WQ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sFEzaIo4WQ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-sFEzaIo4WQ .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-sFEzaIo4WQ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sFEzaIo4WQ .wrapper {
  padding: 2rem 1rem 1rem 1rem;
  background: #cccccc;
}
.cid-sFEzaIo4WQ .card-overlay {
  display: none;
}
.cid-sFEzaIo4WQ .mbr-section-title,
.cid-sFEzaIo4WQ .underline,
.cid-sFEzaIo4WQ .mbr-section-subtitle {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .cid-sFEzaIo4WQ .image-element:hover .card-overlay {
    opacity: .5;
    border-bottom-right-radius: 7rem;
  }
  .cid-sFEzaIo4WQ .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-sFEzaIo4WQ .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-sFEzaIo4WQ .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-sFEzaIo4WQ .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sFEzaIo4WQ .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sFEzaIo4WQ .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sFEzaIo4WQ .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sFEzaIo4WQ .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-sFEzaIo4WQ .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-sFEzaIo4WQ .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-sFEzaIo4WQ .underline .line {
    height: 2px;
  }
  .cid-sFEzaIo4WQ .card-title,
  .cid-sFEzaIo4WQ .underline,
  .cid-sFEzaIo4WQ .mbr-text,
  .cid-sFEzaIo4WQ .mbr-section-btn,
  .cid-sFEzaIo4WQ .mbr-section-subtitle,
  .cid-sFEzaIo4WQ .mbr-section-title {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .cid-sFEzaIo4WQ .main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .cid-sFEzaIo4WQ .mbr-section-title,
  .cid-sFEzaIo4WQ .underline,
  .cid-sFEzaIo4WQ .mbr-section-subtitle {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-sFEzaIo4WQ H3 {
  color: #fe7352;
  text-align: right;
}
.cid-sFEzaIo4WQ .mbr-text,
.cid-sFEzaIo4WQ .mbr-section-btn {
  color: #ffffff;
  text-align: right;
}
.cid-sCKkg9ac1k {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #808080;
}
.cid-sCKkg9ac1k .mbr-text,
.cid-sCKkg9ac1k blockquote {
  color: #232323;
}
.cid-sCKkg9ac1k .mbr-text {
  color: #efefef;
}
.cid-sCK9HPdUG6 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #808080;
}
.cid-sCK9HPdUG6 .mbr-text,
.cid-sCK9HPdUG6 blockquote {
  color: #767676;
}
.cid-sCK9HPdUG6 a:hover {
  text-decoration: underline;
}
.cid-sCJVEbnFIv {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sCJVEbnFIv .container-fluid {
  padding: 0 3rem;
}
.cid-sCJVEbnFIv .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-sCJVEbnFIv svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-sCJVEbnFIv .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-sCJVEbnFIv .blockquote-quote {
    text-align: left;
  }
  .cid-sCJVEbnFIv .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sCJVEbnFIv .mbr-section-title {
  color: #5a31fb;
}
.cid-sCJVEbnFIv a:hover {
  text-decoration: underline;
}
.cid-sCJVEbKnNO {
  background: #cccccc;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sCJVEbKnNO .container-fluid {
  padding: 0 3rem;
}
.cid-sCJVEbKnNO .image-block {
  position: relative;
  margin: auto;
}
.cid-sCJVEbKnNO .image-block img {
  width: 100%;
}
.cid-sCJVEbKnNO .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-sCJVEbKnNO .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-sCJVEbKnNO .container-fluid {
    padding: 0 1rem;
  }
  .cid-sCJVEbKnNO .image-block {
    width: 100% !important;
  }
}
.cid-sCJVEdxuau {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sCJVEdxuau .container-fluid {
  padding: 0 3rem;
}
.cid-sCJVEdxuau .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-sCJVEdxuau svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-sCJVEdxuau .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-sCJVEdxuau .blockquote-quote {
    text-align: left;
  }
  .cid-sCJVEdxuau .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sCJVEdxuau .mbr-section-title {
  color: #5a31fb;
}
.cid-sCJVEdLvrP {
  background: #cccccc;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sCJVEdLvrP .container-fluid {
  padding: 0 3rem;
}
.cid-sCJVEdLvrP .image-block {
  position: relative;
  margin: auto;
}
.cid-sCJVEdLvrP .image-block img {
  width: 100%;
}
.cid-sCJVEdLvrP .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-sCJVEdLvrP .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-sCJVEdLvrP .container-fluid {
    padding: 0 1rem;
  }
  .cid-sCJVEdLvrP .image-block {
    width: 100% !important;
  }
}
.cid-sCQFuWYXT7 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background2.jpg");
  overflow-x: hidden;
}
.cid-sCQFuWYXT7 p {
  color: #767676;
}
.cid-sCQFuWYXT7 .row-element,
.cid-sCQFuWYXT7 .image-element {
  padding: 0;
}
.cid-sCQFuWYXT7 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCQFuWYXT7 .image-element img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  object-position: center center;
}
.cid-sCQFuWYXT7 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sCQFuWYXT7 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sCQFuWYXT7 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sCQFuWYXT7 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sCQFuWYXT7 .text-content {
    padding: 2rem 1rem;
  }
  .cid-sCQFuWYXT7 .underline .line {
    height: 2px;
  }
  .cid-sCQFuWYXT7 .mbr-title,
  .cid-sCQFuWYXT7 .underline,
  .cid-sCQFuWYXT7 .mbr-text,
  .cid-sCQFuWYXT7 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sCQFuWYXT7 a:hover {
  text-decoration: underline;
}
.cid-sCQFuWYXT7 .mbr-title,
.cid-sCQFuWYXT7 .underline {
  text-align: left;
}
.cid-sCQFuWYXT7 .mbr-text,
.cid-sCQFuWYXT7 .mbr-section-btn {
  text-align: left;
}
.cid-t34314fprJ {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #e2e2e2;
}
.cid-t34314fprJ .mbr-text,
.cid-t34314fprJ blockquote {
  color: #232323;
}
.cid-t34314fprJ .mbr-text {
  color: #232323;
}
.cid-t343bQUpqe {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #e2e2e2;
  overflow-x: hidden;
}
.cid-t343bQUpqe .mbr-text,
.cid-t343bQUpqe blockquote {
  color: #767676;
}
.cid-t343bQUpqe a:hover {
  text-decoration: underline;
}
.cid-sCJVEeodNn {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #e2e2e2;
}
.cid-sCJVEeodNn .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-sCJVEeodNn .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sCJVEeodNn .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sCJVEeodNn .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-sCJVEeodNn .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #879a9f;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-sCJVEeodNn .icon-transition span:hover {
  background-color: #fe525b;
}
.cid-sCJVEeodNn .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-sCJVEeodNn .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-sCJVEeodNn .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-sCJVEeodNn .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tVLcAwXWAV .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tVLcAwXWAV .nav-item:focus,
.cid-tVLcAwXWAV .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tVLcAwXWAV .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tVLcAwXWAV .nav-item .nav-link {
    position: relative;
  }
  .cid-tVLcAwXWAV .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-tVLcAwXWAV .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-tVLcAwXWAV .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVLcAwXWAV .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-tVLcAwXWAV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVLcAwXWAV .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tVLcAwXWAV .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tVLcAwXWAV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tVLcAwXWAV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tVLcAwXWAV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVLcAwXWAV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVLcAwXWAV .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #03426a;
}
.cid-tVLcAwXWAV .navbar.opened {
  transition: all .3s;
  background: #03426a !important;
}
.cid-tVLcAwXWAV .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tVLcAwXWAV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVLcAwXWAV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVLcAwXWAV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tVLcAwXWAV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tVLcAwXWAV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVLcAwXWAV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVLcAwXWAV .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-tVLcAwXWAV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVLcAwXWAV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tVLcAwXWAV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tVLcAwXWAV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVLcAwXWAV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVLcAwXWAV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tVLcAwXWAV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVLcAwXWAV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVLcAwXWAV .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-tVLcAwXWAV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tVLcAwXWAV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVLcAwXWAV .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVLcAwXWAV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tVLcAwXWAV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVLcAwXWAV .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tVLcAwXWAV .navbar.navbar-short {
  background: #03426a !important;
  min-height: 60px;
}
.cid-tVLcAwXWAV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tVLcAwXWAV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tVLcAwXWAV .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tVLcAwXWAV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVLcAwXWAV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVLcAwXWAV .dropdown-item.active,
.cid-tVLcAwXWAV .dropdown-item:active {
  background-color: transparent;
}
.cid-tVLcAwXWAV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVLcAwXWAV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVLcAwXWAV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVLcAwXWAV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #03426a;
}
.cid-tVLcAwXWAV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVLcAwXWAV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVLcAwXWAV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVLcAwXWAV .navbar-buttons {
  text-align: center;
}
.cid-tVLcAwXWAV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tVLcAwXWAV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tVLcAwXWAV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tVLcAwXWAV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tVLcAwXWAV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tVLcAwXWAV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tVLcAwXWAV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tVLcAwXWAV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tVLcAwXWAV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tVLcAwXWAV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tVLcAwXWAV .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tVLcAwXWAV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVLcAwXWAV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tVLcAwXWAV .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tVLcAwXWAV .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVLcAwXWAV .navbar {
    height: 77px;
  }
  .cid-tVLcAwXWAV .navbar.opened {
    height: auto;
  }
  .cid-tVLcAwXWAV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVLcAxh10S {
  background-image: url("../../../assets/images/mbr-1920x960.jpg");
  overflow: hidden !important;
}
.cid-tVLcAxh10S .container-fluid {
  padding: 0 3rem;
}
.cid-tVLcAxh10S .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-tVLcAxh10S .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tVLcAxh10S .myunderline {
  text-decoration: underline;
}
.cid-tVLcAxh10S .mbr-section-subtitle,
.cid-tVLcAxh10S .mbr-section-btn {
  color: #ffffff;
}
.cid-tVLcAxzijG {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tVLcAxzijG .mbr-text,
.cid-tVLcAxzijG blockquote {
  color: #232323;
}
.cid-tVLcAxzijG body,
.cid-tVLcAxzijG textarea {
  font-family: Verdana, Sans-Serif;
  font-size: 14px;
}
.cid-tVLcAxzijG span.pflichtfeld {
  font-size: 12px;
  color: Red;
}
.cid-tVLcAxzijG span.hilfetext {
  font-size: 10px;
  font-style: Oblique;
}
.cid-tVLcAxzijG input[type=submit] {
  background-color: #cccccc;
  border: 1px solid #888888;
  border-radius: 30px;
  color: white;
  padding: 8px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}
.cid-tVLcAxzijG input[type=submit]:hover {
  background-color: #efefef;
  color: black;
}
.cid-tVLcAxzijG ::placeholder {
  color: #e2e2e2;
}
.cid-tVLcAxzijG :-ms-input-placeholder {
  color: #e2e2e2;
}
.cid-tVLcAxzijG ::-ms-input-placeholder {
  color: #e2e2e2;
}
.cid-tVLcAxG1rr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVLcAxG1rr .container-fluid {
  padding: 0 3rem;
}
.cid-tVLcAxG1rr .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-tVLcAxG1rr svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-tVLcAxG1rr .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-tVLcAxG1rr .blockquote-quote {
    text-align: left;
  }
  .cid-tVLcAxG1rr .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tVLcAxG1rr .mbr-text,
.cid-tVLcAxG1rr .blockquote-quote {
  text-align: left;
}
.cid-tVLcAxOrcD {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #cccccc;
  background: linear-gradient(0deg, #cccccc, #ffffff);
}
.cid-tVLcAxOrcD .counter-container {
  color: #767676;
}
.cid-tVLcAxOrcD .counter-container ul {
  margin-bottom: 0;
}
.cid-tVLcAxOrcD .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tVLcAxOrcD .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #8264fd;
  background: linear-gradient(135deg, #8264fd, #ffa0a4);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
  content: '✓';
}
.cid-tVLcAxOrcD .mbr-text UL {
  color: #000000;
}
.cid-tVLcAxYyJc {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #e2e2e2;
}
.cid-tVLcAxYyJc .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-tVLcAxYyJc .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tVLcAxYyJc .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tVLcAxYyJc .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-tVLcAxYyJc .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #879a9f;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tVLcAxYyJc .icon-transition span:hover {
  background-color: #fe525b;
}
.cid-tVLcAxYyJc .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-tVLcAxYyJc .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-tVLcAxYyJc .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-tVLcAxYyJc .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tZgfEKVu6j .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZgfEKVu6j .nav-item:focus,
.cid-tZgfEKVu6j .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tZgfEKVu6j .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tZgfEKVu6j .nav-item .nav-link {
    position: relative;
  }
  .cid-tZgfEKVu6j .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-tZgfEKVu6j .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-tZgfEKVu6j .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZgfEKVu6j .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-tZgfEKVu6j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZgfEKVu6j .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tZgfEKVu6j .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tZgfEKVu6j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZgfEKVu6j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZgfEKVu6j .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZgfEKVu6j .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZgfEKVu6j .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #03426a;
}
.cid-tZgfEKVu6j .navbar.opened {
  transition: all .3s;
  background: #03426a !important;
}
.cid-tZgfEKVu6j .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZgfEKVu6j .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZgfEKVu6j .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZgfEKVu6j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZgfEKVu6j .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZgfEKVu6j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZgfEKVu6j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZgfEKVu6j .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-tZgfEKVu6j .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZgfEKVu6j .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZgfEKVu6j .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZgfEKVu6j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZgfEKVu6j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZgfEKVu6j .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZgfEKVu6j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZgfEKVu6j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZgfEKVu6j .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-tZgfEKVu6j .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZgfEKVu6j .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZgfEKVu6j .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZgfEKVu6j .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZgfEKVu6j .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZgfEKVu6j .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZgfEKVu6j .navbar.navbar-short {
  background: #03426a !important;
  min-height: 60px;
}
.cid-tZgfEKVu6j .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZgfEKVu6j .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZgfEKVu6j .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZgfEKVu6j .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZgfEKVu6j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZgfEKVu6j .dropdown-item.active,
.cid-tZgfEKVu6j .dropdown-item:active {
  background-color: transparent;
}
.cid-tZgfEKVu6j .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZgfEKVu6j .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZgfEKVu6j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZgfEKVu6j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #03426a;
}
.cid-tZgfEKVu6j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZgfEKVu6j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZgfEKVu6j ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tZgfEKVu6j .navbar-buttons {
  text-align: center;
}
.cid-tZgfEKVu6j button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tZgfEKVu6j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tZgfEKVu6j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZgfEKVu6j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZgfEKVu6j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZgfEKVu6j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZgfEKVu6j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZgfEKVu6j nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZgfEKVu6j nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZgfEKVu6j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZgfEKVu6j .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZgfEKVu6j a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tZgfEKVu6j .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZgfEKVu6j .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tZgfEKVu6j .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZgfEKVu6j .navbar {
    height: 77px;
  }
  .cid-tZgfEKVu6j .navbar.opened {
    height: auto;
  }
  .cid-tZgfEKVu6j .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZgfELg8UB {
  background-image: url("../../../assets/images/mbr-1920x602.jpg");
  overflow: hidden !important;
}
.cid-tZgfELg8UB .container-fluid {
  padding: 0 3rem;
}
.cid-tZgfELg8UB .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-tZgfELg8UB .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tZgfELg8UB .myunderline {
  text-decoration: underline;
}
.cid-tZgfELg8UB .mbr-section-subtitle,
.cid-tZgfELg8UB .mbr-section-btn {
  color: #ffffff;
}
.cid-tZgfELwkDh {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #ffffff;
  overflow-x: hidden;
}
.cid-tZgfELwkDh .mbr-text,
.cid-tZgfELwkDh blockquote {
  color: #232323;
}
.cid-tZgfELDFL5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-tZgfELDFL5 .mbr-text,
.cid-tZgfELDFL5 blockquote {
  color: #232323;
}
.cid-tZgfELLEoA {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #e2e2e2;
}
.cid-tZgfELLEoA .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-tZgfELLEoA .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tZgfELLEoA .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tZgfELLEoA .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-tZgfELLEoA .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #879a9f;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tZgfELLEoA .icon-transition span:hover {
  background-color: #fe525b;
}
.cid-tZgfELLEoA .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-tZgfELLEoA .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-tZgfELLEoA .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-tZgfELLEoA .mbr-text {
    margin-bottom: 1.5rem;
  }
}
