body {
  font-family: Poppins;
  font-style: normal;
  line-height: 1.5;
}


.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'FuturaMediumCondensedBT';
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'FuturaMediumCondensedBT';
  font-size: 3rem;
}
.display-4 {
  font-family: 'FuturaMediumCondensedBT';
  font-size: 1rem;
}
.display-5 {
  font-family: 'FuturaMediumCondensedBT';
  font-size: 2rem;
}
.display-7 {
  font-family: 'FuturaMediumCondensedBT';
  font-size: 1.4rem;
}
/* ---- 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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  font-weight: 500;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,2s;
  transition-timing-function: ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn-sm {
  border: 1px solid;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #477187 !important;
}
.bg-success {
  background-color: #477187 !important;
}
.bg-info {
  background-color: #cccccc !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #2d4755;
  border-color: #2d4755;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #477187;
  border-color: #477187;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #2d4755;
  border-color: #2d4755;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2d4755 !important;
  border-color: #2d4755 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a6a6a6;
  border-color: #a6a6a6;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #cccccc;
  border-color: #cccccc;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #a6a6a6;
  border-color: #a6a6a6;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #2d4755;
  border-color: #2d4755;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #477187;
  border-color: #477187;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #2d4755;
  border-color: #2d4755;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2d4755 !important;
  border-color: #2d4755 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e;
  border-color: #82786e;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b;
  border-color: #59524b;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #617479;
  border-color: #617479;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f;
  border-color: #879a9f;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479;
  border-color: #617479;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333;
  border-color: #333333;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #ffffff !important;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #ffffff !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #477187;
  border-color: #477187;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #243944;
  color: #243944 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #477187;
  border-color: #477187;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #477187 !important;
  border-color: #477187 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #999999;
  color: #999999 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #cccccc !important;
  border-color: #cccccc !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #477187;
  border-color: #477187;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #243944;
  color: #243944 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #477187;
  border-color: #477187;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #477187 !important;
  border-color: #477187 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
}
.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 {
  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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #879a9f;
  border-color: #879a9f;
}
.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 {
  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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
}
.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 {
  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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
}
.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 {
  transform: scale(10);
}
.text-primary {
  color: #477187 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #477187 !important;
}
.text-info {
  color: #cccccc !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: #243944 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #243944 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #999999 !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: #477187;
}
.alert-info {
  background-color: #cccccc;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.mbr-gallery-filter li.active .btn {
  background-color: #477187;
  border-color: #477187;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #477187;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #8bafc2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #8bafc2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #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 i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'FuturaMediumCondensedBT';
  font-size: 1.4rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #477187;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #477187;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #477187;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #477187;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #477187;
}
/* Headers*/
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.cid-qCoqTtxbR6 {
  padding-top: 135px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/titelbild-1570x1065.jpg");
}
.cid-qCoqTtxbR6 p {
  color: #767676;
}
.cid-qCoqTtxbR6 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qCoqTtxbR6 .main {
  justify-content: space-between;
}
.cid-qCoqTtxbR6 .row-element,
.cid-qCoqTtxbR6 .image-element {
  padding: 0;
}
.cid-qCoqTtxbR6 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qCoqTtxbR6 .image-element img {
  width: 100%;
  height: 100%;
  object-position: center center;
}
.cid-qCoqTtxbR6 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qCoqTtxbR6 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #477187, #ffffff);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qCoqTtxbR6 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qCoqTtxbR6 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qCoqTtxbR6 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qCoqTtxbR6 .underline .line {
    height: 2px;
  }
  .cid-qCoqTtxbR6 .mbr-title,
  .cid-qCoqTtxbR6 .underline,
  .cid-qCoqTtxbR6 .mbr-text,
  .cid-qCoqTtxbR6 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qCoqTtxbR6 section {
  background-position: right 50%;
}
.cid-qCorHaPteQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qCorHaPteQ p {
  color: #477187;
  line-height: 1.4em;
}
.cid-qCorHaPteQ .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qCorHaPteQ .row-element,
.cid-qCorHaPteQ .image-element {
  padding: 0;
}
.cid-qCorHaPteQ .image-element {
  display: flex;
  justify-content: center;
}
.cid-qCorHaPteQ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qCorHaPteQ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qCorHaPteQ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #477187, #ffffff);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qCorHaPteQ .text-content {
    padding: 6rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qCorHaPteQ .text-content {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-qCorHaPteQ .text-content {
    padding: 3rem 1rem;
  }
  .cid-qCorHaPteQ .underline .line {
    height: 2px;
  }
  .cid-qCorHaPteQ .mbr-title,
  .cid-qCorHaPteQ .underline,
  .cid-qCorHaPteQ .mbr-text,
  .cid-qCorHaPteQ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qCorHaPteQ .mbr-text,
.cid-qCorHaPteQ .mbr-section-btn {
  color: #477187;
  text-align: left;
}
.cid-qCorHaPteQ .logo {
  max-width: 190px;
  margin: 20px auto;
  text-align: center;
}
.cid-qCorHaPteQ .mbr-text,
.cid-qCorHaPteQ .mbr-section-btn P {
  color: #477187;
}
.cid-qCorHaPteQ .mb-logo {
  max-width: 180px;
  margin: 2rem auto;
}
.cid-qCrhtH2zZ1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bild-drivtommer-2000x971.jpg");
}
.cid-qCrhtH2zZ1 p {
  color: #FFF;
  line-height: 1.4em;
}
.cid-qCrhtH2zZ1 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qCrhtH2zZ1 .row-element,
.cid-qCrhtH2zZ1 .image-element {
  padding: 0;
}
.cid-qCrhtH2zZ1 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qCrhtH2zZ1 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qCrhtH2zZ1 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qCrhtH2zZ1 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #477187, #ffffff);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qCrhtH2zZ1 .text-content {
    padding: 6rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qCrhtH2zZ1 .text-content {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-qCrhtH2zZ1 .underline .line {
    height: 2px;
  }
  .cid-qCrhtH2zZ1 .mbr-title,
  .cid-qCrhtH2zZ1 .underline,
  .cid-qCrhtH2zZ1 .mbr-text,
  .cid-qCrhtH2zZ1 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-qCrhtH2zZ1 P {
    color: #FFF;
  }
}
.cid-qCrhtH2zZ1 .scandinavian {
  align-self: center;
}
.cid-qCrhtH2zZ1 .scandinavian p {
  color: #C4C7C7;
  font-size: 2.8rem;
}
.cid-qCrhtH2zZ1 .mbr-text,
.cid-qCrhtH2zZ1 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-qCrhtH2zZ1 .mb-logo {
  max-width: 180px;
  float: right;
  margin: 30% 0 80px;
}
.cid-qCrIvT45s6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/simple-elegance-bg-1667x809.jpg");
}
.cid-qCrIvT45s6 p {
  color: #767676;
}
.cid-qCrIvT45s6 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qCrIvT45s6 .row-element,
.cid-qCrIvT45s6 .image-element {
  padding: 0;
}
.cid-qCrIvT45s6 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qCrIvT45s6 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qCrIvT45s6 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qCrIvT45s6 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #477187, #ffffff);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qCrIvT45s6 .text-content {
    padding: 6rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qCrIvT45s6 .text-content {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-qCrIvT45s6 .text-content {
    padding: 3rem 1rem;
  }
  .cid-qCrIvT45s6 .underline .line {
    height: 2px;
  }
  .cid-qCrIvT45s6 .mbr-title,
  .cid-qCrIvT45s6 .underline,
  .cid-qCrIvT45s6 .mbr-text,
  .cid-qCrIvT45s6 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qCrIvT45s6 .mbr-text,
.cid-qCrIvT45s6 .mbr-section-btn {
  color: #477187;
  text-align: left;
}
.cid-qCoFVaOSjP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qCoFVaOSjP .container-fluid {
  padding: 0 3rem;
}
.cid-qCoFVaOSjP .media-container-column {
  padding: 0 2rem;
}
.cid-qCoFVaOSjP .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qCoFVaOSjP .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qCsmecRkVc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #477187;
}
.cid-qCsmecRkVc .container-fluid {
  padding: 0 3rem;
}
.cid-qCsmecRkVc .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #477187, #ffffff);
  display: inline-block;
}
.cid-qCsmecRkVc .card .card-wrapper .card-img {
  overflow: hidden;
  marginbottom: 1rem;
  z-index: 1;
}
.cid-qCsmecRkVc .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qCsmecRkVc .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qCsmecRkVc .card-wrapper {
  margin: 0 12%;
}
.cid-qCsmecRkVc .text-row {
  align-self: center;
}
@media (max-width: 767px) {
  .cid-qCsmecRkVc .container-fluid {
    padding: 0 1rem;
  }
  .cid-qCsmecRkVc .text-row {
    padding-bottom: 1rem;
  }
}
.cid-qCsmecRkVc .mbr-text,
.cid-qCsmecRkVc .card-btn {
  text-align: center;
  margin-top: 2rem;
}
.cid-qCsmecRkVc .display-7 {
  font-size: 1.2rem;
}
.cid-qCsr77jb0D {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-719x1080.jpg");
}
.cid-qCsr77jb0D .container-fluid {
  padding: 0 3rem;
}
.cid-qCsr77jb0D .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #477187, #ffffff);
  display: inline-block;
}
.cid-qCsr77jb0D .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-qCsr77jb0D .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qCsr77jb0D .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qCsr77jb0D .card-wrapper {
  margin: 0 2%;
}
.cid-qCsr77jb0D .text-row {
  align-self: center;
}
@media (max-width: 767px) {
  .cid-qCsr77jb0D .container-fluid {
    padding: 0 1rem;
  }
  .cid-qCsr77jb0D .text-row {
    padding-bottom: 1rem;
  }
}
.cid-qCsr77jb0D .mbr-text,
.cid-qCsr77jb0D .card-btn {
  text-align: center;
  margin-top: 2rem;
}
.cid-qCsr77jb0D .display-7 {
  font-size: 1.2rem;
}
.cid-qCsr8cdGFc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #477187;
}
.cid-qCsr8cdGFc .container-fluid {
  padding: 0 3rem;
}
.cid-qCsr8cdGFc .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #477187, #ffffff);
  display: inline-block;
}
.cid-qCsr8cdGFc .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-qCsr8cdGFc .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qCsr8cdGFc .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qCsr8cdGFc .card-wrapper {
  margin: 0 12%;
}
.cid-qCsr8cdGFc .text-row {
  align-self: center;
}
@media (max-width: 767px) {
  .cid-qCsr8cdGFc .container-fluid {
    padding: 0 1rem;
  }
  .cid-qCsr8cdGFc .text-row {
    padding-bottom: 1rem;
  }
}
.cid-qCsr8cdGFc .mbr-text,
.cid-qCsr8cdGFc .card-btn {
  text-align: center;
  margin-top: 2rem;
}
.cid-qCsr8cdGFc .display-7 {
  font-size: 1.2rem;
}
.cid-qCtS2xhxg3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #6b94ab;
}
.cid-qCtS2xhxg3 .container-fluid {
  padding: 0 3rem;
}
.cid-qCtS2xhxg3 .media-container-column {
  padding: 0 2rem;
}
.cid-qCtS2xhxg3 .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qCtS2xhxg3 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qCrlHSApdp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #477187;
}
.cid-qCrlHSApdp .mbr-section-title span {
  display: block;
}
.cid-qCrlHSApdp .first-column,
.cid-qCrlHSApdp .second-column {
  margin-bottom: 1rem;
}
.cid-qCrlHSApdp .first-column ul,
.cid-qCrlHSApdp .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qCrlHSApdp .first-column ul li,
.cid-qCrlHSApdp .second-column ul li {
  margin-bottom: 1rem;
}
.cid-qCrlHSApdp .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-qCrlHSApdp .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline;
}
.cid-qCrlHSApdp .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-qCrlHSApdp .card-support {
    text-align: center;
  }
}
.cid-qCrlHSApdp .first-column-item {
  color: #ffffff;
}
.cid-qCrlHSApdp ul.footer {
  display: flex;
  flex-direction: row;
}
.cid-qCozWFR8Br .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-qCozWFR8Br li a {
  text-transform: uppercase;
}
.cid-qCozWFR8Br .nav-item:focus,
.cid-qCozWFR8Br .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qCozWFR8Br .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qCozWFR8Br .nav-item .nav-link {
    position: relative;
  }
  .cid-qCozWFR8Br .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #477187, #ffffff);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qCozWFR8Br .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qCozWFR8Br .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qCozWFR8Br .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-qCozWFR8Br .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qCozWFR8Br .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qCozWFR8Br .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-qCozWFR8Br .navbar .mbr-overlay {
  transition: all .3s;
  background: #477187;
  background: none;
}
.cid-qCozWFR8Br .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #477187 !important;
}
.cid-qCozWFR8Br .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qCozWFR8Br .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-qCozWFR8Br .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.show,
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qCozWFR8Br .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-qCozWFR8Br .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qCozWFR8Br .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qCozWFR8Br .navbar .navbar-collapse.show,
  .cid-qCozWFR8Br .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-qCozWFR8Br .navbar .navbar-collapse.show .brand-container,
  .cid-qCozWFR8Br .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-qCozWFR8Br .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qCozWFR8Br .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-qCozWFR8Br .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qCozWFR8Br .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qCozWFR8Br .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-qCozWFR8Br .navbar.navbar-short {
  min-height: 60px;
}
.cid-qCozWFR8Br .navbar.navbar-short .mbr-overlay {
  background: #477187 !important;
}
.cid-qCozWFR8Br .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qCozWFR8Br .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qCozWFR8Br .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qCozWFR8Br .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qCozWFR8Br .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qCozWFR8Br .dropdown-item.active,
.cid-qCozWFR8Br .dropdown-item:active {
  background-color: transparent;
}
.cid-qCozWFR8Br .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qCozWFR8Br .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qCozWFR8Br .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qCozWFR8Br .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #477187;
}
.cid-qCozWFR8Br .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qCozWFR8Br .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCozWFR8Br ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qCozWFR8Br .navbar-buttons {
  margin-left: auto;
}
.cid-qCozWFR8Br button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCozWFR8Br .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qCozWFR8Br a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qCozWFR8Br .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qCozWFR8Br .right-menu,
.cid-qCozWFR8Br .left-menu {
  flex-basis: 45%;
}
.cid-qCozWFR8Br .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-qCozWFR8Br .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-qCozWFR8Br .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-qCozWFR8Br .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-qCozWFR8Br .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-qCozWFR8Br .card-wrapper {
  z-index: 3;
}
.cid-qCozWFR8Br .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-qCozWFR8Br .full-link {
    height: 2.7rem;
  }
  .cid-qCozWFR8Br .navbar-collapse {
    padding-top: 0;
  }
}
.cid-qCozWFR8Br .lang {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: auto;
  min-height: 138px;
  max-height: 100%;
  z-index: 1500;
  background-color: #477187;
}
.cid-qCozWFR8Br .lang ul {
  margin: 58px 0 0 15%;
}
.cid-qCozWFR8Br .lang a {
  display: block;
  margin: 0 0 0 15%;
  color: #FFF;
  font-size: 0.77rem;
}
.cid-qCozWFR8Br .navbar-brand .navbar-logo img {
  max-width: 190px;
  margin-top: 12%;
}
.cid-qCozWFR8Br .navbar .navbar-collapse {
  margin: 0 0 0 20%;
}
.cid-qCuVO2bpzK {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #477187;
}
.cid-qCuVO2bpzK .container-fluid {
  padding: 0 3rem;
}
.cid-qCuVO2bpzK .media-container-column {
  padding: 0 2rem;
}
.cid-qCuVO2bpzK .mbr-section-title {
  display: inline-block;
  position: relative;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-qCuVO2bpzK .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qCuVO2bpzK .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-qCuLsCUI2K {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #477187;
}
.cid-qCuLsCUI2K .mbr-text,
.cid-qCuLsCUI2K blockquote {
  color: #232323;
}
.cid-qCuLsCUI2K .mbr-text DIV {
  color: #ffffff;
}
.cid-qCuLsCUI2K .mbr-text H1 {
  color: #ffffff;
  margin: 0 0 1.5em;
}
.cid-qCtRAxgsuv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #6b94ab;
}
.cid-qCtRAxgsuv .container-fluid {
  padding: 0 3rem;
}
.cid-qCtRAxgsuv .media-container-column {
  padding: 0 2rem;
}
.cid-qCtRAxgsuv .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qCtRAxgsuv .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qCozWFR8Br .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-qCozWFR8Br li a {
  text-transform: uppercase;
}
.cid-qCozWFR8Br .nav-item:focus,
.cid-qCozWFR8Br .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qCozWFR8Br .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qCozWFR8Br .nav-item .nav-link {
    position: relative;
  }
  .cid-qCozWFR8Br .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #477187, #ffffff);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qCozWFR8Br .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qCozWFR8Br .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qCozWFR8Br .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-qCozWFR8Br .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qCozWFR8Br .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qCozWFR8Br .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-qCozWFR8Br .navbar .mbr-overlay {
  transition: all .3s;
  background: #477187;
  background: none;
}
.cid-qCozWFR8Br .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #477187 !important;
}
.cid-qCozWFR8Br .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qCozWFR8Br .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-qCozWFR8Br .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.show,
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qCozWFR8Br .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-qCozWFR8Br .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qCozWFR8Br .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qCozWFR8Br .navbar .navbar-collapse.show,
  .cid-qCozWFR8Br .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-qCozWFR8Br .navbar .navbar-collapse.show .brand-container,
  .cid-qCozWFR8Br .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-qCozWFR8Br .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qCozWFR8Br .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-qCozWFR8Br .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qCozWFR8Br .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qCozWFR8Br .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-qCozWFR8Br .navbar.navbar-short {
  min-height: 60px;
}
.cid-qCozWFR8Br .navbar.navbar-short .mbr-overlay {
  background: #477187 !important;
}
.cid-qCozWFR8Br .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qCozWFR8Br .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qCozWFR8Br .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qCozWFR8Br .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qCozWFR8Br .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qCozWFR8Br .dropdown-item.active,
.cid-qCozWFR8Br .dropdown-item:active {
  background-color: transparent;
}
.cid-qCozWFR8Br .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qCozWFR8Br .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qCozWFR8Br .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qCozWFR8Br .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #477187;
}
.cid-qCozWFR8Br .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qCozWFR8Br .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCozWFR8Br ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qCozWFR8Br .navbar-buttons {
  margin-left: auto;
}
.cid-qCozWFR8Br button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCozWFR8Br .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qCozWFR8Br a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qCozWFR8Br .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qCozWFR8Br .right-menu,
.cid-qCozWFR8Br .left-menu {
  flex-basis: 45%;
}
.cid-qCozWFR8Br .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-qCozWFR8Br .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-qCozWFR8Br .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-qCozWFR8Br .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-qCozWFR8Br .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-qCozWFR8Br .card-wrapper {
  z-index: 3;
}
.cid-qCozWFR8Br .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-qCozWFR8Br .full-link {
    height: 2.7rem;
  }
  .cid-qCozWFR8Br .navbar-collapse {
    padding-top: 0;
  }
}
.cid-qCozWFR8Br .lang {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: auto;
  min-height: 138px;
  max-height: 100%;
  z-index: 1500;
  background-color: #477187;
}
.cid-qCozWFR8Br .lang ul {
  margin: 58px 0 0 15%;
}
.cid-qCozWFR8Br .lang a {
  display: block;
  margin: 0 0 0 15%;
  color: #FFF;
  font-size: 0.77rem;
}
.cid-qCozWFR8Br .navbar-brand .navbar-logo img {
  max-width: 190px;
  margin-top: 12%;
}
.cid-qCozWFR8Br .navbar .navbar-collapse {
  margin: 0 0 0 20%;
}
.cid-qCrlHSApdp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #477187;
}
.cid-qCrlHSApdp .mbr-section-title span {
  display: block;
}
.cid-qCrlHSApdp .first-column,
.cid-qCrlHSApdp .second-column {
  margin-bottom: 1rem;
}
.cid-qCrlHSApdp .first-column ul,
.cid-qCrlHSApdp .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qCrlHSApdp .first-column ul li,
.cid-qCrlHSApdp .second-column ul li {
  margin-bottom: 1rem;
}
.cid-qCrlHSApdp .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-qCrlHSApdp .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline;
}
.cid-qCrlHSApdp .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-qCrlHSApdp .card-support {
    text-align: center;
  }
}
.cid-qCrlHSApdp .first-column-item {
  color: #ffffff;
}
.cid-qCrlHSApdp ul.footer {
  display: flex;
  flex-direction: row;
}
.cid-qCuVO2bpzK {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #477187;
}
.cid-qCuVO2bpzK .container-fluid {
  padding: 0 3rem;
}
.cid-qCuVO2bpzK .media-container-column {
  padding: 0 2rem;
}
.cid-qCuVO2bpzK .mbr-section-title {
  display: inline-block;
  position: relative;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-qCuVO2bpzK .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qCuVO2bpzK .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-qCuLsCUI2K {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #477187;
}
.cid-qCuLsCUI2K .mbr-text,
.cid-qCuLsCUI2K blockquote {
  color: #232323;
}
.cid-qCuLsCUI2K .mbr-text DIV {
  color: #ffffff;
}
.cid-qCuLsCUI2K .mbr-text H1 {
  color: #ffffff;
  margin: 0 0 1.5em;
}
.cid-qCtRAxgsuv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #6b94ab;
}
.cid-qCtRAxgsuv .container-fluid {
  padding: 0 3rem;
}
.cid-qCtRAxgsuv .media-container-column {
  padding: 0 2rem;
}
.cid-qCtRAxgsuv .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qCtRAxgsuv .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qCozWFR8Br .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-qCozWFR8Br li a {
  text-transform: uppercase;
}
.cid-qCozWFR8Br .nav-item:focus,
.cid-qCozWFR8Br .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qCozWFR8Br .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qCozWFR8Br .nav-item .nav-link {
    position: relative;
  }
  .cid-qCozWFR8Br .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #477187, #ffffff);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qCozWFR8Br .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qCozWFR8Br .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qCozWFR8Br .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-qCozWFR8Br .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qCozWFR8Br .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qCozWFR8Br .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-qCozWFR8Br .navbar .mbr-overlay {
  transition: all .3s;
  background: #477187;
  background: none;
}
.cid-qCozWFR8Br .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #477187 !important;
}
.cid-qCozWFR8Br .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qCozWFR8Br .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-qCozWFR8Br .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.show,
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qCozWFR8Br .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-qCozWFR8Br .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qCozWFR8Br .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qCozWFR8Br .navbar .navbar-collapse.show,
  .cid-qCozWFR8Br .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-qCozWFR8Br .navbar .navbar-collapse.show .brand-container,
  .cid-qCozWFR8Br .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-qCozWFR8Br .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qCozWFR8Br .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-qCozWFR8Br .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qCozWFR8Br .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qCozWFR8Br .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-qCozWFR8Br .navbar.navbar-short {
  min-height: 60px;
}
.cid-qCozWFR8Br .navbar.navbar-short .mbr-overlay {
  background: #477187 !important;
}
.cid-qCozWFR8Br .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qCozWFR8Br .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qCozWFR8Br .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qCozWFR8Br .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qCozWFR8Br .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qCozWFR8Br .dropdown-item.active,
.cid-qCozWFR8Br .dropdown-item:active {
  background-color: transparent;
}
.cid-qCozWFR8Br .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qCozWFR8Br .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qCozWFR8Br .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qCozWFR8Br .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #477187;
}
.cid-qCozWFR8Br .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qCozWFR8Br .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCozWFR8Br ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qCozWFR8Br .navbar-buttons {
  margin-left: auto;
}
.cid-qCozWFR8Br button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCozWFR8Br .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qCozWFR8Br a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qCozWFR8Br .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qCozWFR8Br .right-menu,
.cid-qCozWFR8Br .left-menu {
  flex-basis: 45%;
}
.cid-qCozWFR8Br .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-qCozWFR8Br .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-qCozWFR8Br .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-qCozWFR8Br .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-qCozWFR8Br .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-qCozWFR8Br .card-wrapper {
  z-index: 3;
}
.cid-qCozWFR8Br .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-qCozWFR8Br .full-link {
    height: 2.7rem;
  }
  .cid-qCozWFR8Br .navbar-collapse {
    padding-top: 0;
  }
}
.cid-qCozWFR8Br .lang {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: auto;
  min-height: 138px;
  max-height: 100%;
  z-index: 1500;
  background-color: #477187;
}
.cid-qCozWFR8Br .lang ul {
  margin: 58px 0 0 15%;
}
.cid-qCozWFR8Br .lang a {
  display: block;
  margin: 0 0 0 15%;
  color: #FFF;
  font-size: 0.77rem;
}
.cid-qCozWFR8Br .navbar-brand .navbar-logo img {
  max-width: 190px;
  margin-top: 12%;
}
.cid-qCozWFR8Br .navbar .navbar-collapse {
  margin: 0 0 0 20%;
}
.cid-qCrlHSApdp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #477187;
}
.cid-qCrlHSApdp .mbr-section-title span {
  display: block;
}
.cid-qCrlHSApdp .first-column,
.cid-qCrlHSApdp .second-column {
  margin-bottom: 1rem;
}
.cid-qCrlHSApdp .first-column ul,
.cid-qCrlHSApdp .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qCrlHSApdp .first-column ul li,
.cid-qCrlHSApdp .second-column ul li {
  margin-bottom: 1rem;
}
.cid-qCrlHSApdp .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-qCrlHSApdp .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline;
}
.cid-qCrlHSApdp .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-qCrlHSApdp .card-support {
    text-align: center;
  }
}
.cid-qCrlHSApdp .first-column-item {
  color: #ffffff;
}
.cid-qCrlHSApdp ul.footer {
  display: flex;
  flex-direction: row;
}
.cid-qCoqTtxbR6 {
  padding-top: 135px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/titelbild-1570x1065.jpg");
}
.cid-qCoqTtxbR6 p {
  color: #767676;
}
.cid-qCoqTtxbR6 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qCoqTtxbR6 .main {
  justify-content: space-between;
}
.cid-qCoqTtxbR6 .row-element,
.cid-qCoqTtxbR6 .image-element {
  padding: 0;
}
.cid-qCoqTtxbR6 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qCoqTtxbR6 .image-element img {
  width: 100%;
  height: 100%;
  object-position: center center;
}
.cid-qCoqTtxbR6 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qCoqTtxbR6 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #477187, #ffffff);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qCoqTtxbR6 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qCoqTtxbR6 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qCoqTtxbR6 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qCoqTtxbR6 .underline .line {
    height: 2px;
  }
  .cid-qCoqTtxbR6 .mbr-title,
  .cid-qCoqTtxbR6 .underline,
  .cid-qCoqTtxbR6 .mbr-text,
  .cid-qCoqTtxbR6 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qCoqTtxbR6 section {
  background-position: right 50%;
}
.cid-qCorHaPteQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qCorHaPteQ p {
  color: #477187;
  line-height: 1.4em;
}
.cid-qCorHaPteQ .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qCorHaPteQ .row-element,
.cid-qCorHaPteQ .image-element {
  padding: 0;
}
.cid-qCorHaPteQ .image-element {
  display: flex;
  justify-content: center;
}
.cid-qCorHaPteQ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qCorHaPteQ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qCorHaPteQ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #477187, #ffffff);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qCorHaPteQ .text-content {
    padding: 6rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qCorHaPteQ .text-content {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-qCorHaPteQ .text-content {
    padding: 3rem 1rem;
  }
  .cid-qCorHaPteQ .underline .line {
    height: 2px;
  }
  .cid-qCorHaPteQ .mbr-title,
  .cid-qCorHaPteQ .underline,
  .cid-qCorHaPteQ .mbr-text,
  .cid-qCorHaPteQ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qCorHaPteQ .mbr-text,
.cid-qCorHaPteQ .mbr-section-btn {
  color: #477187;
  text-align: left;
}
.cid-qCorHaPteQ .logo {
  max-width: 190px;
  margin: 20px auto;
  text-align: center;
}
.cid-qCorHaPteQ .mbr-text,
.cid-qCorHaPteQ .mbr-section-btn P {
  color: #477187;
}
.cid-qCorHaPteQ .mb-logo {
  max-width: 180px;
  margin: 2rem auto;
}
.cid-qCrhtH2zZ1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bild-drivtommer-2000x971.jpg");
}
.cid-qCrhtH2zZ1 p {
  color: #FFF;
  line-height: 1.4em;
}
.cid-qCrhtH2zZ1 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qCrhtH2zZ1 .row-element,
.cid-qCrhtH2zZ1 .image-element {
  padding: 0;
}
.cid-qCrhtH2zZ1 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qCrhtH2zZ1 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qCrhtH2zZ1 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qCrhtH2zZ1 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #477187, #ffffff);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qCrhtH2zZ1 .text-content {
    padding: 6rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qCrhtH2zZ1 .text-content {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-qCrhtH2zZ1 .underline .line {
    height: 2px;
  }
  .cid-qCrhtH2zZ1 .mbr-title,
  .cid-qCrhtH2zZ1 .underline,
  .cid-qCrhtH2zZ1 .mbr-text,
  .cid-qCrhtH2zZ1 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-qCrhtH2zZ1 P {
    color: #FFF;
  }
}
.cid-qCrhtH2zZ1 .scandinavian {
  align-self: center;
}
.cid-qCrhtH2zZ1 .scandinavian p {
  color: #C4C7C7;
  font-size: 2.8rem;
}
.cid-qCrhtH2zZ1 .mbr-text,
.cid-qCrhtH2zZ1 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-qCrhtH2zZ1 .mb-logo {
  max-width: 180px;
  float: right;
  margin: 30% 0 80px;
}
.cid-qCrIvT45s6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/simple-elegance-bg-1667x809.jpg");
}
.cid-qCrIvT45s6 p {
  color: #767676;
}
.cid-qCrIvT45s6 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qCrIvT45s6 .row-element,
.cid-qCrIvT45s6 .image-element {
  padding: 0;
}
.cid-qCrIvT45s6 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qCrIvT45s6 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qCrIvT45s6 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qCrIvT45s6 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #477187, #ffffff);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qCrIvT45s6 .text-content {
    padding: 6rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qCrIvT45s6 .text-content {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-qCrIvT45s6 .text-content {
    padding: 3rem 1rem;
  }
  .cid-qCrIvT45s6 .underline .line {
    height: 2px;
  }
  .cid-qCrIvT45s6 .mbr-title,
  .cid-qCrIvT45s6 .underline,
  .cid-qCrIvT45s6 .mbr-text,
  .cid-qCrIvT45s6 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qCrIvT45s6 .mbr-text,
.cid-qCrIvT45s6 .mbr-section-btn {
  color: #477187;
  text-align: left;
}
.cid-qCoFVaOSjP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qCoFVaOSjP .container-fluid {
  padding: 0 3rem;
}
.cid-qCoFVaOSjP .media-container-column {
  padding: 0 2rem;
}
.cid-qCoFVaOSjP .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qCoFVaOSjP .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qCsmecRkVc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #477187;
}
.cid-qCsmecRkVc .container-fluid {
  padding: 0 3rem;
}
.cid-qCsmecRkVc .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #477187, #ffffff);
  display: inline-block;
}
.cid-qCsmecRkVc .card .card-wrapper .card-img {
  overflow: hidden;
  marginbottom: 1rem;
  z-index: 1;
}
.cid-qCsmecRkVc .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qCsmecRkVc .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qCsmecRkVc .card-wrapper {
  margin: 0 12%;
}
.cid-qCsmecRkVc .text-row {
  align-self: center;
}
@media (max-width: 767px) {
  .cid-qCsmecRkVc .container-fluid {
    padding: 0 1rem;
  }
  .cid-qCsmecRkVc .text-row {
    padding-bottom: 1rem;
  }
}
.cid-qCsmecRkVc .mbr-text,
.cid-qCsmecRkVc .card-btn {
  text-align: center;
  margin-top: 2rem;
}
.cid-qCsmecRkVc .display-7 {
  font-size: 1.2rem;
}
.cid-qCsr77jb0D {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-719x1080.jpg");
}
.cid-qCsr77jb0D .container-fluid {
  padding: 0 3rem;
}
.cid-qCsr77jb0D .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #477187, #ffffff);
  display: inline-block;
}
.cid-qCsr77jb0D .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-qCsr77jb0D .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qCsr77jb0D .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qCsr77jb0D .card-wrapper {
  margin: 0 2%;
}
.cid-qCsr77jb0D .text-row {
  align-self: center;
}
@media (max-width: 767px) {
  .cid-qCsr77jb0D .container-fluid {
    padding: 0 1rem;
  }
  .cid-qCsr77jb0D .text-row {
    padding-bottom: 1rem;
  }
}
.cid-qCsr77jb0D .mbr-text,
.cid-qCsr77jb0D .card-btn {
  text-align: center;
  margin-top: 2rem;
}
.cid-qCsr77jb0D .display-7 {
  font-size: 1.2rem;
}
.cid-qCsr8cdGFc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #477187;
}
.cid-qCsr8cdGFc .container-fluid {
  padding: 0 3rem;
}
.cid-qCsr8cdGFc .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #477187, #ffffff);
  display: inline-block;
}
.cid-qCsr8cdGFc .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-qCsr8cdGFc .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qCsr8cdGFc .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qCsr8cdGFc .card-wrapper {
  margin: 0 12%;
}
.cid-qCsr8cdGFc .text-row {
  align-self: center;
}
@media (max-width: 767px) {
  .cid-qCsr8cdGFc .container-fluid {
    padding: 0 1rem;
  }
  .cid-qCsr8cdGFc .text-row {
    padding-bottom: 1rem;
  }
}
.cid-qCsr8cdGFc .mbr-text,
.cid-qCsr8cdGFc .card-btn {
  text-align: center;
  margin-top: 2rem;
}
.cid-qCsr8cdGFc .display-7 {
  font-size: 1.2rem;
}
.cid-qCtS2xhxg3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #6b94ab;
}
.cid-qCtS2xhxg3 .container-fluid {
  padding: 0 3rem;
}
.cid-qCtS2xhxg3 .media-container-column {
  padding: 0 2rem;
}
.cid-qCtS2xhxg3 .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qCtS2xhxg3 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qCrlHSApdp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #477187;
}
.cid-qCrlHSApdp .mbr-section-title span {
  display: block;
}
.cid-qCrlHSApdp .first-column,
.cid-qCrlHSApdp .second-column {
  margin-bottom: 1rem;
}
.cid-qCrlHSApdp .first-column ul,
.cid-qCrlHSApdp .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qCrlHSApdp .first-column ul li,
.cid-qCrlHSApdp .second-column ul li {
  margin-bottom: 1rem;
}
.cid-qCrlHSApdp .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-qCrlHSApdp .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline;
}
.cid-qCrlHSApdp .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-qCrlHSApdp .card-support {
    text-align: center;
  }
}
.cid-qCrlHSApdp .first-column-item {
  color: #ffffff;
}
.cid-qCrlHSApdp ul.footer {
  display: flex;
  flex-direction: row;
}
.cid-qCozWFR8Br .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-qCozWFR8Br li a {
  text-transform: uppercase;
}
.cid-qCozWFR8Br .nav-item:focus,
.cid-qCozWFR8Br .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qCozWFR8Br .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qCozWFR8Br .nav-item .nav-link {
    position: relative;
  }
  .cid-qCozWFR8Br .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #477187, #ffffff);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qCozWFR8Br .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qCozWFR8Br .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qCozWFR8Br .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qCozWFR8Br .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-qCozWFR8Br .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qCozWFR8Br .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qCozWFR8Br .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-qCozWFR8Br .navbar .mbr-overlay {
  transition: all .3s;
  background: #477187;
  background: none;
}
.cid-qCozWFR8Br .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #477187 !important;
}
.cid-qCozWFR8Br .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qCozWFR8Br .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-qCozWFR8Br .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.show,
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-qCozWFR8Br .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qCozWFR8Br .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-qCozWFR8Br .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qCozWFR8Br .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-qCozWFR8Br .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qCozWFR8Br .navbar .navbar-collapse.show,
  .cid-qCozWFR8Br .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-qCozWFR8Br .navbar .navbar-collapse.show .brand-container,
  .cid-qCozWFR8Br .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-qCozWFR8Br .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qCozWFR8Br .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-qCozWFR8Br .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qCozWFR8Br .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qCozWFR8Br .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-qCozWFR8Br .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-qCozWFR8Br .navbar.navbar-short {
  min-height: 60px;
}
.cid-qCozWFR8Br .navbar.navbar-short .mbr-overlay {
  background: #477187 !important;
}
.cid-qCozWFR8Br .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qCozWFR8Br .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qCozWFR8Br .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qCozWFR8Br .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qCozWFR8Br .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qCozWFR8Br .dropdown-item.active,
.cid-qCozWFR8Br .dropdown-item:active {
  background-color: transparent;
}
.cid-qCozWFR8Br .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qCozWFR8Br .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qCozWFR8Br .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qCozWFR8Br .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #477187;
}
.cid-qCozWFR8Br .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qCozWFR8Br .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCozWFR8Br ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qCozWFR8Br .navbar-buttons {
  margin-left: auto;
}
.cid-qCozWFR8Br button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCozWFR8Br button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-qCozWFR8Br nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCozWFR8Br .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qCozWFR8Br a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qCozWFR8Br .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qCozWFR8Br .right-menu,
.cid-qCozWFR8Br .left-menu {
  flex-basis: 45%;
}
.cid-qCozWFR8Br .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-qCozWFR8Br .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-qCozWFR8Br .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-qCozWFR8Br .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-qCozWFR8Br .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-qCozWFR8Br .card-wrapper {
  z-index: 3;
}
.cid-qCozWFR8Br .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-qCozWFR8Br .full-link {
    height: 2.7rem;
  }
  .cid-qCozWFR8Br .navbar-collapse {
    padding-top: 0;
  }
}
.cid-qCozWFR8Br .lang {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: auto;
  min-height: 138px;
  max-height: 100%;
  z-index: 1500;
  background-color: #477187;
}
.cid-qCozWFR8Br .lang ul {
  margin: 58px 0 0 15%;
}
.cid-qCozWFR8Br .lang a {
  display: block;
  margin: 0 0 0 15%;
  color: #FFF;
  font-size: 0.77rem;
}
.cid-qCozWFR8Br .navbar-brand .navbar-logo img {
  max-width: 190px;
  margin-top: 12%;
}
.cid-qCozWFR8Br .navbar .navbar-collapse {
  margin: 0 0 0 20%;
}
a, a:hover{
	color:#FFF;
	}
	
.wrapper-3 .card-wrapper{
    margin: 0 12%;
}