body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 2.5rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 0.7rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
}
/* ---- 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: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.56rem;
    font-size: calc( 0.895rem + (0.7 - 0.895) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.895rem + (0.7 - 0.895) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((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: #096693 !important;
}
.bg-success {
  background-color: #5b686b !important;
}
.bg-info {
  background-color: #55b993 !important;
}
.bg-warning {
  background-color: #fe525b !important;
}
.bg-danger {
  background-color: #cccccc !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: #05344b;
  border-color: #05344b;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #096693 !important;
  border-color: #096693 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #05344b !important;
  border-color: #05344b !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: #05344b !important;
  border-color: #05344b !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: #13709e;
  border-color: #13709e;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !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: #13709e !important;
  border-color: #13709e !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: #38896a;
  border-color: #38896a;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #55b993 !important;
  border-color: #55b993 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #38896a !important;
  border-color: #38896a !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: #38896a !important;
  border-color: #38896a !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: #384042;
  border-color: #384042;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #5b686b !important;
  border-color: #5b686b !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #384042 !important;
  border-color: #384042 !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: #384042 !important;
  border-color: #384042 !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: #fe0613;
  border-color: #fe0613;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !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: #fe0613 !important;
  border-color: #fe0613 !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: #a6a6a6;
  border-color: #a6a6a6;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #cccccc !important;
  border-color: #cccccc !important;
  color: #4d4d4d !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #4d4d4d !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !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: #4d4d4d !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !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;
}
.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;
}
.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: #096693;
  border-color: #096693;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #032333;
  color: #032333 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #096693;
  border-color: #096693;
}
.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: #096693 !important;
  border-color: #096693 !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: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.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: #1ba1e2 !important;
  border-color: #1ba1e2 !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: #55b993;
  border-color: #55b993;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #31775c;
  color: #31775c !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #55b993;
  border-color: #55b993;
}
.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: #55b993 !important;
  border-color: #55b993 !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: #5b686b;
  border-color: #5b686b;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #2c3234;
  color: #2c3234 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #5b686b;
  border-color: #5b686b;
}
.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: #5b686b !important;
  border-color: #5b686b !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: #fe525b;
  border-color: #fe525b;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.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: #fe525b !important;
  border-color: #fe525b !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: #cccccc;
  border-color: #cccccc;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #999999;
  color: #999999 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #4d4d4d !important;
  background-color: #cccccc;
  border-color: #cccccc;
}
.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: #4d4d4d !important;
  background-color: #cccccc !important;
  border-color: #cccccc !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;
}
.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;
}
.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: #096693 !important;
}
.text-secondary {
  color: #1ba1e2 !important;
}
.text-success {
  color: #5b686b !important;
}
.text-info {
  color: #55b993 !important;
}
.text-warning {
  color: #fe525b !important;
}
.text-danger {
  color: #cccccc !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #032333 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #106087 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #2c3234 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #31775c !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e9010d !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #999999 !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: #5b686b;
}
.alert-info {
  background-color: #55b993;
}
.alert-warning {
  background-color: #fe525b;
}
.alert-danger {
  background-color: #cccccc;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #096693;
  border-color: #096693;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #096693;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #2ab1f2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #9ba7aa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #afdecc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
}
blockquote {
  border-color: #096693;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #096693;
  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: #096693;
  border-bottom-color: #096693;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #096693 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #1ba1e2 !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='%23096693' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-qSwv91CY38 {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qSwv91CY38 .container-fluid {
  padding: 0 3rem;
}
.cid-qSwv91CY38 .media-container-column {
  padding: 0 2rem;
}
.cid-qSwv91CY38 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #5b686b;
}
@media (max-width: 767px) {
  .cid-qSwv91CY38 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSrtwyEplM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qSrtwyEplM p {
  color: #767676;
}
.cid-qSrtwyEplM .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qSrtwyEplM .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #1ba1e2);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qSrtwyEplM .text-content {
    padding: 5rem;
  }
  .cid-qSrtwyEplM .media-content {
    padding-right: 5rem;
  }
}
@media (max-width: 1499px) and (min-width: 768px) {
  .cid-qSrtwyEplM .text-content {
    padding: 3rem;
  }
}
@media (max-width: 1499px) and (min-width: 991px) {
  .cid-qSrtwyEplM .media-content {
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qSrtwyEplM .text-content {
    padding: 2rem 1rem;
  }
}
.cid-qSrtwyEplM .mbr-text,
.cid-qSrtwyEplM .mbr-section-btn {
  text-align: right;
}
.cid-qSrtwyEplM .underline,
.cid-qSrtwyEplM .mbr-title {
  text-align: right;
}
.cid-qSrtwyEplM .mbr-text,
.cid-qSrtwyEplM .mbr-section-btn B {
  color: #5b686b;
}
.cid-qSvlRaIdeV {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSvlRaIdeV .container-fluid {
  padding: 0 3rem;
}
.cid-qSvlRaIdeV .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qSvlRaIdeV svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qSvlRaIdeV .signature > span {
  color: #096693;
}
@media (max-width: 767px) {
  .cid-qSvlRaIdeV .blockquote-quote {
    text-align: left;
  }
  .cid-qSvlRaIdeV .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSvlRaIdeV .mbr-section-title SPAN {
  color: #879a9f;
}
.cid-qSvlRaIdeV .mbr-section-title DIV {
  color: #5b686b;
}
.cid-qSvlRaIdeV .mbr-section-title {
  color: #5b686b;
}
.cid-qSvowg5KBP {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSvowg5KBP .container-fluid {
  padding: 0 3rem;
}
.cid-qSvowg5KBP .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qSvowg5KBP svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qSvowg5KBP .signature > span {
  color: #096693;
}
@media (max-width: 767px) {
  .cid-qSvowg5KBP .blockquote-quote {
    text-align: left;
  }
  .cid-qSvowg5KBP .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSvowg5KBP .mbr-section-title SPAN {
  color: #000000;
}
.cid-qSvowg5KBP .mbr-text,
.cid-qSvowg5KBP .blockquote-quote P {
  color: #5b686b;
}
.cid-qSvowg5KBP .mbr-section-title {
  color: #879a9f;
}
.cid-qzs85OwawU {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-qzs85OwawU .mbr-section-subtitle {
  color: #767676;
}
.cid-qzs85OwawU B {
  color: #465052;
}
.cid-qzs85OwawU H2 {
  text-align: center;
}
.cid-qzspfxyzI0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-qzspfxyzI0 .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qzspfxyzI0 h4 {
  text-align: center;
}
.cid-qzspfxyzI0 p {
  text-align: center;
}
.cid-qzspfxyzI0 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-qzspfxyzI0 .card-title,
.cid-qzspfxyzI0 .card-img {
  color: #232323;
}
.cid-qzrHwmwomo {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-qzrHwmwomo .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-qzrHwmwomo h4 {
  text-align: center;
}
.cid-qzrHwmwomo p {
  text-align: center;
}
.cid-qzrHwmwomo .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-qzrHwmwomo .card-title,
.cid-qzrHwmwomo .card-img {
  color: #000000;
}
.cid-qSrdBXPVG6 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-qSrdBXPVG6 .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-qSrdBXPVG6 h4 {
  text-align: center;
}
.cid-qSrdBXPVG6 p {
  text-align: center;
}
.cid-qSrdBXPVG6 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-qSrdBXPVG6 .card-title,
.cid-qSrdBXPVG6 .card-img {
  color: #232323;
}
.cid-qSwAGroWQa {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qSwAGroWQa .container-fluid {
  padding: 0 3rem;
}
.cid-qSwAGroWQa .media-container-column {
  padding: 0 2rem;
}
.cid-qSwAGroWQa .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qSwAGroWQa .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSwAGroWQa .mbr-section-title SPAN {
  color: #767676;
}
.cid-qSwzH5KYge {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSwzH5KYge .container-fluid {
  padding: 0 3rem;
}
.cid-qSwzH5KYge .image-block {
  position: relative;
  margin: auto;
}
.cid-qSwzH5KYge .image-block img {
  width: 100%;
}
.cid-qSwzH5KYge .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  top: 0;
}
.cid-qSwzH5KYge .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-qSwzH5KYge .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSwA6nhnzs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qSwA6nhnzs .mbr-text,
.cid-qSwA6nhnzs blockquote {
  color: #767676;
}
.cid-qSwA6nhnzs .mbr-text DIV {
  text-align: center;
}
.cid-qSwA6nhnzs .mbr-text {
  text-align: center;
}
.cid-qSwvXAeIBU {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qSwvXAeIBU .container-fluid {
  padding: 0 3rem;
}
.cid-qSwvXAeIBU ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qSwvXAeIBU ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qSwvXAeIBU ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-qSwvXAeIBU ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qSwvXAeIBU .container-fluid {
    padding: 0 1rem;
  }
  .cid-qSwvXAeIBU .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qSwvXAeIBU .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qSwvXAeIBU .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #1ba1e2);
  display: inline-block;
}
.cid-qSwvXAeIBU .mbr-section-title,
.cid-qSwvXAeIBU .underline {
  color: #767676;
}
.cid-qRX4sCA1lP {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qRX4sCA1lP .media-container-row .mbr-text {
  color: #efefef;
  text-align: left;
}
.cid-qRX4sCA1lP .media-container-row .mbr-text B {
  color: #efd29e;
}
.cid-qzs4CgSuKY {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qzs4CgSuKY .social-media {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qzs4CgSuKY .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qzs4CgSuKY .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qzs4CgSuKY .logo-section {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qzs4CgSuKY .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #465052;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qzs4CgSuKY .icon-transition span:hover {
  background-color: #1ba1e2;
}
.cid-qzs4CgSuKY .mbr-text {
  color: #cccccc;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-qzs4CgSuKY .social-media {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qzs4CgSuKY .logo-section {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qzs4CgSuKY .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .nav-item:focus,
.cid-trJ0RDYqk6 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-trJ0RDYqk6 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link {
    position: relative;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #096693, #1ba1e2);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-trJ0RDYqk6 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trJ0RDYqk6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trJ0RDYqk6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0f3f74;
}
.cid-trJ0RDYqk6 .navbar.opened {
  transition: all .3s;
  background: #0f3f74 !important;
}
.cid-trJ0RDYqk6 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-trJ0RDYqk6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-trJ0RDYqk6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-trJ0RDYqk6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-trJ0RDYqk6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-trJ0RDYqk6 .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-trJ0RDYqk6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-trJ0RDYqk6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-trJ0RDYqk6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-trJ0RDYqk6 .navbar .navbar-toggler {
    flex-basis: 30%;
  }
  .cid-trJ0RDYqk6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-trJ0RDYqk6 .navbar.navbar-short {
  background: #0f3f74 !important;
  min-height: 60px;
}
.cid-trJ0RDYqk6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-trJ0RDYqk6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-trJ0RDYqk6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-trJ0RDYqk6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trJ0RDYqk6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trJ0RDYqk6 .dropdown-item.active,
.cid-trJ0RDYqk6 .dropdown-item:active {
  background-color: transparent;
}
.cid-trJ0RDYqk6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trJ0RDYqk6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trJ0RDYqk6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trJ0RDYqk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f3f74;
}
.cid-trJ0RDYqk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-trJ0RDYqk6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trJ0RDYqk6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-trJ0RDYqk6 .navbar-buttons {
  text-align: center;
}
.cid-trJ0RDYqk6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trJ0RDYqk6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-trJ0RDYqk6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-trJ0RDYqk6 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-trJ0RDYqk6 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-trJ0RDYqk6 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .nav-item:focus,
.cid-trJ0RDYqk6 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-trJ0RDYqk6 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link {
    position: relative;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #096693, #1ba1e2);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-trJ0RDYqk6 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trJ0RDYqk6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trJ0RDYqk6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0f3f74;
}
.cid-trJ0RDYqk6 .navbar.opened {
  transition: all .3s;
  background: #0f3f74 !important;
}
.cid-trJ0RDYqk6 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-trJ0RDYqk6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-trJ0RDYqk6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-trJ0RDYqk6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-trJ0RDYqk6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-trJ0RDYqk6 .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-trJ0RDYqk6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-trJ0RDYqk6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-trJ0RDYqk6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-trJ0RDYqk6 .navbar .navbar-toggler {
    flex-basis: 30%;
  }
  .cid-trJ0RDYqk6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-trJ0RDYqk6 .navbar.navbar-short {
  background: #0f3f74 !important;
  min-height: 60px;
}
.cid-trJ0RDYqk6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-trJ0RDYqk6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-trJ0RDYqk6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-trJ0RDYqk6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trJ0RDYqk6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trJ0RDYqk6 .dropdown-item.active,
.cid-trJ0RDYqk6 .dropdown-item:active {
  background-color: transparent;
}
.cid-trJ0RDYqk6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trJ0RDYqk6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trJ0RDYqk6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trJ0RDYqk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f3f74;
}
.cid-trJ0RDYqk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-trJ0RDYqk6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trJ0RDYqk6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-trJ0RDYqk6 .navbar-buttons {
  text-align: center;
}
.cid-trJ0RDYqk6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trJ0RDYqk6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-trJ0RDYqk6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-trJ0RDYqk6 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-trJ0RDYqk6 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-trJ0RDYqk6 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-qzscgkA9un {
  padding-top: 135px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-2-1618x1080.jpg");
}
.cid-qRWcAVQwMk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qRWcAVQwMk p {
  color: #767676;
}
.cid-qRWcAVQwMk .main {
  flex-direction: row-reverse;
}
.cid-qRWcAVQwMk .row-element,
.cid-qRWcAVQwMk .image-element {
  padding: 0;
}
.cid-qRWcAVQwMk .image-element {
  display: flex;
  justify-content: center;
}
.cid-qRWcAVQwMk .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qRWcAVQwMk .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qRWcAVQwMk .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #1ba1e2);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qRWcAVQwMk .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qRWcAVQwMk .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qRWcAVQwMk .text-content {
    padding: 2rem 1rem;
  }
  .cid-qRWcAVQwMk .underline .line {
    height: 2px;
  }
  .cid-qRWcAVQwMk .mbr-title,
  .cid-qRWcAVQwMk .underline,
  .cid-qRWcAVQwMk .mbr-text,
  .cid-qRWcAVQwMk .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qRWcAVQwMk .mbr-text,
.cid-qRWcAVQwMk .mbr-section-btn {
  text-align: left;
}
.cid-qRWcAVQwMk .mbr-title,
.cid-qRWcAVQwMk .underline {
  text-align: left;
  color: #232323;
}
.cid-qRWe00ePew {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qRWe00ePew p {
  color: #767676;
}
.cid-qRWe00ePew .main {
  flex-direction: row-reverse;
}
.cid-qRWe00ePew .row-element,
.cid-qRWe00ePew .image-element {
  padding: 0;
}
.cid-qRWe00ePew .image-element {
  display: flex;
  justify-content: center;
}
.cid-qRWe00ePew .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qRWe00ePew .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qRWe00ePew .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #1ba1e2);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qRWe00ePew .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qRWe00ePew .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qRWe00ePew .text-content {
    padding: 2rem 1rem;
  }
  .cid-qRWe00ePew .underline .line {
    height: 2px;
  }
  .cid-qRWe00ePew .mbr-title,
  .cid-qRWe00ePew .underline,
  .cid-qRWe00ePew .mbr-text,
  .cid-qRWe00ePew .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qRWe00ePew .mbr-text,
.cid-qRWe00ePew .mbr-section-btn {
  text-align: left;
}
.cid-qRWe00ePew .mbr-title,
.cid-qRWe00ePew .underline {
  text-align: left;
  color: #232323;
}
.cid-qzseguhSsH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qzseguhSsH p {
  color: #767676;
}
.cid-qzseguhSsH .main {
  flex-direction: row-reverse;
}
.cid-qzseguhSsH .row-element,
.cid-qzseguhSsH .image-element {
  padding: 0;
}
.cid-qzseguhSsH .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzseguhSsH .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzseguhSsH .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzseguhSsH .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #1ba1e2);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzseguhSsH .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzseguhSsH .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzseguhSsH .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzseguhSsH .underline .line {
    height: 2px;
  }
  .cid-qzseguhSsH .mbr-title,
  .cid-qzseguhSsH .underline,
  .cid-qzseguhSsH .mbr-text,
  .cid-qzseguhSsH .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzseguhSsH .mbr-text,
.cid-qzseguhSsH .mbr-section-btn {
  text-align: left;
}
.cid-qzseguhSsH .mbr-title,
.cid-qzseguhSsH .underline {
  text-align: left;
  color: #767676;
}
.cid-qzsf5CKWPe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qzsf5CKWPe p {
  color: #767676;
}
.cid-qzsf5CKWPe .main {
  flex-direction: row-reverse;
}
.cid-qzsf5CKWPe .row-element,
.cid-qzsf5CKWPe .image-element {
  padding: 0;
}
.cid-qzsf5CKWPe .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzsf5CKWPe .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzsf5CKWPe .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzsf5CKWPe .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #1ba1e2);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzsf5CKWPe .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzsf5CKWPe .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzsf5CKWPe .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzsf5CKWPe .underline .line {
    height: 2px;
  }
  .cid-qzsf5CKWPe .mbr-title,
  .cid-qzsf5CKWPe .underline,
  .cid-qzsf5CKWPe .mbr-text,
  .cid-qzsf5CKWPe .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzsf5CKWPe .mbr-text,
.cid-qzsf5CKWPe .mbr-section-btn {
  text-align: left;
}
.cid-qzsf5CKWPe .mbr-title,
.cid-qzsf5CKWPe .underline {
  text-align: left;
  color: #767676;
}
.cid-qzsf5CKWPe .mbr-title,
.cid-qzsf5CKWPe .underline B {
  color: #1fa5e6;
}
.cid-qzsg8Xi7bB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qzsg8Xi7bB p {
  color: #767676;
}
.cid-qzsg8Xi7bB .row-element,
.cid-qzsg8Xi7bB .image-element {
  padding: 0;
}
.cid-qzsg8Xi7bB .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzsg8Xi7bB .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzsg8Xi7bB .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzsg8Xi7bB .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #1ba1e2);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzsg8Xi7bB .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzsg8Xi7bB .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzsg8Xi7bB .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzsg8Xi7bB .underline .line {
    height: 2px;
  }
  .cid-qzsg8Xi7bB .mbr-title,
  .cid-qzsg8Xi7bB .underline,
  .cid-qzsg8Xi7bB .mbr-text,
  .cid-qzsg8Xi7bB .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzsg8Xi7bB .mbr-text,
.cid-qzsg8Xi7bB .mbr-section-btn {
  text-align: left;
}
.cid-qzsg8Xi7bB .mbr-title,
.cid-qzsg8Xi7bB .underline {
  text-align: left;
  color: #767676;
}
.cid-qzsg8Xi7bB .mbr-title,
.cid-qzsg8Xi7bB .underline B {
  color: #1fa5e6;
}
.cid-qzsgbqOeoI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qzsgbqOeoI p {
  color: #767676;
}
.cid-qzsgbqOeoI .row-element,
.cid-qzsgbqOeoI .image-element {
  padding: 0;
}
.cid-qzsgbqOeoI .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzsgbqOeoI .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzsgbqOeoI .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzsgbqOeoI .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #1ba1e2);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzsgbqOeoI .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzsgbqOeoI .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzsgbqOeoI .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzsgbqOeoI .underline .line {
    height: 2px;
  }
  .cid-qzsgbqOeoI .mbr-title,
  .cid-qzsgbqOeoI .underline,
  .cid-qzsgbqOeoI .mbr-text,
  .cid-qzsgbqOeoI .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzsgbqOeoI .mbr-text,
.cid-qzsgbqOeoI .mbr-section-btn {
  text-align: left;
}
.cid-qzsgbqOeoI .mbr-title,
.cid-qzsgbqOeoI .underline {
  text-align: left;
  color: #767676;
}
.cid-qzsgbqOeoI .mbr-title,
.cid-qzsgbqOeoI .underline B {
  color: #1fa5e6;
}
.cid-qzsgfl9NIt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qzsgfl9NIt p {
  color: #767676;
}
.cid-qzsgfl9NIt .main {
  flex-direction: row-reverse;
}
.cid-qzsgfl9NIt .row-element,
.cid-qzsgfl9NIt .image-element {
  padding: 0;
}
.cid-qzsgfl9NIt .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzsgfl9NIt .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzsgfl9NIt .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzsgfl9NIt .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #1ba1e2);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzsgfl9NIt .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzsgfl9NIt .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzsgfl9NIt .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzsgfl9NIt .underline .line {
    height: 2px;
  }
  .cid-qzsgfl9NIt .mbr-title,
  .cid-qzsgfl9NIt .underline,
  .cid-qzsgfl9NIt .mbr-text,
  .cid-qzsgfl9NIt .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzsgfl9NIt .mbr-text,
.cid-qzsgfl9NIt .mbr-section-btn {
  text-align: left;
}
.cid-qzsgfl9NIt .mbr-title,
.cid-qzsgfl9NIt .underline {
  text-align: left;
  color: #d97732;
}
.cid-qzsgfl9NIt .mbr-title,
.cid-qzsgfl9NIt .underline B {
  color: #1fa5e6;
}
.cid-qRX4YQOWLt {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qRX4YQOWLt .media-container-row .mbr-text {
  color: #efefef;
  text-align: left;
}
.cid-qRX4YQOWLt .media-container-row .mbr-text B {
  color: #efd29e;
}
.cid-qzs4CgSuKY {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qzs4CgSuKY .social-media {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qzs4CgSuKY .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qzs4CgSuKY .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qzs4CgSuKY .logo-section {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qzs4CgSuKY .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #465052;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qzs4CgSuKY .icon-transition span:hover {
  background-color: #1ba1e2;
}
.cid-qzs4CgSuKY .mbr-text {
  color: #cccccc;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-qzs4CgSuKY .social-media {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qzs4CgSuKY .logo-section {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qzs4CgSuKY .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-qzscgkA9un {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-qzsOA6Yl8g {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qzsOA6Yl8g .container-fluid {
  padding: 0 3rem;
}
.cid-qzsOA6Yl8g .mbr-section-title {
  margin-bottom: 1.5em;
  text-align: center;
}
.cid-qzsOA6Yl8g .input-main {
  width: 99.6%;
  margin-left: .1em;
  justify-content: center;
}
.cid-qzsOA6Yl8g .input-main label {
  color: #000000;
}
.cid-qzsOA6Yl8g .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-qzsOA6Yl8g .input-wrap {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-qzsOA6Yl8g .input-wrap input {
  border: 1px solid #ddd;
  border-radius: 22px;
  background-color: #efefef;
  padding: 18px 25px;
  width: 96%;
}
.cid-qzsOA6Yl8g .form-group {
  padding: 0;
}
.cid-qzsOA6Yl8g .form-group textarea {
  background-color: #efefef;
  border-radius: 22px;
  padding: 1rem;
  width: 98%;
}
.cid-qzsOA6Yl8g .btn-row {
  padding-left: 0;
}
.cid-qzsOA6Yl8g .btn {
  padding: 1rem 4rem;
}
@media (max-width: 767px) {
  .cid-qzsOA6Yl8g .container-fluid {
    padding: 0 1rem;
  }
  .cid-qzsOA6Yl8g .btn {
    padding: 1rem 2rem;
    font-size: 16px !important;
  }
}
.cid-qRX58R9iKU {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qRX58R9iKU .media-container-row .mbr-text {
  color: #efefef;
  text-align: left;
}
.cid-qRX58R9iKU .media-container-row .mbr-text B {
  color: #efd29e;
}
.cid-qzs4CgSuKY {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qzs4CgSuKY .social-media {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qzs4CgSuKY .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qzs4CgSuKY .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qzs4CgSuKY .logo-section {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qzs4CgSuKY .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #465052;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qzs4CgSuKY .icon-transition span:hover {
  background-color: #1ba1e2;
}
.cid-qzs4CgSuKY .mbr-text {
  color: #cccccc;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-qzs4CgSuKY .social-media {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qzs4CgSuKY .logo-section {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qzs4CgSuKY .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .nav-item:focus,
.cid-trJ0RDYqk6 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-trJ0RDYqk6 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link {
    position: relative;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #096693, #1ba1e2);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-trJ0RDYqk6 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trJ0RDYqk6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trJ0RDYqk6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0f3f74;
}
.cid-trJ0RDYqk6 .navbar.opened {
  transition: all .3s;
  background: #0f3f74 !important;
}
.cid-trJ0RDYqk6 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-trJ0RDYqk6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-trJ0RDYqk6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-trJ0RDYqk6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-trJ0RDYqk6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-trJ0RDYqk6 .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-trJ0RDYqk6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-trJ0RDYqk6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-trJ0RDYqk6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-trJ0RDYqk6 .navbar .navbar-toggler {
    flex-basis: 30%;
  }
  .cid-trJ0RDYqk6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-trJ0RDYqk6 .navbar.navbar-short {
  background: #0f3f74 !important;
  min-height: 60px;
}
.cid-trJ0RDYqk6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-trJ0RDYqk6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-trJ0RDYqk6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-trJ0RDYqk6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trJ0RDYqk6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trJ0RDYqk6 .dropdown-item.active,
.cid-trJ0RDYqk6 .dropdown-item:active {
  background-color: transparent;
}
.cid-trJ0RDYqk6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trJ0RDYqk6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trJ0RDYqk6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trJ0RDYqk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f3f74;
}
.cid-trJ0RDYqk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-trJ0RDYqk6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trJ0RDYqk6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-trJ0RDYqk6 .navbar-buttons {
  text-align: center;
}
.cid-trJ0RDYqk6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trJ0RDYqk6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-trJ0RDYqk6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-trJ0RDYqk6 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-trJ0RDYqk6 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-trJ0RDYqk6 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-qRWeY8PtDY {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1620x1080.jpg");
}
.cid-qSz0ZIIM4a {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-qSz0ZIIM4a .media-container-row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-qSz0ZIIM4a .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qSz0ZIIM4a .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qSz0ZIIM4a .mbr-text {
    text-align: center;
  }
}
.cid-qSz0ZIIM4a H3 {
  color: #767676;
}
.cid-qSz0ZIIM4a .mbr-text,
.cid-qSz0ZIIM4a .mbr-section-btn {
  color: #767676;
}
.cid-qSz0ZIIM4a B {
  color: #5b686b;
}
.cid-qSz0ZIIM4a FONT {
  color: #232323;
}
.cid-qSz0ZIIM4a H1 {
  color: #096693;
}
.cid-qSz0ZIIM4a DIV {
  text-align: left;
}
.cid-qSAUyDv2S1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-qSAUyDv2S1 .media-container-row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-qSAUyDv2S1 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qSAUyDv2S1 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qSAUyDv2S1 .mbr-text {
    text-align: center;
  }
}
.cid-qSAUyDv2S1 H3 {
  color: #767676;
}
.cid-qSAUyDv2S1 .mbr-text,
.cid-qSAUyDv2S1 .mbr-section-btn {
  color: #767676;
}
.cid-qSAUyDv2S1 B {
  color: #5b686b;
}
.cid-qSAUyDv2S1 FONT {
  color: #232323;
}
.cid-qSAUyDv2S1 H1 {
  color: #096693;
}
.cid-qSAUyDv2S1 DIV {
  text-align: left;
  color: #232323;
}
.cid-qSB0hwMdKv {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qSB0hwMdKv .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSB0hwMdKv h4 {
  text-align: center;
}
.cid-qSB0hwMdKv p {
  text-align: center;
}
.cid-qSB0hwMdKv .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-qSB0hwMdKv .card-title,
.cid-qSB0hwMdKv .card-img {
  color: #232323;
}
.cid-qSAYUyWI5o {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #b2ccd2;
}
.cid-qSAYUyWI5o .container-fluid {
  padding: 0 3rem;
}
.cid-qSAYUyWI5o .media-container-column {
  padding: 0 2rem;
}
.cid-qSAYUyWI5o .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #000000;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-qSAYUyWI5o .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSAYUyWI5o .mbr-section-subtitle {
  text-align: center;
  color: #232323;
}
.cid-qSAYUyWI5o .mbr-section-title SPAN {
  color: #232323;
}
.cid-qRWXZNqRNj {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-qRWXZNqRNj .media-container-row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-qRWXZNqRNj .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qRWXZNqRNj .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qRWXZNqRNj .mbr-text {
    text-align: center;
  }
}
.cid-qRWXZNqRNj H3 {
  color: #767676;
}
.cid-qRWXZNqRNj .mbr-text,
.cid-qRWXZNqRNj .mbr-section-btn {
  color: #767676;
}
.cid-qRWXZNqRNj B {
  color: #000000;
}
.cid-qRWXZNqRNj FONT {
  color: #232323;
}
.cid-qRWXZNqRNj H1 {
  color: #096693;
}
.cid-qRWXZNqRNj DIV {
  color: #5b686b;
}
.cid-qSARg1u9CG {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSARg1u9CG .container-fluid {
  padding: 0 3rem;
}
.cid-qSARg1u9CG .image-block {
  position: relative;
  margin: auto;
}
.cid-qSARg1u9CG .image-block img {
  width: 100%;
}
.cid-qSARg1u9CG .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-qSARg1u9CG .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-qSARg1u9CG .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSBaIpeN87 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qSB1PTr12A {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #efefef;
  background: linear-gradient(45deg, #efefef, #ffffff);
}
.cid-qSB1PTr12A .media-container-row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-qSB1PTr12A .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qSB1PTr12A .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qSB1PTr12A .mbr-text {
    text-align: center;
  }
}
.cid-qSB1PTr12A H3 {
  color: #767676;
}
.cid-qSB1PTr12A .mbr-text,
.cid-qSB1PTr12A .mbr-section-btn {
  color: #767676;
}
.cid-qSB1PTr12A B {
  color: #000000;
}
.cid-qSB1PTr12A FONT {
  color: #232323;
}
.cid-qSB1PTr12A H1 {
  color: #096693;
}
.cid-qSB1PTr12A DIV {
  color: #5b686b;
}
.cid-qSB2JVw7DU {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #efefef;
}
.cid-qSB2JVw7DU .container-fluid {
  padding: 0 3rem;
}
.cid-qSB2JVw7DU .image-block {
  position: relative;
  margin: auto;
}
.cid-qSB2JVw7DU .image-block img {
  width: 100%;
}
.cid-qSB2JVw7DU .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-qSB2JVw7DU .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-qSB2JVw7DU .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSBbLtS8y1 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-qSB2QYbODK {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-qSB2QYbODK .media-container-row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-qSB2QYbODK .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qSB2QYbODK .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qSB2QYbODK .mbr-text {
    text-align: center;
  }
}
.cid-qSB2QYbODK H3 {
  color: #767676;
}
.cid-qSB2QYbODK .mbr-text,
.cid-qSB2QYbODK .mbr-section-btn {
  color: #767676;
}
.cid-qSB2QYbODK B {
  color: #000000;
}
.cid-qSB2QYbODK FONT {
  color: #232323;
}
.cid-qSB2QYbODK H1 {
  color: #096693;
}
.cid-qSB2QYbODK DIV {
  color: #5b686b;
}
.cid-qSB4yGl086 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSB4yGl086 .container-fluid {
  padding: 0 3rem;
}
.cid-qSB4yGl086 .image-block {
  position: relative;
  margin: auto;
}
.cid-qSB4yGl086 .image-block img {
  width: 100%;
}
.cid-qSB4yGl086 .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-qSB4yGl086 .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-qSB4yGl086 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSBcfHUbjA {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qSB4HQVwcD {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #efefef;
  background: linear-gradient(45deg, #efefef, #ffffff);
}
.cid-qSB4HQVwcD .media-container-row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-qSB4HQVwcD .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qSB4HQVwcD .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qSB4HQVwcD .mbr-text {
    text-align: center;
  }
}
.cid-qSB4HQVwcD H3 {
  color: #5b686b;
}
.cid-qSB4HQVwcD .mbr-text,
.cid-qSB4HQVwcD .mbr-section-btn {
  color: #767676;
}
.cid-qSB4HQVwcD B {
  color: #000000;
}
.cid-qSB4HQVwcD FONT {
  color: #232323;
}
.cid-qSB4HQVwcD H1 {
  color: #096693;
}
.cid-qSB4HQVwcD DIV {
  color: #5b686b;
}
.cid-qSB7GHdfYa {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #efefef;
}
.cid-qSB7GHdfYa .container-fluid {
  padding: 0 3rem;
}
.cid-qSB7GHdfYa .image-block {
  position: relative;
  margin: auto;
}
.cid-qSB7GHdfYa .image-block img {
  width: 100%;
}
.cid-qSB7GHdfYa .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-qSB7GHdfYa .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-qSB7GHdfYa .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSBcRoyABT {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-qSB7SApla7 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-qSB7SApla7 .media-container-row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-qSB7SApla7 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qSB7SApla7 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qSB7SApla7 .mbr-text {
    text-align: center;
  }
}
.cid-qSB7SApla7 H3 {
  color: #5b686b;
}
.cid-qSB7SApla7 .mbr-text,
.cid-qSB7SApla7 .mbr-section-btn {
  color: #767676;
}
.cid-qSB7SApla7 B {
  color: #000000;
}
.cid-qSB7SApla7 FONT {
  color: #232323;
}
.cid-qSB7SApla7 H1 {
  color: #096693;
}
.cid-qSB7SApla7 DIV {
  color: #5b686b;
}
.cid-qSB9UW6rv5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qSB9UW6rv5 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qSB9UW6rv5 p {
  color: #767676;
  text-align: left;
}
.cid-qSB9UW6rv5 .card-box {
  padding-top: 2rem;
}
.cid-qSB9UW6rv5 B {
  color: #096693;
}
.cid-qSB9UW6rv5 .card-title B {
  color: #000000;
}
.cid-qSB9UW6rv5 P {
  color: #767676;
  text-align: center;
}
.cid-qSB9UW6rv5 .card-title {
  text-align: center;
}
.cid-qSBd14uvDQ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qRX3zfRWLB {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qRX3zfRWLB .media-container-row .mbr-text {
  color: #efefef;
  text-align: left;
}
.cid-qRX3zfRWLB .media-container-row .mbr-text B {
  color: #efd29e;
}
.cid-qRWeYetm0E {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qRWeYetm0E .social-media {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qRWeYetm0E .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qRWeYetm0E .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qRWeYetm0E .logo-section {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qRWeYetm0E .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #465052;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qRWeYetm0E .icon-transition span:hover {
  background-color: #1ba1e2;
}
.cid-qRWeYetm0E .mbr-text {
  color: #cccccc;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-qRWeYetm0E .social-media {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qRWeYetm0E .logo-section {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qRWeYetm0E .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .nav-item:focus,
.cid-trJ0RDYqk6 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-trJ0RDYqk6 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link {
    position: relative;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #096693, #1ba1e2);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-trJ0RDYqk6 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trJ0RDYqk6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trJ0RDYqk6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0f3f74;
}
.cid-trJ0RDYqk6 .navbar.opened {
  transition: all .3s;
  background: #0f3f74 !important;
}
.cid-trJ0RDYqk6 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-trJ0RDYqk6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-trJ0RDYqk6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-trJ0RDYqk6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-trJ0RDYqk6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-trJ0RDYqk6 .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-trJ0RDYqk6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-trJ0RDYqk6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-trJ0RDYqk6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-trJ0RDYqk6 .navbar .navbar-toggler {
    flex-basis: 30%;
  }
  .cid-trJ0RDYqk6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-trJ0RDYqk6 .navbar.navbar-short {
  background: #0f3f74 !important;
  min-height: 60px;
}
.cid-trJ0RDYqk6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-trJ0RDYqk6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-trJ0RDYqk6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-trJ0RDYqk6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trJ0RDYqk6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trJ0RDYqk6 .dropdown-item.active,
.cid-trJ0RDYqk6 .dropdown-item:active {
  background-color: transparent;
}
.cid-trJ0RDYqk6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trJ0RDYqk6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trJ0RDYqk6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trJ0RDYqk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f3f74;
}
.cid-trJ0RDYqk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-trJ0RDYqk6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trJ0RDYqk6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-trJ0RDYqk6 .navbar-buttons {
  text-align: center;
}
.cid-trJ0RDYqk6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trJ0RDYqk6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-trJ0RDYqk6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-trJ0RDYqk6 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-trJ0RDYqk6 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-trJ0RDYqk6 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-qSqhmpAeh7 {
  padding-top: 135px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1-1620x1080.jpg");
}
.cid-qSqhmpAeh7 DIV {
  text-align: center;
}
.cid-qSqhmqdbbr {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qSqhmqdbbr .container-fluid {
  padding: 0 3rem;
}
.cid-qSqhmqdbbr .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qSqhmqdbbr svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qSqhmqdbbr .signature > span {
  color: #096693;
}
@media (max-width: 767px) {
  .cid-qSqhmqdbbr .blockquote-quote {
    text-align: left;
  }
  .cid-qSqhmqdbbr .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSqhmqdbbr .mbr-text,
.cid-qSqhmqdbbr .blockquote-quote {
  color: #096693;
}
.cid-qSqhmqdbbr .mbr-text,
.cid-qSqhmqdbbr .blockquote-quote DIV {
  color: #767676;
}
.cid-qSqhmqdbbr .mbr-section-title SPAN {
  color: #5b686b;
}
.cid-qSqhmqdbbr .mbr-section-title {
  color: #5b686b;
}
.cid-qSqhmqdbbr .mbr-text,
.cid-qSqhmqdbbr .blockquote-quote B {
  color: #767676;
}
.cid-qSqC55pbcN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qSqC55pbcN .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-qSqC55pbcN .card-img {
  padding-bottom: 2rem;
}
.cid-qSqC55pbcN .mbr-text {
  color: #767676;
}
.cid-qSqC55pbcN span {
  font-size: 14px;
  color: #ffffff;
}
.cid-qSqC55pbcN .mbr-section-btn {
  margin-left: 0;
}
.cid-qSqC55pbcN .date span {
  display: inline-block;
  background-color: #1ba1e2;
  padding: 0.2rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-qSqC55pbcN .card-title {
    text-align: center;
  }
  .cid-qSqC55pbcN p.mbr-text,
  .cid-qSqC55pbcN p.date {
    text-align: center;
  }
}
.cid-qSqC55pbcN .card-title,
.cid-qSqC55pbcN .card-img {
  color: #879a9f;
}
.cid-qSqEWXcvlu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qSqEWXcvlu .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-qSqEWXcvlu .card-img {
  padding-bottom: 2rem;
}
.cid-qSqEWXcvlu .mbr-text {
  color: #767676;
}
.cid-qSqEWXcvlu span {
  font-size: 14px;
  color: #ffffff;
}
.cid-qSqEWXcvlu .mbr-section-btn {
  margin-left: 0;
}
.cid-qSqEWXcvlu .date span {
  display: inline-block;
  background-color: #1ba1e2;
  padding: 0.2rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-qSqEWXcvlu .card-title {
    text-align: center;
  }
  .cid-qSqEWXcvlu p.mbr-text,
  .cid-qSqEWXcvlu p.date {
    text-align: center;
  }
}
.cid-qSqEWXcvlu .card-title,
.cid-qSqEWXcvlu .card-img {
  color: #879a9f;
}
.cid-qSyPDDyaBQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSyPDDyaBQ .counter-container {
  color: #464646;
}
.cid-qSyPDDyaBQ .counter-container div {
  margin-bottom: 1rem;
  padding-left: 5rem;
}
.cid-qSyPDDyaBQ .counter-container li {
  list-style: none;
  padding-left: 6rem;
  position: relative;
}
.cid-qSyPDDyaBQ .counter-container .counter {
  text-overflow: clip;
  overflow: hidden;
  white-space: nowrap;
  font-size: 40px;
  position: absolute;
  left: 0;
  display: inline-block;
  margin: 0 0 5px;
  line-height: 40px;
  transition: all .2s;
  width: 60px;
  height: 40px;
}
.cid-qSyPDDyaBQ H3 {
  color: #096693;
}
.cid-qSvAjE7LIv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qSwmknTPhf {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-qSwmknTPhf .container-fluid {
  padding: 0 3rem;
}
.cid-qSwmknTPhf .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #096693 50%, #1ba1e2 120%);
  display: inline-block;
}
.cid-qSwmknTPhf .mbr-section-title {
  color: #000000;
}
.cid-qSwmknTPhf .mbr-section-subtitle {
  color: #000000;
}
.cid-qSwmknTPhf .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-qSwmknTPhf .header-text {
  padding: 2rem 1rem !important;
}
.cid-qSwmknTPhf .card {
  border-radius: 25px;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-qSwmknTPhf .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-qSwmknTPhf .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-left: 2rem;
}
.cid-qSwmknTPhf .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-qSwmknTPhf .card .card-header a.panel-title:hover .sign {
  background-color: #879a9f !important;
}
.cid-qSwmknTPhf .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #767676;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-qSwmknTPhf .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-qSwmknTPhf .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-qSwmknTPhf .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-qSwmknTPhf .container-fluid {
    padding: 0 1rem;
  }
  .cid-qSwmknTPhf .header-text {
    padding: 1rem !important;
  }
  .cid-qSwmknTPhf .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-qSwmknTPhf .panel-body {
    width: calc(100% - 48px);
  }
  .cid-qSwmknTPhf .panel-group {
    padding: 0;
  }
}
.cid-qSwmknTPhf .header-text,
.cid-qSwmknTPhf .sign {
  color: #5b686b;
}
.cid-qSwmknTPhf .panel-text {
  color: #55b993;
}
.cid-qSwmknTPhf .panel-text B {
  color: #ffa0a4;
}
.cid-qSr6zLdfml {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSr6zLdfml .container-fluid {
  padding: 0 3rem;
}
.cid-qSr6zLdfml .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qSr6zLdfml svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qSr6zLdfml .signature > span {
  color: #096693;
}
@media (max-width: 767px) {
  .cid-qSr6zLdfml .blockquote-quote {
    text-align: left;
  }
  .cid-qSr6zLdfml .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSr6zLdfml .mbr-section-title SPAN {
  color: #000000;
}
.cid-qSr6zLdfml .mbr-text,
.cid-qSr6zLdfml .blockquote-quote {
  color: #767676;
}
.cid-qSyQX5pKxs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSyQX5pKxs p {
  color: #767676;
}
.cid-qSyQX5pKxs .main {
  flex-direction: row-reverse;
}
.cid-qSyQX5pKxs .row-element,
.cid-qSyQX5pKxs .image-element {
  padding: 0;
}
.cid-qSyQX5pKxs .image-element {
  display: flex;
  justify-content: center;
}
.cid-qSyQX5pKxs .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qSyQX5pKxs .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qSyQX5pKxs .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #1ba1e2);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qSyQX5pKxs .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qSyQX5pKxs .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qSyQX5pKxs .text-content {
    padding: 2rem 1rem;
  }
  .cid-qSyQX5pKxs .underline .line {
    height: 2px;
  }
  .cid-qSyQX5pKxs .mbr-title,
  .cid-qSyQX5pKxs .underline,
  .cid-qSyQX5pKxs .mbr-text,
  .cid-qSyQX5pKxs .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qSyQX5pKxs .mbr-text,
.cid-qSyQX5pKxs .mbr-section-btn {
  text-align: left;
}
.cid-qSyQX5pKxs .mbr-title,
.cid-qSyQX5pKxs .underline {
  text-align: left;
}
.cid-qSyRXhoa5l {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSyRXhoa5l p {
  color: #767676;
}
.cid-qSyRXhoa5l .main {
  flex-direction: row-reverse;
}
.cid-qSyRXhoa5l .row-element,
.cid-qSyRXhoa5l .image-element {
  padding: 0;
}
.cid-qSyRXhoa5l .image-element {
  display: flex;
  justify-content: center;
}
.cid-qSyRXhoa5l .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qSyRXhoa5l .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qSyRXhoa5l .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #1ba1e2);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qSyRXhoa5l .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qSyRXhoa5l .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qSyRXhoa5l .text-content {
    padding: 2rem 1rem;
  }
  .cid-qSyRXhoa5l .underline .line {
    height: 2px;
  }
  .cid-qSyRXhoa5l .mbr-title,
  .cid-qSyRXhoa5l .underline,
  .cid-qSyRXhoa5l .mbr-text,
  .cid-qSyRXhoa5l .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qSyRXhoa5l .mbr-title,
.cid-qSyRXhoa5l .underline {
  text-align: left;
}
.cid-qSyRXhoa5l .mbr-text,
.cid-qSyRXhoa5l .mbr-section-btn {
  text-align: left;
}
.cid-qSySW0Us4a {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSySW0Us4a p {
  color: #767676;
}
.cid-qSySW0Us4a .main {
  flex-direction: row-reverse;
}
.cid-qSySW0Us4a .row-element,
.cid-qSySW0Us4a .image-element {
  padding: 0;
}
.cid-qSySW0Us4a .image-element {
  display: flex;
  justify-content: center;
}
.cid-qSySW0Us4a .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qSySW0Us4a .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qSySW0Us4a .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #1ba1e2);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qSySW0Us4a .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qSySW0Us4a .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qSySW0Us4a .text-content {
    padding: 2rem 1rem;
  }
  .cid-qSySW0Us4a .underline .line {
    height: 2px;
  }
  .cid-qSySW0Us4a .mbr-title,
  .cid-qSySW0Us4a .underline,
  .cid-qSySW0Us4a .mbr-text,
  .cid-qSySW0Us4a .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qSySW0Us4a .mbr-title,
.cid-qSySW0Us4a .underline {
  text-align: left;
}
.cid-qSySW0Us4a .mbr-text,
.cid-qSySW0Us4a .mbr-section-btn {
  text-align: left;
}
.cid-qSqwMqUmjd {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSqwMqUmjd .container-fluid {
  padding: 0 3rem;
}
.cid-qSqwMqUmjd .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qSqwMqUmjd svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qSqwMqUmjd .signature > span {
  color: #096693;
}
@media (max-width: 767px) {
  .cid-qSqwMqUmjd .blockquote-quote {
    text-align: left;
  }
  .cid-qSqwMqUmjd .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSqwMqUmjd .mbr-section-title SPAN {
  color: #5b686b;
}
.cid-qSqwMqUmjd .mbr-text,
.cid-qSqwMqUmjd .blockquote-quote {
  color: #767676;
}
.cid-qSvLKzgMjY {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-qSvLKzgMjY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSvLKzgMjY .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSvLKzgMjY .mbr-text {
  color: #767676;
}
.cid-qSvLKzgMjY .mbr-text B {
  color: #5b686b;
}
.cid-qSvLFAXuIP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-qSvLFAXuIP .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSvLFAXuIP .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSvLFAXuIP .mbr-text {
  color: #767676;
}
.cid-qSvLFAXuIP .mbr-text B {
  color: #5b686b;
}
.cid-qSqQYYeHOS {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSqQYYeHOS .container-fluid {
  padding: 0 3rem;
}
.cid-qSqQYYeHOS .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qSqQYYeHOS svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qSqQYYeHOS .signature > span {
  color: #096693;
}
@media (max-width: 767px) {
  .cid-qSqQYYeHOS .blockquote-quote {
    text-align: left;
  }
  .cid-qSqQYYeHOS .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSqQYYeHOS .mbr-section-title SPAN {
  color: #5b686b;
}
.cid-qSqQYYeHOS .mbr-text,
.cid-qSqQYYeHOS .blockquote-quote {
  color: #767676;
}
.cid-qSvOB7gd47 {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qSvOB7gd47 .container-fluid {
  padding: 0 3rem;
}
.cid-qSvOB7gd47 .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qSvOB7gd47 svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qSvOB7gd47 .signature > span {
  color: #096693;
}
@media (max-width: 767px) {
  .cid-qSvOB7gd47 .blockquote-quote {
    text-align: left;
  }
  .cid-qSvOB7gd47 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSvPiVMgFT {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qSvPiVMgFT .container-fluid {
  padding: 0 3rem;
}
.cid-qSvPiVMgFT .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #096693 50%, #1ba1e2 120%);
  display: inline-block;
}
.cid-qSvPiVMgFT .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-qSvPiVMgFT .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qSvPiVMgFT .table-wrapper {
  margin: 0 auto;
}
.cid-qSvPiVMgFT table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qSvPiVMgFT table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #879a9f;
  color: white;
  vertical-align: middle;
}
.cid-qSvPiVMgFT table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-qSvPiVMgFT .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-qSvPiVMgFT .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-qSvPiVMgFT .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-qSvPiVMgFT .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-qSvPiVMgFT .dataTables_wrapper {
  display: block;
}
.cid-qSvPiVMgFT .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-qSvPiVMgFT .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-qSvPiVMgFT .head-item:after,
.cid-qSvPiVMgFT .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-qSvPiVMgFT .dataTables_filter {
    text-align: center;
  }
  .cid-qSvPiVMgFT .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-qSvPiVMgFT .dataTables_filter {
    text-align: center;
  }
  .cid-qSvPiVMgFT .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-qSvPiVMgFT .container-fluid {
    padding: 0 1rem;
  }
  .cid-qSvPiVMgFT table th,
  .cid-qSvPiVMgFT table td {
    padding: .75rem;
  }
}
.cid-qSvPiVMgFT .body-item {
  text-align: left;
  color: #232323;
}
.cid-qSvPiVMgFT .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-qSvPiVMgFT .head-item {
  color: #ffffff;
  text-align: left;
}
.cid-qSw9dE5Hnk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-qSqRIT4M1L {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSqRIT4M1L .container-fluid {
  padding: 0 3rem;
}
.cid-qSqRIT4M1L .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qSqRIT4M1L svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qSqRIT4M1L .signature > span {
  color: #096693;
}
@media (max-width: 767px) {
  .cid-qSqRIT4M1L .blockquote-quote {
    text-align: left;
  }
  .cid-qSqRIT4M1L .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSqRIT4M1L .mbr-section-title SPAN {
  color: #232323;
}
.cid-qSqRIT4M1L .mbr-text,
.cid-qSqRIT4M1L .blockquote-quote {
  color: #767676;
}
.cid-qSqhXpXxtB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSqhXpXxtB .container-fluid {
  padding: 0 3rem;
}
.cid-qSqhXpXxtB .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #096693 50%, #1ba1e2 120%);
  display: inline-block;
}
.cid-qSqhXpXxtB .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-qSqhXpXxtB .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qSqhXpXxtB .table-wrapper {
  margin: 0 auto;
}
.cid-qSqhXpXxtB table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qSqhXpXxtB table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #c1c1c1;
  color: white;
  vertical-align: middle;
}
.cid-qSqhXpXxtB table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-qSqhXpXxtB .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-qSqhXpXxtB .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-qSqhXpXxtB .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-qSqhXpXxtB .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-qSqhXpXxtB .dataTables_wrapper {
  display: block;
}
.cid-qSqhXpXxtB .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-qSqhXpXxtB .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-qSqhXpXxtB .head-item:after,
.cid-qSqhXpXxtB .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-qSqhXpXxtB .dataTables_filter {
    text-align: center;
  }
  .cid-qSqhXpXxtB .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-qSqhXpXxtB .dataTables_filter {
    text-align: center;
  }
  .cid-qSqhXpXxtB .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-qSqhXpXxtB .container-fluid {
    padding: 0 1rem;
  }
  .cid-qSqhXpXxtB table th,
  .cid-qSqhXpXxtB table td {
    padding: .75rem;
  }
}
.cid-qSqhXpXxtB .body-item {
  text-align: left;
}
.cid-qSqhXpXxtB .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-qSqSATL928 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSqSATL928 .container-fluid {
  padding: 0 3rem;
}
.cid-qSqSATL928 .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qSqSATL928 svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qSqSATL928 .signature > span {
  color: #096693;
}
@media (max-width: 767px) {
  .cid-qSqSATL928 .blockquote-quote {
    text-align: left;
  }
  .cid-qSqSATL928 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSqSATL928 .mbr-section-title SPAN {
  color: #232323;
}
.cid-qSqSATL928 .mbr-text,
.cid-qSqSATL928 .blockquote-quote {
  color: #767676;
}
.cid-qSqkads3Fw {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-qSqkads3Fw .container-fluid {
  padding: 0 3rem;
}
.cid-qSqkads3Fw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #096693 50%, #1ba1e2 120%);
  display: inline-block;
}
.cid-qSqkads3Fw .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-qSqkads3Fw .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qSqkads3Fw .table-wrapper {
  margin: 0 auto;
}
.cid-qSqkads3Fw table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qSqkads3Fw table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #c1c1c1;
  color: white;
  vertical-align: middle;
}
.cid-qSqkads3Fw table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-qSqkads3Fw .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-qSqkads3Fw .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-qSqkads3Fw .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-qSqkads3Fw .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-qSqkads3Fw .dataTables_wrapper {
  display: block;
}
.cid-qSqkads3Fw .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-qSqkads3Fw .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-qSqkads3Fw .head-item:after,
.cid-qSqkads3Fw .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-qSqkads3Fw .dataTables_filter {
    text-align: center;
  }
  .cid-qSqkads3Fw .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-qSqkads3Fw .dataTables_filter {
    text-align: center;
  }
  .cid-qSqkads3Fw .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-qSqkads3Fw .container-fluid {
    padding: 0 1rem;
  }
  .cid-qSqkads3Fw table th,
  .cid-qSqkads3Fw table td {
    padding: .75rem;
  }
}
.cid-qSqkads3Fw .body-item {
  text-align: left;
}
.cid-qSqkads3Fw .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-qSw9o2Mq6a {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-qSqhmvRq2w {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qSqhmvRq2w .media-container-row .mbr-text {
  color: #efefef;
  text-align: left;
}
.cid-qSqhmvRq2w .media-container-row .mbr-text B {
  color: #efd29e;
}
.cid-qSqhmvdayA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qSqhmvdayA .social-media {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qSqhmvdayA .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qSqhmvdayA .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qSqhmvdayA .logo-section {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qSqhmvdayA .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #465052;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qSqhmvdayA .icon-transition span:hover {
  background-color: #1ba1e2;
}
.cid-qSqhmvdayA .mbr-text {
  color: #cccccc;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-qSqhmvdayA .social-media {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qSqhmvdayA .logo-section {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qSqhmvdayA .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .nav-item:focus,
.cid-trJ0RDYqk6 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-trJ0RDYqk6 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link {
    position: relative;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #096693, #1ba1e2);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-trJ0RDYqk6 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trJ0RDYqk6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trJ0RDYqk6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0f3f74;
}
.cid-trJ0RDYqk6 .navbar.opened {
  transition: all .3s;
  background: #0f3f74 !important;
}
.cid-trJ0RDYqk6 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-trJ0RDYqk6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-trJ0RDYqk6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-trJ0RDYqk6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-trJ0RDYqk6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-trJ0RDYqk6 .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-trJ0RDYqk6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-trJ0RDYqk6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-trJ0RDYqk6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-trJ0RDYqk6 .navbar .navbar-toggler {
    flex-basis: 30%;
  }
  .cid-trJ0RDYqk6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-trJ0RDYqk6 .navbar.navbar-short {
  background: #0f3f74 !important;
  min-height: 60px;
}
.cid-trJ0RDYqk6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-trJ0RDYqk6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-trJ0RDYqk6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-trJ0RDYqk6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trJ0RDYqk6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trJ0RDYqk6 .dropdown-item.active,
.cid-trJ0RDYqk6 .dropdown-item:active {
  background-color: transparent;
}
.cid-trJ0RDYqk6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trJ0RDYqk6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trJ0RDYqk6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trJ0RDYqk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f3f74;
}
.cid-trJ0RDYqk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-trJ0RDYqk6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trJ0RDYqk6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-trJ0RDYqk6 .navbar-buttons {
  text-align: center;
}
.cid-trJ0RDYqk6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trJ0RDYqk6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-trJ0RDYqk6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-trJ0RDYqk6 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-trJ0RDYqk6 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-trJ0RDYqk6 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-qSqO51lqlf {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-qSqOipYtU5 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qSqOipYtU5 .mbr-text {
  color: #767676;
}
.cid-qSqOipYtU5 h4 {
  font-weight: 500;
}
.cid-qSqOipYtU5 h4,
.cid-qSqOipYtU5 h5 {
  text-align: center;
}
.cid-qSqOipYtU5 p {
  text-align: center;
}
.cid-qSqOipYtU5 .card-box {
  text-align: center;
}
.cid-qSqOipYtU5 .card-img {
  font-size: 3rem;
}
.cid-qSqOipYtU5 .mbr-iconfont {
  color: #096693;
}
.cid-qSqOipYtU5 .mbr-section-subtitle DIV {
  text-align: left;
  color: #232323;
}
.cid-qSqOipYtU5 .mbr-section-subtitle {
  text-align: left;
  color: #4284df;
}
.cid-qSqOipYtU5 B {
  color: #555555;
}
.cid-qSqOipYtU5 .mbr-section-subtitle B {
  color: #465052;
}
.cid-qSqOipYtU5 H2 {
  text-align: left;
}
.cid-qSqPjkv8uo {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qSqPjkv8uo .mbr-text {
  color: #767676;
}
.cid-qSqPjkv8uo h4 {
  font-weight: 500;
}
.cid-qSqPjkv8uo h4,
.cid-qSqPjkv8uo h5 {
  text-align: center;
}
.cid-qSqPjkv8uo p {
  text-align: center;
}
.cid-qSqPjkv8uo .card-box {
  text-align: center;
}
.cid-qSqPjkv8uo .card-img {
  font-size: 3rem;
}
.cid-qSqPjkv8uo .mbr-iconfont {
  color: #096693;
}
.cid-qSqPjkv8uo .mbr-section-subtitle DIV {
  text-align: left;
  color: #232323;
}
.cid-qSqPjkv8uo .mbr-section-subtitle {
  text-align: left;
  color: #4284df;
}
.cid-qSqPjkv8uo B {
  color: #555555;
}
.cid-qSqPjkv8uo .mbr-section-subtitle B {
  color: #6c9cdf;
}
.cid-qSqPjkv8uo H2 {
  text-align: left;
}
.cid-qSqO54VjZh {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qSqO54VjZh .media-container-row .mbr-text {
  color: #efefef;
  text-align: left;
}
.cid-qSqO54VjZh .media-container-row .mbr-text B {
  color: #efd29e;
}
.cid-qSqO54cRJI {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qSqO54cRJI .social-media {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qSqO54cRJI .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qSqO54cRJI .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qSqO54cRJI .logo-section {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qSqO54cRJI .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #465052;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qSqO54cRJI .icon-transition span:hover {
  background-color: #1ba1e2;
}
.cid-qSqO54cRJI .mbr-text {
  color: #cccccc;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-qSqO54cRJI .social-media {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qSqO54cRJI .logo-section {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qSqO54cRJI .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .nav-item:focus,
.cid-trJ0RDYqk6 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-trJ0RDYqk6 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link {
    position: relative;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #096693, #1ba1e2);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-trJ0RDYqk6 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trJ0RDYqk6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trJ0RDYqk6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0f3f74;
}
.cid-trJ0RDYqk6 .navbar.opened {
  transition: all .3s;
  background: #0f3f74 !important;
}
.cid-trJ0RDYqk6 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-trJ0RDYqk6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-trJ0RDYqk6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-trJ0RDYqk6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-trJ0RDYqk6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-trJ0RDYqk6 .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-trJ0RDYqk6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-trJ0RDYqk6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-trJ0RDYqk6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-trJ0RDYqk6 .navbar .navbar-toggler {
    flex-basis: 30%;
  }
  .cid-trJ0RDYqk6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-trJ0RDYqk6 .navbar.navbar-short {
  background: #0f3f74 !important;
  min-height: 60px;
}
.cid-trJ0RDYqk6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-trJ0RDYqk6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-trJ0RDYqk6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-trJ0RDYqk6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trJ0RDYqk6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trJ0RDYqk6 .dropdown-item.active,
.cid-trJ0RDYqk6 .dropdown-item:active {
  background-color: transparent;
}
.cid-trJ0RDYqk6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trJ0RDYqk6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trJ0RDYqk6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trJ0RDYqk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f3f74;
}
.cid-trJ0RDYqk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-trJ0RDYqk6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trJ0RDYqk6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-trJ0RDYqk6 .navbar-buttons {
  text-align: center;
}
.cid-trJ0RDYqk6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trJ0RDYqk6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-trJ0RDYqk6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-trJ0RDYqk6 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-trJ0RDYqk6 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-trJ0RDYqk6 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-qSzj8wEJBp {
  padding-top: 135px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-3-1620x1080.jpg");
}
.cid-qSzj8xBEdg {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-qSzj8xBEdg .media-container-row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-qSzj8xBEdg .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qSzj8xBEdg .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qSzj8xBEdg .mbr-text {
    text-align: center;
  }
}
.cid-qSzj8xBEdg H3 {
  color: #767676;
}
.cid-qSzj8xBEdg .mbr-text,
.cid-qSzj8xBEdg .mbr-section-btn {
  color: #767676;
}
.cid-qSzj8xBEdg B {
  color: #5b686b;
}
.cid-qSzj8xBEdg FONT {
  color: #232323;
}
.cid-qSzj8xBEdg H1 {
  color: #096693;
}
.cid-qSzj8xBEdg DIV {
  text-align: left;
  color: #b2ccd2;
}
.cid-qSzj8yS1pm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSzj8yS1pm .mbr-text {
  color: #767676;
}
.cid-qSzj8yS1pm h4 {
  font-weight: 500;
}
.cid-qSzj8yS1pm h4,
.cid-qSzj8yS1pm h5 {
  text-align: center;
}
.cid-qSzj8yS1pm p {
  text-align: center;
}
.cid-qSzj8yS1pm .card-box {
  text-align: center;
}
.cid-qSzj8yS1pm .card-img {
  font-size: 3rem;
}
.cid-qSzj8yS1pm .mbr-iconfont {
  color: #096693;
}
.cid-qSzj8yS1pm .mbr-section-subtitle DIV {
  text-align: left;
  color: #5b686b;
}
.cid-qSzj8yS1pm .mbr-section-subtitle {
  text-align: left;
  color: #4284df;
}
.cid-qSzj8yS1pm B {
  color: #5b686b;
}
.cid-qSzj8yS1pm .mbr-section-subtitle B {
  color: #767676;
}
.cid-qSzj8yS1pm H2 {
  text-align: left;
}
.cid-qSBDG5oy3N {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSBDG5oy3N .mbr-text {
  color: #767676;
}
.cid-qSBDG5oy3N h4 {
  font-weight: 500;
}
.cid-qSBDG5oy3N h4,
.cid-qSBDG5oy3N h5 {
  text-align: center;
}
.cid-qSBDG5oy3N p {
  text-align: center;
}
.cid-qSBDG5oy3N .card-box {
  text-align: center;
}
.cid-qSBDG5oy3N .card-img {
  font-size: 3rem;
}
.cid-qSBDG5oy3N .mbr-iconfont {
  color: #096693;
}
.cid-qSBDG5oy3N .mbr-section-subtitle DIV {
  text-align: left;
  color: #879a9f;
}
.cid-qSBDG5oy3N .mbr-section-subtitle {
  text-align: left;
  color: #4284df;
}
.cid-qSBDG5oy3N B {
  color: #096693;
}
.cid-qSBDG5oy3N .mbr-section-subtitle B {
  color: #767676;
}
.cid-qSBDG5oy3N H2 {
  text-align: left;
}
.cid-qSBDG5oy3N .card-title {
  text-align: left;
}
.cid-qSzj8A0wUJ {
  padding-top: 0px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-qSzj8A0wUJ .mbr-shop {
  display: table;
  width: 100%;
}
.cid-qSzj8A0wUJ .mbr-shop .row {
  margin: 0;
}
.cid-qSzj8A0wUJ .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-qSzj8A0wUJ .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-qSzj8A0wUJ .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-qSzj8A0wUJ .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-qSzj8A0wUJ .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-qSzj8A0wUJ .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-qSzj8A0wUJ .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-qSzj8A0wUJ .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-qSzj8A0wUJ .mbr-shop .hide-modal {
  display: none;
}
.cid-qSzj8A0wUJ .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-qSzj8A0wUJ .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-qSzj8A0wUJ .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-qSzj8A0wUJ .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-qSzj8A0wUJ .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-qSzj8A0wUJ .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-qSzj8A0wUJ .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-qSzj8A0wUJ .mbr-shop .filter-by-pu,
.cid-qSzj8A0wUJ .mbr-shop .filter-by-pd,
.cid-qSzj8A0wUJ .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-qSzj8A0wUJ .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-qSzj8A0wUJ .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-qSzj8A0wUJ .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-qSzj8A0wUJ .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-qSzj8A0wUJ .mbr-shop .galleryItem h4,
.cid-qSzj8A0wUJ .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-qSzj8A0wUJ .mbr-shop .galleryItem h5,
.cid-qSzj8A0wUJ .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-qSzj8A0wUJ .mbr-shop .galleryItem p,
.cid-qSzj8A0wUJ .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-qSzj8A0wUJ .mbr-shop .item-button {
  text-align: center;
}
.cid-qSzj8A0wUJ .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-qSzj8A0wUJ .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-qSzj8A0wUJ .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-qSzj8A0wUJ .mbr-shop .sidebar-block {
  position: relative;
}
.cid-qSzj8A0wUJ .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-qSzj8A0wUJ .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-qSzj8A0wUJ .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-qSzj8A0wUJ .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-qSzj8A0wUJ .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-qSzj8A0wUJ .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-qSzj8A0wUJ .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-qSzj8A0wUJ .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-qSzj8A0wUJ .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-qSzj8A0wUJ .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-qSzj8A0wUJ .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-qSzj8A0wUJ .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-qSzj8A0wUJ .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #d97732;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-qSzj8A0wUJ .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-qSzj8A0wUJ .mbr-shop .mbr-gallery-item__hided h4,
.cid-qSzj8A0wUJ .mbr-shop .mbr-gallery-item__hided h5,
.cid-qSzj8A0wUJ .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-qSzj8A0wUJ .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-qSzj8A0wUJ .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-qSzj8A0wUJ .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-qSzj8A0wUJ .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-qSzj8A0wUJ .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-qSzj8A0wUJ .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-qSzj8A0wUJ .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-qSzj8A0wUJ .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-qSzj8A0wUJ .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-qSzj8A0wUJ .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-qSzj8A0wUJ .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-qSzj8A0wUJ .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-qSzj8A0wUJ .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-qSzj8A0wUJ .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-qSzj8A0wUJ .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-qSzj8A0wUJ .mbr-shop .range-controls {
  position: relative;
}
.cid-qSzj8A0wUJ .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-qSzj8A0wUJ .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-qSzj8A0wUJ .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-qSzj8A0wUJ .mbr-shop .toggle:hover,
.cid-qSzj8A0wUJ .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-qSzj8A0wUJ .mbr-shop .min-toggle {
  left: 0;
}
.cid-qSzj8A0wUJ .mbr-shop .max-toggle {
  right: 0;
}
.cid-qSzj8A0wUJ .mbr-shop .hided-by-price {
  display: none;
}
.cid-qSzj8A0wUJ .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-qSzj8A0wUJ .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-qSzj8A0wUJ .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-qSzj8A0wUJ .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-qSzj8A0wUJ .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-qSzj8A0wUJ .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-qSzj8A0wUJ .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-qSzj8A0wUJ .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-qSzj8A0wUJ .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-qSzj8A0wUJ .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-qSzj8A0wUJ .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-qSzj8A0wUJ .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-qSzj8A0wUJ .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-qSzj8A0wUJ .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-qSzj8A0wUJ .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-qSzj8A0wUJ .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-qSzj8A0wUJ .mbr-shop .shop-items .onsale,
.cid-qSzj8A0wUJ .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-qSzj8A0wUJ .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-qSzj8A0wUJ .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-qSzj8A0wUJ .mbr-shop .price-range {
  display: inline-block;
}
.cid-qSzj8A0wUJ .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-qSzj8A0wUJ .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-qSzj8A0wUJ .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-qSzj8A0wUJ .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-qSzj8A0wUJ .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-qSzj8A0wUJ .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-qSzj8A0wUJ .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-qSzj8A0wUJ .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-qSzj8A0wUJ .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-qSzj8A0wUJ .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-qSzj8A0wUJ .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-qSzj8A0wUJ .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-qSzj8A0wUJ .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-qSzj8A0wUJ .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-qSzj8A0wUJ .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qSzj8A0wUJ .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-qSzj8A0wUJ .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-qSzj8A0wUJ .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-qSzj8A0wUJ .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-qSzj8A0wUJ .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-qSzj8A0wUJ .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-qSzj8A0wUJ .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-qSzj8A0wUJ .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-qSzj8A0wUJ .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-qSzj8A0wUJ .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-qSzj8A0wUJ .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-qSzj8A0wUJ .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-qSzj8A0wUJ .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-qSzj8A0wUJ .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-qSzj8A0wUJ .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-qSzj8A0wUJ .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-qSzj8A0wUJ .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-qSzj8A0wUJ .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-qSzj8A0wUJ .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSzj8A0wUJ .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-qSzj8A0wUJ .shop-item-price,
.cid-qSzj8A0wUJ .price-block {
  color: #fe525b;
}
.cid-qSztjKgGxN {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qSzu2R4WVY {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qSzu2R4WVY .mbr-text {
  color: #767676;
}
.cid-qSzu2R4WVY h4 {
  font-weight: 500;
}
.cid-qSzu2R4WVY h4,
.cid-qSzu2R4WVY h5 {
  text-align: center;
}
.cid-qSzu2R4WVY p {
  text-align: center;
}
.cid-qSzu2R4WVY .card-box {
  text-align: center;
}
.cid-qSzu2R4WVY .card-img {
  font-size: 3rem;
}
.cid-qSzu2R4WVY .mbr-iconfont {
  color: #096693;
}
.cid-qSzu2R4WVY .mbr-section-subtitle DIV {
  text-align: left;
  color: #879a9f;
}
.cid-qSzu2R4WVY .mbr-section-subtitle {
  text-align: left;
  color: #4284df;
}
.cid-qSzu2R4WVY B {
  color: #555555;
}
.cid-qSzu2R4WVY .mbr-section-subtitle B {
  color: #767676;
}
.cid-qSzu2R4WVY H2 {
  text-align: center;
}
.cid-qSzs7QlJEu {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-qSzs7QlJEu .container-fluid {
  padding: 0 3rem;
}
.cid-qSzs7QlJEu .mbr-section-title {
  margin-bottom: 1.5em;
  text-align: center;
}
.cid-qSzs7QlJEu .input-main {
  width: 99.6%;
  margin-left: .1em;
  justify-content: center;
}
.cid-qSzs7QlJEu .input-main label {
  color: #767676;
}
.cid-qSzs7QlJEu .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-qSzs7QlJEu .input-wrap {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-qSzs7QlJEu .input-wrap input {
  border: 1px solid #ddd;
  border-radius: 22px;
  background-color: #ffffff;
  padding: 18px 25px;
  width: 96%;
}
.cid-qSzs7QlJEu .form-group {
  padding: 0;
}
.cid-qSzs7QlJEu .form-group textarea {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 1rem;
  width: 98%;
}
.cid-qSzs7QlJEu .btn-row {
  padding-left: 0;
}
.cid-qSzs7QlJEu .btn {
  padding: 1rem 4rem;
}
@media (max-width: 767px) {
  .cid-qSzs7QlJEu .container-fluid {
    padding: 0 1rem;
  }
  .cid-qSzs7QlJEu .btn {
    padding: 1rem 2rem;
    font-size: 16px !important;
  }
}
.cid-qSzs7QlJEu .mbr-section-title DIV {
  color: #879a9f;
}
.cid-qSzj8EoDxV {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSzj8EoDxV .container-fluid {
  padding: 0 3rem;
}
.cid-qSzj8EoDxV .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qSzj8EoDxV svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qSzj8EoDxV .signature > span {
  color: #096693;
}
@media (max-width: 767px) {
  .cid-qSzj8EoDxV .blockquote-quote {
    text-align: left;
  }
  .cid-qSzj8EoDxV .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSzj8EoDxV .mbr-section-title SPAN {
  color: #232323;
}
.cid-qSzj8EoDxV .mbr-text,
.cid-qSzj8EoDxV .blockquote-quote {
  color: #767676;
}
.cid-qSzj8EoDxV .mbr-text,
.cid-qSzj8EoDxV .blockquote-quote DIV {
  color: #767676;
  text-align: left;
}
.cid-qSzj8EoDxV .mbr-section-title {
  color: #879a9f;
  text-align: left;
}
.cid-qSAMUwIwym {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qSAMUwIwym .container-fluid {
  padding: 0 3rem;
}
.cid-qSAMUwIwym .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qSAMUwIwym svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qSAMUwIwym .signature > span {
  color: #096693;
}
@media (max-width: 767px) {
  .cid-qSAMUwIwym .blockquote-quote {
    text-align: left;
  }
  .cid-qSAMUwIwym .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSAMUwIwym .mbr-section-title {
  color: #879a9f;
}
.cid-qSzj8Gj6MO {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qSzj8Gj6MO .media-container-row .mbr-text {
  color: #efefef;
  text-align: left;
}
.cid-qSzj8Gj6MO .media-container-row .mbr-text B {
  color: #efd29e;
}
.cid-qSzj8HlsSH {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qSzj8HlsSH .social-media {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qSzj8HlsSH .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qSzj8HlsSH .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qSzj8HlsSH .logo-section {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qSzj8HlsSH .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #465052;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qSzj8HlsSH .icon-transition span:hover {
  background-color: #1ba1e2;
}
.cid-qSzj8HlsSH .mbr-text {
  color: #cccccc;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-qSzj8HlsSH .social-media {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qSzj8HlsSH .logo-section {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qSzj8HlsSH .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .nav-item:focus,
.cid-trJ0RDYqk6 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-trJ0RDYqk6 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link {
    position: relative;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #096693, #1ba1e2);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-trJ0RDYqk6 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-trJ0RDYqk6 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-trJ0RDYqk6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trJ0RDYqk6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trJ0RDYqk6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0f3f74;
}
.cid-trJ0RDYqk6 .navbar.opened {
  transition: all .3s;
  background: #0f3f74 !important;
}
.cid-trJ0RDYqk6 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-trJ0RDYqk6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-trJ0RDYqk6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trJ0RDYqk6 .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-trJ0RDYqk6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trJ0RDYqk6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-trJ0RDYqk6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-trJ0RDYqk6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-trJ0RDYqk6 .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-trJ0RDYqk6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-trJ0RDYqk6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-trJ0RDYqk6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-trJ0RDYqk6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-trJ0RDYqk6 .navbar .navbar-toggler {
    flex-basis: 30%;
  }
  .cid-trJ0RDYqk6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-trJ0RDYqk6 .navbar.navbar-short {
  background: #0f3f74 !important;
  min-height: 60px;
}
.cid-trJ0RDYqk6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-trJ0RDYqk6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-trJ0RDYqk6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-trJ0RDYqk6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trJ0RDYqk6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trJ0RDYqk6 .dropdown-item.active,
.cid-trJ0RDYqk6 .dropdown-item:active {
  background-color: transparent;
}
.cid-trJ0RDYqk6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trJ0RDYqk6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trJ0RDYqk6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trJ0RDYqk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0f3f74;
}
.cid-trJ0RDYqk6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-trJ0RDYqk6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trJ0RDYqk6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-trJ0RDYqk6 .navbar-buttons {
  text-align: center;
}
.cid-trJ0RDYqk6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-trJ0RDYqk6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-trJ0RDYqk6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trJ0RDYqk6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-trJ0RDYqk6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-trJ0RDYqk6 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-trJ0RDYqk6 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-trJ0RDYqk6 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
