body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Comfortaa', display;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', display;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #a38dfd !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #879a9f !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #6642fc;
  border-color: #6642fc;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe0613;
  border-color: #fe0613;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13709e;
  border-color: #13709e;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82acb6;
  border-color: #82acb6;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #617479;
  border-color: #617479;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a38dfd;
  border-color: #a38dfd;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #5229fb;
  color: #5229fb !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #a38dfd;
  border-color: #a38dfd;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe525b;
  border-color: #fe525b;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fe525b !important;
  border-color: #fe525b !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #879a9f;
  border-color: #879a9f;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #a38dfd !important;
}
.text-secondary {
  color: #fe525b !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #879a9f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #5229fb !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9010d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #b2ccd2;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s, .3s, .3s, .8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a38dfd;
  border-color: #a38dfd;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a38dfd;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Comfortaa', display;
  font-size: 1.1rem;
}
blockquote {
  border-color: #a38dfd;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #a38dfd;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #a38dfd;
  border-bottom-color: #a38dfd;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #a38dfd !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #fe525b !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23a38dfd' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-sqOywtkP8f .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  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-sqOywtkP8f .nav-item,
.cid-sqOywtkP8f .nav-link,
.cid-sqOywtkP8f .navbar-caption {
  font-weight: normal;
}
.cid-sqOywtkP8f .nav-item:focus,
.cid-sqOywtkP8f .nav-link:focus {
  outline: none;
}
.cid-sqOywtkP8f .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sqOywtkP8f .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  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-sqOywtkP8f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqOywtkP8f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqOywtkP8f .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #188ef4;
}
.cid-sqOywtkP8f .navbar.opened {
  transition: all 0.3s;
  background: #188ef4 !important;
}
.cid-sqOywtkP8f .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sqOywtkP8f .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sqOywtkP8f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sqOywtkP8f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sqOywtkP8f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqOywtkP8f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sqOywtkP8f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sqOywtkP8f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sqOywtkP8f .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sqOywtkP8f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sqOywtkP8f .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sqOywtkP8f .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sqOywtkP8f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sqOywtkP8f .navbar.navbar-short {
  background: #188ef4 !important;
  min-height: 60px;
}
.cid-sqOywtkP8f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sqOywtkP8f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sqOywtkP8f .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sqOywtkP8f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sqOywtkP8f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sqOywtkP8f .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sqOywtkP8f .dropdown-item.active,
.cid-sqOywtkP8f .dropdown-item:active {
  background-color: transparent;
}
.cid-sqOywtkP8f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sqOywtkP8f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sqOywtkP8f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #188ef4;
}
.cid-sqOywtkP8f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sqOywtkP8f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqOywtkP8f ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sqOywtkP8f .navbar-buttons {
  text-align: center;
}
.cid-sqOywtkP8f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqOywtkP8f .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sqOywtkP8f a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqOywtkP8f .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sqOywtkP8f .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sqOywtkP8f .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sqOywtkP8f .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sqOywtkP8f .navbar {
    height: 77px;
  }
  .cid-sqOywtkP8f .navbar.opened {
    height: auto;
  }
  .cid-sqOywtkP8f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sqOyA4qbpT {
  background-image: url("../../../assets/images/mbr-1920x1237.jpg");
}
.cid-sqOyA4qbpT .mbr-section-title,
.cid-sqOyA4qbpT .mbr-section-subtitle {
  color: #879a9f;
}
.cid-sqOyA4qbpT .mbr-section-text {
  color: #767676;
}
.cid-sqOyA4qbpT .mbr-text,
.cid-sqOyA4qbpT .typed-text,
.cid-sqOyA4qbpT .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sqOyA4qbpT .btn {
  margin-left: 4px !important;
}
.cid-sqOyA4qbpT .animated-element {
  color: #fe525b;
}
.cid-sqOyA4qbpT .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #fe525b;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sqOyA4qbpT .mbr-section-title {
  color: #ffffff;
}
.cid-sqOyA4qbpT .mbr-section-subtitle,
.cid-sqOyA4qbpT .typed-text {
  color: #ffffff;
}
.cid-sqOyMN6jkt {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1237.jpg");
}
.cid-sqOyMN6jkt .container-fluid {
  padding: 0 3rem;
}
.cid-sqOyMN6jkt .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sqOyMN6jkt .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-sqOyMN6jkt .card {
  margin-bottom: 2rem;
}
.cid-sqOyMN6jkt .card-img {
  width: auto !important;
}
.cid-sqOyMN6jkt .card-img .mbr-iconfont {
  color: #ffa0a4;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #ffa0a4, #a38dfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-sqOyMN6jkt .content-row {
  word-wrap: break-word;
}
.cid-sqOyMN6jkt .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqOyMN6jkt .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-sqOyMN6jkt .mbr-text {
  color: #ffffff;
  margin: 0;
}
.cid-sqOyMN6jkt .card-title {
  color: #fe525b;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sqOyMN6jkt .card-title,
  .cid-sqOyMN6jkt .card-box {
    text-align: left;
  }
  .cid-sqOyMN6jkt .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sqOyMN6jkt .mbr-section-title,
.cid-sqOyMN6jkt .underline {
  color: #ffffff;
}
.cid-sqOyMN6jkt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sqOyVzJNbV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #289c70;
}
.cid-sqOyVzJNbV .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqOyVzJNbV .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-sqOyVzJNbV .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sqOyVzJNbV .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sqOyVzJNbV .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-sqOyVzJNbV .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sqOyVzJNbV .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sqOyVzJNbV .mbr-card-text {
  margin: 0;
}
.cid-sqOyVzJNbV .mbr-section-title {
  color: #ffffff;
}
.cid-sumjLedF53 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #289c70;
}
.cid-sumjLedF53 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sumjLedF53 .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-sumjLedF53 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-sumjLedF53 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sumjLedF53 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-sumjLedF53 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sumjLedF53 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-sumjLedF53 .mbr-card-text {
  margin: 0;
}
.cid-sumjLedF53 .mbr-section-title {
  color: #ffffff;
}
.cid-sumsDEvuby {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #289c70;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .content {
    text-align: center;
  }
  .cid-sumsDEvuby .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sumsDEvuby .logo-subtitle {
  color: #8d97ad;
}
.cid-sumsDEvuby .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sumsDEvuby .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sumsDEvuby .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sumsDEvuby .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-sumsDEvuby .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sumsDEvuby .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sumsDEvuby .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sumsDEvuby .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sumsDEvuby .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sumsDEvuby .list-item {
  display: flex;
}
.cid-sumsDEvuby .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sumsDEvuby ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sumsDEvuby ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sumsDEvuby ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-sumsDEvuby .logo-subtitle,
.cid-sumsDEvuby .media-wrap {
  color: #1b41e2;
}
.cid-sumsDEvuby .column-title {
  color: #ffffff;
}
.cid-sumsDEvuby P {
  color: #ffffff;
}
.cid-7D1vVzPMT2 P {
  color: #1281fc;
}
.cid-7D1vVzPMT2 DIV {
  color: #ffffff;
}
.cid-7D1vVzPMT2 H10 {
  color: #034e75;
}
.cid-7D1vVzPMT2 .hidden {
  display: none;
}
.cid-7D1vVzPMT2 .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 11px;
}
.cid-7D1vVzPMT2 .icon-bar a {
  display: block;
  text-align: center;
  padding: 3px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 11px;
}
.cid-7D1vVzPMT2 .icon-bar a:hover {
  background-color: #000000;
}
.cid-7D1vVzPMT2 .flag {
  background: transparent;
}
.cid-7D1vVzPMT2 .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-7D1vVzPMT2 .nav-right {
  float: left !important;
  position: relative;
}
.cid-7D1vVzPMT2 #google_translate_element {
  display: none;
}
.cid-7D1vVzPMT2 .goog-te-banner {
  display: none;
}
.cid-7D1vVzPMT2 .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-7D1vVzPMT2 .goog-te-spinner-pos {
  display: none !important;
}
.cid-7D1vVzPMT2 body {
  top: 0px !important;
}
.cid-7D1vVzPMT2 body body {
  top: 0 !important;
}
.cid-7D1vVzPMT2 body .goog-te-banner-frame {
  display: none !important;
}
.cid-7D1vVzPMT2 .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-7D1vVzPMT2 .goog-tooltip {
  display: none !important;
}
.cid-7D1vVzPMT2 .goog-tooltip:hover {
  display: none !important;
}
.cid-7D1vVzPMT2 .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-7D1vVzPMT2 #goog-gt-tt,
.cid-7D1vVzPMT2 .goog-te-balloon-frame {
  display: none !important;
}
.cid-7D1vVzPMT2 #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-7D1vVzPMT2 .goog-logo-link {
  display: none !important;
}
.cid-7D1vVzPMT2 .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-7D1vVzPMT2 div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-7D1vVzPMT2 div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-sqOywtkP8f .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  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-sqOywtkP8f .nav-item,
.cid-sqOywtkP8f .nav-link,
.cid-sqOywtkP8f .navbar-caption {
  font-weight: normal;
}
.cid-sqOywtkP8f .nav-item:focus,
.cid-sqOywtkP8f .nav-link:focus {
  outline: none;
}
.cid-sqOywtkP8f .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sqOywtkP8f .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  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-sqOywtkP8f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqOywtkP8f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqOywtkP8f .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #188ef4;
}
.cid-sqOywtkP8f .navbar.opened {
  transition: all 0.3s;
  background: #188ef4 !important;
}
.cid-sqOywtkP8f .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sqOywtkP8f .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sqOywtkP8f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sqOywtkP8f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sqOywtkP8f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqOywtkP8f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sqOywtkP8f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sqOywtkP8f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sqOywtkP8f .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sqOywtkP8f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sqOywtkP8f .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sqOywtkP8f .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sqOywtkP8f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sqOywtkP8f .navbar.navbar-short {
  background: #188ef4 !important;
  min-height: 60px;
}
.cid-sqOywtkP8f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sqOywtkP8f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sqOywtkP8f .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sqOywtkP8f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sqOywtkP8f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sqOywtkP8f .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sqOywtkP8f .dropdown-item.active,
.cid-sqOywtkP8f .dropdown-item:active {
  background-color: transparent;
}
.cid-sqOywtkP8f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sqOywtkP8f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sqOywtkP8f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #188ef4;
}
.cid-sqOywtkP8f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sqOywtkP8f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqOywtkP8f ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sqOywtkP8f .navbar-buttons {
  text-align: center;
}
.cid-sqOywtkP8f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqOywtkP8f .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sqOywtkP8f a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqOywtkP8f .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sqOywtkP8f .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sqOywtkP8f .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sqOywtkP8f .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sqOywtkP8f .navbar {
    height: 77px;
  }
  .cid-sqOywtkP8f .navbar.opened {
    height: auto;
  }
  .cid-sqOywtkP8f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syvGjDM0tL {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #289c70;
}
.cid-syvGjDM0tL .container-fluid {
  padding: 0 3rem;
}
.cid-syvGjDM0tL .media-container-column {
  padding: 0 2rem;
}
.cid-syvGjDM0tL .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-syvGjDM0tL .container-fluid {
    padding: 0 1rem;
  }
}
.cid-syvHjFYVep {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #289c70;
}
.cid-syvHjFYVep .container-fluid {
  padding: 0 3rem;
}
.cid-syvHjFYVep .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-syvHjFYVep svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-syvHjFYVep .signature > span {
  color: #a38dfd;
}
@media (max-width: 767px) {
  .cid-syvHjFYVep .blockquote-quote {
    text-align: left;
  }
  .cid-syvHjFYVep .container-fluid {
    padding: 0 1rem;
  }
}
.cid-syvHjFYVep .mbr-section-title {
  color: #ffffff;
}
.cid-syvHjFYVep .mbr-text,
.cid-syvHjFYVep .blockquote-quote {
  color: #ffffff;
}
.cid-syvGpLm7w1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #289c70);
}
.cid-syvGpLm7w1 .counter-container {
  color: #767676;
}
.cid-syvGpLm7w1 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-syvGpLm7w1 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-syvGpLm7w1 .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
  position: relative;
}
.cid-syvGpLm7w1 .counter-container ol li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #bbbbbb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bbbbbb, #ffffff);
  border-radius: 0;
}
.cid-syvGpLm7w1 .mbr-text {
  color: #767676;
}
.cid-sumsDEvuby {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #289c70;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .content {
    text-align: center;
  }
  .cid-sumsDEvuby .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sumsDEvuby .logo-subtitle {
  color: #8d97ad;
}
.cid-sumsDEvuby .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sumsDEvuby .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sumsDEvuby .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sumsDEvuby .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-sumsDEvuby .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sumsDEvuby .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sumsDEvuby .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sumsDEvuby .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sumsDEvuby .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sumsDEvuby .list-item {
  display: flex;
}
.cid-sumsDEvuby .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sumsDEvuby ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sumsDEvuby ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sumsDEvuby ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-sumsDEvuby .logo-subtitle,
.cid-sumsDEvuby .media-wrap {
  color: #1b41e2;
}
.cid-sumsDEvuby .column-title {
  color: #ffffff;
}
.cid-sumsDEvuby P {
  color: #ffffff;
}
.cid-sqOywtkP8f .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  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-sqOywtkP8f .nav-item,
.cid-sqOywtkP8f .nav-link,
.cid-sqOywtkP8f .navbar-caption {
  font-weight: normal;
}
.cid-sqOywtkP8f .nav-item:focus,
.cid-sqOywtkP8f .nav-link:focus {
  outline: none;
}
.cid-sqOywtkP8f .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sqOywtkP8f .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  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-sqOywtkP8f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqOywtkP8f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqOywtkP8f .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #188ef4;
}
.cid-sqOywtkP8f .navbar.opened {
  transition: all 0.3s;
  background: #188ef4 !important;
}
.cid-sqOywtkP8f .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sqOywtkP8f .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sqOywtkP8f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sqOywtkP8f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sqOywtkP8f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqOywtkP8f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sqOywtkP8f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sqOywtkP8f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sqOywtkP8f .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sqOywtkP8f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sqOywtkP8f .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sqOywtkP8f .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sqOywtkP8f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sqOywtkP8f .navbar.navbar-short {
  background: #188ef4 !important;
  min-height: 60px;
}
.cid-sqOywtkP8f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sqOywtkP8f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sqOywtkP8f .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sqOywtkP8f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sqOywtkP8f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sqOywtkP8f .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sqOywtkP8f .dropdown-item.active,
.cid-sqOywtkP8f .dropdown-item:active {
  background-color: transparent;
}
.cid-sqOywtkP8f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sqOywtkP8f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sqOywtkP8f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #188ef4;
}
.cid-sqOywtkP8f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sqOywtkP8f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqOywtkP8f ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sqOywtkP8f .navbar-buttons {
  text-align: center;
}
.cid-sqOywtkP8f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqOywtkP8f .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sqOywtkP8f a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqOywtkP8f .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sqOywtkP8f .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sqOywtkP8f .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sqOywtkP8f .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sqOywtkP8f .navbar {
    height: 77px;
  }
  .cid-sqOywtkP8f .navbar.opened {
    height: auto;
  }
  .cid-sqOywtkP8f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syvLrO5cyc {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #289c70;
}
.cid-syvLrO5cyc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-syvLrO5cyc .mbr-text {
  color: #767676;
}
.cid-syvLrO5cyc .card {
  display: block;
  position: relative;
}
.cid-syvLrO5cyc .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-syvLrO5cyc .card-wrapper {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-syvLrO5cyc .card-wrapper .card-img {
  display: block;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.cid-syvLrO5cyc .card-wrapper .card-img .mbr-overlay {
  background: #a38dfd;
  display: block;
  opacity: 0.8;
  transition: all .3s;
  border-bottom-left-radius: 50%;
  background: linear-gradient(135deg, #a38dfd, #ffa0a4);
}
.cid-syvLrO5cyc .card-wrapper .card-img .mbr-section-btn {
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  transition: opacity .3s;
  margin: auto;
}
.cid-syvLrO5cyc .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-syvLrO5cyc .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-syvLrO5cyc .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-syvLrO5cyc .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-syvLrO5cyc .popup-btn .mbr-overlay {
  opacity: 0;
  height: 0;
  bottom: 0;
  top: auto;
  border-bottom-left-radius: 0 !important;
}
.cid-syvLrO5cyc .popup-btn .mbr-section-btn {
  opacity: 0;
}
.cid-syvLrO5cyc .popup-btn:hover .mbr-overlay {
  opacity: 0.8;
  height: 100%;
}
.cid-syvLrO5cyc .popup-btn:hover .mbr-section-btn {
  opacity: 1;
}
.cid-syvLrO5cyc .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-syvLrO5cyc .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
@media (min-width: 768px) {
  .cid-syvLrO5cyc .mbr-section-title,
  .cid-syvLrO5cyc .underline,
  .cid-syvLrO5cyc .mbr-section-subtitle {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-syvLrO5cyc .mbr-section-title,
.cid-syvLrO5cyc .underline {
  color: #ffffff;
}
.cid-tHUTk7PXN1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #289c70;
}
.cid-tHUTk7PXN1 .mbr-text,
.cid-tHUTk7PXN1 blockquote {
  color: #232323;
}
.cid-tHUTk7PXN1 .mbr-text {
  color: #ffffff;
}
.cid-sumsDEvuby {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #289c70;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .content {
    text-align: center;
  }
  .cid-sumsDEvuby .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sumsDEvuby .logo-subtitle {
  color: #8d97ad;
}
.cid-sumsDEvuby .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sumsDEvuby .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sumsDEvuby .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sumsDEvuby .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-sumsDEvuby .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sumsDEvuby .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sumsDEvuby .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sumsDEvuby .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sumsDEvuby .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sumsDEvuby .list-item {
  display: flex;
}
.cid-sumsDEvuby .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sumsDEvuby ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sumsDEvuby ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sumsDEvuby ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-sumsDEvuby .logo-subtitle,
.cid-sumsDEvuby .media-wrap {
  color: #1b41e2;
}
.cid-sumsDEvuby .column-title {
  color: #ffffff;
}
.cid-sumsDEvuby P {
  color: #ffffff;
}
.cid-sqOywtkP8f .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  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-sqOywtkP8f .nav-item,
.cid-sqOywtkP8f .nav-link,
.cid-sqOywtkP8f .navbar-caption {
  font-weight: normal;
}
.cid-sqOywtkP8f .nav-item:focus,
.cid-sqOywtkP8f .nav-link:focus {
  outline: none;
}
.cid-sqOywtkP8f .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sqOywtkP8f .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  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-sqOywtkP8f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqOywtkP8f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqOywtkP8f .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #188ef4;
}
.cid-sqOywtkP8f .navbar.opened {
  transition: all 0.3s;
  background: #188ef4 !important;
}
.cid-sqOywtkP8f .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sqOywtkP8f .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sqOywtkP8f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sqOywtkP8f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sqOywtkP8f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqOywtkP8f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sqOywtkP8f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sqOywtkP8f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sqOywtkP8f .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sqOywtkP8f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sqOywtkP8f .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sqOywtkP8f .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sqOywtkP8f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sqOywtkP8f .navbar.navbar-short {
  background: #188ef4 !important;
  min-height: 60px;
}
.cid-sqOywtkP8f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sqOywtkP8f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sqOywtkP8f .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sqOywtkP8f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sqOywtkP8f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sqOywtkP8f .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sqOywtkP8f .dropdown-item.active,
.cid-sqOywtkP8f .dropdown-item:active {
  background-color: transparent;
}
.cid-sqOywtkP8f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sqOywtkP8f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sqOywtkP8f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #188ef4;
}
.cid-sqOywtkP8f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sqOywtkP8f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqOywtkP8f ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sqOywtkP8f .navbar-buttons {
  text-align: center;
}
.cid-sqOywtkP8f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqOywtkP8f .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sqOywtkP8f a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqOywtkP8f .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sqOywtkP8f .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sqOywtkP8f .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sqOywtkP8f .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sqOywtkP8f .navbar {
    height: 77px;
  }
  .cid-sqOywtkP8f .navbar.opened {
    height: auto;
  }
  .cid-sqOywtkP8f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syyThQt2sZ {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #289c70;
}
.cid-syyThQt2sZ .mbr-text,
.cid-syyThQt2sZ blockquote {
  color: #232323;
}
.cid-syyThQt2sZ .mbr-text DIV {
  text-align: center;
}
.cid-syyThQt2sZ .mbr-text {
  color: #ffffff;
}
.cid-syyUi7lyvI {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #289c70;
}
.cid-syyUi7lyvI .container-fluid {
  padding: 0 3rem;
}
.cid-syyUi7lyvI .media-container-column {
  padding: 0 2rem;
}
.cid-syyUi7lyvI .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-syyUi7lyvI .container-fluid {
    padding: 0 1rem;
  }
}
.cid-syyUi7lyvI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sumsDEvuby {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #289c70;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .content {
    text-align: center;
  }
  .cid-sumsDEvuby .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sumsDEvuby .logo-subtitle {
  color: #8d97ad;
}
.cid-sumsDEvuby .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sumsDEvuby .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sumsDEvuby .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sumsDEvuby .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-sumsDEvuby .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sumsDEvuby .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sumsDEvuby .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sumsDEvuby .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sumsDEvuby .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sumsDEvuby .list-item {
  display: flex;
}
.cid-sumsDEvuby .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sumsDEvuby ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sumsDEvuby ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sumsDEvuby ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-sumsDEvuby .logo-subtitle,
.cid-sumsDEvuby .media-wrap {
  color: #1b41e2;
}
.cid-sumsDEvuby .column-title {
  color: #ffffff;
}
.cid-sumsDEvuby P {
  color: #ffffff;
}
.cid-syyV6WSXHP .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  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-syyV6WSXHP .nav-item,
.cid-syyV6WSXHP .nav-link,
.cid-syyV6WSXHP .navbar-caption {
  font-weight: normal;
}
.cid-syyV6WSXHP .nav-item:focus,
.cid-syyV6WSXHP .nav-link:focus {
  outline: none;
}
.cid-syyV6WSXHP .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-syyV6WSXHP .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-syyV6WSXHP .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-syyV6WSXHP .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-syyV6WSXHP .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-syyV6WSXHP .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-syyV6WSXHP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-syyV6WSXHP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  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-syyV6WSXHP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syyV6WSXHP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syyV6WSXHP .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #188ef4;
}
.cid-syyV6WSXHP .navbar.opened {
  transition: all 0.3s;
  background: #188ef4 !important;
}
.cid-syyV6WSXHP .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-syyV6WSXHP .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-syyV6WSXHP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syyV6WSXHP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-syyV6WSXHP .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-syyV6WSXHP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syyV6WSXHP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-syyV6WSXHP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syyV6WSXHP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-syyV6WSXHP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syyV6WSXHP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syyV6WSXHP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syyV6WSXHP .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-syyV6WSXHP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syyV6WSXHP .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-syyV6WSXHP .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-syyV6WSXHP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syyV6WSXHP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-syyV6WSXHP .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-syyV6WSXHP .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-syyV6WSXHP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syyV6WSXHP .navbar.navbar-short {
  background: #188ef4 !important;
  min-height: 60px;
}
.cid-syyV6WSXHP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-syyV6WSXHP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-syyV6WSXHP .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-syyV6WSXHP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syyV6WSXHP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syyV6WSXHP .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-syyV6WSXHP .dropdown-item.active,
.cid-syyV6WSXHP .dropdown-item:active {
  background-color: transparent;
}
.cid-syyV6WSXHP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syyV6WSXHP .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syyV6WSXHP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #188ef4;
}
.cid-syyV6WSXHP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syyV6WSXHP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syyV6WSXHP ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-syyV6WSXHP .navbar-buttons {
  text-align: center;
}
.cid-syyV6WSXHP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-syyV6WSXHP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-syyV6WSXHP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syyV6WSXHP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syyV6WSXHP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syyV6WSXHP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syyV6WSXHP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syyV6WSXHP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syyV6WSXHP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syyV6WSXHP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syyV6WSXHP .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-syyV6WSXHP a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-syyV6WSXHP .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-syyV6WSXHP .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-syyV6WSXHP .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-syyV6WSXHP .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syyV6WSXHP .navbar {
    height: 77px;
  }
  .cid-syyV6WSXHP .navbar.opened {
    height: auto;
  }
  .cid-syyV6WSXHP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syyV6XskEd {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #289c70;
}
.cid-syyV6XskEd .mbr-text,
.cid-syyV6XskEd blockquote {
  color: #232323;
}
.cid-syyV6XskEd .mbr-text DIV {
  text-align: center;
}
.cid-syyV6XskEd .mbr-text {
  color: #ffffff;
}
.cid-syyV6XKf6s {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #289c70;
}
.cid-syyV6XKf6s .container-fluid {
  padding: 0 3rem;
}
.cid-syyV6XKf6s .media-container-column {
  padding: 0 2rem;
}
.cid-syyV6XKf6s .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-syyV6XKf6s .container-fluid {
    padding: 0 1rem;
  }
}
.cid-syyV6XKf6s .mbr-section-subtitle {
  color: #ffffff;
}
.cid-syyV6YiYKE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #289c70;
}
@media (max-width: 767px) {
  .cid-syyV6YiYKE .content {
    text-align: center;
  }
  .cid-syyV6YiYKE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-syyV6YiYKE .logo-subtitle {
  color: #8d97ad;
}
.cid-syyV6YiYKE .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-syyV6YiYKE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-syyV6YiYKE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-syyV6YiYKE .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-syyV6YiYKE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-syyV6YiYKE .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-syyV6YiYKE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-syyV6YiYKE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-syyV6YiYKE .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-syyV6YiYKE .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-syyV6YiYKE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-syyV6YiYKE .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-syyV6YiYKE .list-item {
  display: flex;
}
.cid-syyV6YiYKE .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-syyV6YiYKE ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-syyV6YiYKE ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-syyV6YiYKE ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-syyV6YiYKE .logo-subtitle,
.cid-syyV6YiYKE .media-wrap {
  color: #1b41e2;
}
.cid-syyV6YiYKE .column-title {
  color: #ffffff;
}
.cid-syyV6YiYKE P {
  color: #ffffff;
}
.cid-sqOywtkP8f .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  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-sqOywtkP8f .nav-item,
.cid-sqOywtkP8f .nav-link,
.cid-sqOywtkP8f .navbar-caption {
  font-weight: normal;
}
.cid-sqOywtkP8f .nav-item:focus,
.cid-sqOywtkP8f .nav-link:focus {
  outline: none;
}
.cid-sqOywtkP8f .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sqOywtkP8f .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqOywtkP8f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  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-sqOywtkP8f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqOywtkP8f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqOywtkP8f .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #188ef4;
}
.cid-sqOywtkP8f .navbar.opened {
  transition: all 0.3s;
  background: #188ef4 !important;
}
.cid-sqOywtkP8f .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sqOywtkP8f .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sqOywtkP8f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sqOywtkP8f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sqOywtkP8f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sqOywtkP8f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqOywtkP8f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sqOywtkP8f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sqOywtkP8f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sqOywtkP8f .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sqOywtkP8f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sqOywtkP8f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sqOywtkP8f .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sqOywtkP8f .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sqOywtkP8f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sqOywtkP8f .navbar.navbar-short {
  background: #188ef4 !important;
  min-height: 60px;
}
.cid-sqOywtkP8f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sqOywtkP8f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sqOywtkP8f .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sqOywtkP8f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sqOywtkP8f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sqOywtkP8f .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sqOywtkP8f .dropdown-item.active,
.cid-sqOywtkP8f .dropdown-item:active {
  background-color: transparent;
}
.cid-sqOywtkP8f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sqOywtkP8f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sqOywtkP8f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #188ef4;
}
.cid-sqOywtkP8f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sqOywtkP8f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqOywtkP8f ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sqOywtkP8f .navbar-buttons {
  text-align: center;
}
.cid-sqOywtkP8f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqOywtkP8f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sqOywtkP8f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqOywtkP8f .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sqOywtkP8f a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqOywtkP8f .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sqOywtkP8f .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sqOywtkP8f .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sqOywtkP8f .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sqOywtkP8f .navbar {
    height: 77px;
  }
  .cid-sqOywtkP8f .navbar.opened {
    height: auto;
  }
  .cid-sqOywtkP8f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syz0Q8gtsE {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #289c70;
}
.cid-syz0Q8gtsE .container-fluid {
  padding: 0 3rem;
}
.cid-syz0Q8gtsE .media-container-column {
  padding: 0 2rem;
}
.cid-syz0Q8gtsE .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-syz0Q8gtsE .container-fluid {
    padding: 0 1rem;
  }
}
.cid-syz0ogPgwu {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #289c70;
}
.cid-syz0ogPgwu .mbr-text,
.cid-syz0ogPgwu blockquote {
  color: #232323;
}
.cid-syz0ogPgwu .mbr-text {
  color: #ffffff;
}
.cid-txCJqUQbyU {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #289c70;
}
.cid-txCJqUQbyU .mbr-text,
.cid-txCJqUQbyU blockquote {
  color: #232323;
}
.cid-txCJqUQbyU .mbr-text {
  color: #ffffff;
}
.cid-t4WNAvdfi7 {
  background: #289c70;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-t4WNAvdfi7 .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-t4WNAvdfi7 .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-t4WNAvdfi7 .image-block:hover:before {
  opacity: 0.6;
}
.cid-t4WNAvdfi7 .image-block:hover .wrap {
  opacity: 1;
}
.cid-t4WNAvdfi7 .image-block:hover img {
  transform: scale(1.1);
}
.cid-t4WNAvdfi7 .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t4WNAvdfi7 img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-t4WNAvdfi7 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t4WNAvdfi7 .wrap {
    opacity: 1 !important;
  }
  .cid-t4WNAvdfi7 .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-syz0AkZ3cx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #289c70;
}
.cid-syz0AkZ3cx .mbr-text,
.cid-syz0AkZ3cx blockquote {
  color: #232323;
}
.cid-syz0AkZ3cx .mbr-text {
  color: #ffffff;
}
.cid-sumsDEvuby {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #289c70;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .content {
    text-align: center;
  }
  .cid-sumsDEvuby .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sumsDEvuby .logo-subtitle {
  color: #8d97ad;
}
.cid-sumsDEvuby .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sumsDEvuby .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sumsDEvuby .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sumsDEvuby .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-sumsDEvuby .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sumsDEvuby .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sumsDEvuby .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sumsDEvuby .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sumsDEvuby .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sumsDEvuby .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sumsDEvuby .list-item {
  display: flex;
}
.cid-sumsDEvuby .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-sumsDEvuby ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sumsDEvuby ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sumsDEvuby ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-sumsDEvuby .logo-subtitle,
.cid-sumsDEvuby .media-wrap {
  color: #1b41e2;
}
.cid-sumsDEvuby .column-title {
  color: #ffffff;
}
.cid-sumsDEvuby P {
  color: #ffffff;
}
.cid-syz2yrt3dr .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  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-syz2yrt3dr .nav-item,
.cid-syz2yrt3dr .nav-link,
.cid-syz2yrt3dr .navbar-caption {
  font-weight: normal;
}
.cid-syz2yrt3dr .nav-item:focus,
.cid-syz2yrt3dr .nav-link:focus {
  outline: none;
}
.cid-syz2yrt3dr .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-syz2yrt3dr .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-syz2yrt3dr .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-syz2yrt3dr .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-syz2yrt3dr .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-syz2yrt3dr .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-syz2yrt3dr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-syz2yrt3dr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  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-syz2yrt3dr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syz2yrt3dr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syz2yrt3dr .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #188ef4;
}
.cid-syz2yrt3dr .navbar.opened {
  transition: all 0.3s;
  background: #188ef4 !important;
}
.cid-syz2yrt3dr .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-syz2yrt3dr .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-syz2yrt3dr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syz2yrt3dr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-syz2yrt3dr .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-syz2yrt3dr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syz2yrt3dr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-syz2yrt3dr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syz2yrt3dr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-syz2yrt3dr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syz2yrt3dr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syz2yrt3dr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syz2yrt3dr .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-syz2yrt3dr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syz2yrt3dr .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-syz2yrt3dr .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-syz2yrt3dr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syz2yrt3dr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-syz2yrt3dr .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-syz2yrt3dr .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-syz2yrt3dr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syz2yrt3dr .navbar.navbar-short {
  background: #188ef4 !important;
  min-height: 60px;
}
.cid-syz2yrt3dr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-syz2yrt3dr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-syz2yrt3dr .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-syz2yrt3dr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syz2yrt3dr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syz2yrt3dr .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-syz2yrt3dr .dropdown-item.active,
.cid-syz2yrt3dr .dropdown-item:active {
  background-color: transparent;
}
.cid-syz2yrt3dr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syz2yrt3dr .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syz2yrt3dr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #188ef4;
}
.cid-syz2yrt3dr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syz2yrt3dr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syz2yrt3dr ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-syz2yrt3dr .navbar-buttons {
  text-align: center;
}
.cid-syz2yrt3dr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-syz2yrt3dr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-syz2yrt3dr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syz2yrt3dr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syz2yrt3dr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syz2yrt3dr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syz2yrt3dr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syz2yrt3dr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syz2yrt3dr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syz2yrt3dr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syz2yrt3dr .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-syz2yrt3dr a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-syz2yrt3dr .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-syz2yrt3dr .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-syz2yrt3dr .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-syz2yrt3dr .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syz2yrt3dr .navbar {
    height: 77px;
  }
  .cid-syz2yrt3dr .navbar.opened {
    height: auto;
  }
  .cid-syz2yrt3dr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syz2ysngzB {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #289c70;
}
.cid-syz2ysngzB .container-fluid {
  padding: 0 3rem;
}
.cid-syz2ysngzB .media-container-column {
  padding: 0 2rem;
}
.cid-syz2ysngzB .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-syz2ysngzB .container-fluid {
    padding: 0 1rem;
  }
}
.cid-syz2ysJ38Z {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #289c70;
}
.cid-syz2ysJ38Z .mbr-text,
.cid-syz2ysJ38Z blockquote {
  color: #232323;
}
.cid-syz2ysJ38Z .mbr-text {
  color: #ffffff;
}
.cid-t4WIee7x9i {
  background: #289c70;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-t4WIee7x9i .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-t4WIee7x9i .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-t4WIee7x9i .image-block:hover:before {
  opacity: 0.6;
}
.cid-t4WIee7x9i .image-block:hover .wrap {
  opacity: 1;
}
.cid-t4WIee7x9i .image-block:hover img {
  transform: scale(1.1);
}
.cid-t4WIee7x9i .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t4WIee7x9i img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-t4WIee7x9i .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t4WIee7x9i .wrap {
    opacity: 1 !important;
  }
  .cid-t4WIee7x9i .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-syz2ytXu8F {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #289c70;
}
.cid-syz2ytXu8F .mbr-text,
.cid-syz2ytXu8F blockquote {
  color: #232323;
}
.cid-syz2ytXu8F .mbr-text {
  color: #ffffff;
}
.cid-t4WMJDvOFO {
  background: #289c70;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-t4WMJDvOFO .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-t4WMJDvOFO .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-t4WMJDvOFO .image-block:hover:before {
  opacity: 0.6;
}
.cid-t4WMJDvOFO .image-block:hover .wrap {
  opacity: 1;
}
.cid-t4WMJDvOFO .image-block:hover img {
  transform: scale(1.1);
}
.cid-t4WMJDvOFO .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t4WMJDvOFO img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-t4WMJDvOFO .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t4WMJDvOFO .wrap {
    opacity: 1 !important;
  }
  .cid-t4WMJDvOFO .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-syz2yuoLw8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #289c70;
}
@media (max-width: 767px) {
  .cid-syz2yuoLw8 .content {
    text-align: center;
  }
  .cid-syz2yuoLw8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-syz2yuoLw8 .logo-subtitle {
  color: #8d97ad;
}
.cid-syz2yuoLw8 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-syz2yuoLw8 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-syz2yuoLw8 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-syz2yuoLw8 .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-syz2yuoLw8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-syz2yuoLw8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-syz2yuoLw8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-syz2yuoLw8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-syz2yuoLw8 .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-syz2yuoLw8 .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-syz2yuoLw8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-syz2yuoLw8 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-syz2yuoLw8 .list-item {
  display: flex;
}
.cid-syz2yuoLw8 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-syz2yuoLw8 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-syz2yuoLw8 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-syz2yuoLw8 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-syz2yuoLw8 .logo-subtitle,
.cid-syz2yuoLw8 .media-wrap {
  color: #1b41e2;
}
.cid-syz2yuoLw8 .column-title {
  color: #ffffff;
}
.cid-syz2yuoLw8 P {
  color: #ffffff;
}
.cid-syz2MjMt1H .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  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-syz2MjMt1H .nav-item,
.cid-syz2MjMt1H .nav-link,
.cid-syz2MjMt1H .navbar-caption {
  font-weight: normal;
}
.cid-syz2MjMt1H .nav-item:focus,
.cid-syz2MjMt1H .nav-link:focus {
  outline: none;
}
.cid-syz2MjMt1H .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-syz2MjMt1H .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-syz2MjMt1H .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-syz2MjMt1H .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-syz2MjMt1H .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-syz2MjMt1H .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-syz2MjMt1H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-syz2MjMt1H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  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-syz2MjMt1H .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syz2MjMt1H .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syz2MjMt1H .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #188ef4;
}
.cid-syz2MjMt1H .navbar.opened {
  transition: all 0.3s;
  background: #188ef4 !important;
}
.cid-syz2MjMt1H .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-syz2MjMt1H .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-syz2MjMt1H .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syz2MjMt1H .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-syz2MjMt1H .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-syz2MjMt1H .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syz2MjMt1H .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-syz2MjMt1H .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syz2MjMt1H .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-syz2MjMt1H .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syz2MjMt1H .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syz2MjMt1H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syz2MjMt1H .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-syz2MjMt1H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syz2MjMt1H .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-syz2MjMt1H .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-syz2MjMt1H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syz2MjMt1H .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-syz2MjMt1H .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-syz2MjMt1H .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-syz2MjMt1H .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syz2MjMt1H .navbar.navbar-short {
  background: #188ef4 !important;
  min-height: 60px;
}
.cid-syz2MjMt1H .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-syz2MjMt1H .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-syz2MjMt1H .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-syz2MjMt1H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syz2MjMt1H .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syz2MjMt1H .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-syz2MjMt1H .dropdown-item.active,
.cid-syz2MjMt1H .dropdown-item:active {
  background-color: transparent;
}
.cid-syz2MjMt1H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syz2MjMt1H .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syz2MjMt1H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #188ef4;
}
.cid-syz2MjMt1H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syz2MjMt1H .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syz2MjMt1H ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-syz2MjMt1H .navbar-buttons {
  text-align: center;
}
.cid-syz2MjMt1H button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-syz2MjMt1H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-syz2MjMt1H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syz2MjMt1H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syz2MjMt1H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syz2MjMt1H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syz2MjMt1H nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syz2MjMt1H nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syz2MjMt1H nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syz2MjMt1H nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syz2MjMt1H .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-syz2MjMt1H a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-syz2MjMt1H .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-syz2MjMt1H .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-syz2MjMt1H .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-syz2MjMt1H .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syz2MjMt1H .navbar {
    height: 77px;
  }
  .cid-syz2MjMt1H .navbar.opened {
    height: auto;
  }
  .cid-syz2MjMt1H .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syz2MkXqEo {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #289c70;
}
.cid-syz2MkXqEo .container-fluid {
  padding: 0 3rem;
}
.cid-syz2MkXqEo .media-container-column {
  padding: 0 2rem;
}
.cid-syz2MkXqEo .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-syz2MkXqEo .container-fluid {
    padding: 0 1rem;
  }
}
.cid-syz2MlsIUc {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #289c70;
}
.cid-syz2MlsIUc .mbr-text,
.cid-syz2MlsIUc blockquote {
  color: #232323;
}
.cid-syz2MlsIUc .mbr-text {
  color: #ffffff;
}
.cid-t4WKOBcQQF {
  background: #289c70;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-t4WKOBcQQF .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-t4WKOBcQQF .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-t4WKOBcQQF .image-block:hover:before {
  opacity: 0.6;
}
.cid-t4WKOBcQQF .image-block:hover .wrap {
  opacity: 1;
}
.cid-t4WKOBcQQF .image-block:hover img {
  transform: scale(1.1);
}
.cid-t4WKOBcQQF .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t4WKOBcQQF img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-t4WKOBcQQF .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t4WKOBcQQF .wrap {
    opacity: 1 !important;
  }
  .cid-t4WKOBcQQF .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-syz2MmxsCv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #289c70;
}
.cid-syz2MmxsCv .mbr-text,
.cid-syz2MmxsCv blockquote {
  color: #232323;
}
.cid-syz2MmxsCv .mbr-text {
  color: #ffffff;
}
.cid-syz2MmPEGk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #289c70;
}
@media (max-width: 767px) {
  .cid-syz2MmPEGk .content {
    text-align: center;
  }
  .cid-syz2MmPEGk .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-syz2MmPEGk .logo-subtitle {
  color: #8d97ad;
}
.cid-syz2MmPEGk .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-syz2MmPEGk .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-syz2MmPEGk .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-syz2MmPEGk .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-syz2MmPEGk .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-syz2MmPEGk .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-syz2MmPEGk .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-syz2MmPEGk .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-syz2MmPEGk .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-syz2MmPEGk .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-syz2MmPEGk .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-syz2MmPEGk .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-syz2MmPEGk .list-item {
  display: flex;
}
.cid-syz2MmPEGk .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-syz2MmPEGk ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-syz2MmPEGk ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-syz2MmPEGk ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-syz2MmPEGk .logo-subtitle,
.cid-syz2MmPEGk .media-wrap {
  color: #1b41e2;
}
.cid-syz2MmPEGk .column-title {
  color: #ffffff;
}
.cid-syz2MmPEGk P {
  color: #ffffff;
}
.cid-syz5gwhueQ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  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-syz5gwhueQ .nav-item,
.cid-syz5gwhueQ .nav-link,
.cid-syz5gwhueQ .navbar-caption {
  font-weight: normal;
}
.cid-syz5gwhueQ .nav-item:focus,
.cid-syz5gwhueQ .nav-link:focus {
  outline: none;
}
.cid-syz5gwhueQ .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-syz5gwhueQ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-syz5gwhueQ .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-syz5gwhueQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-syz5gwhueQ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-syz5gwhueQ .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-syz5gwhueQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-syz5gwhueQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  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-syz5gwhueQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syz5gwhueQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syz5gwhueQ .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #188ef4;
}
.cid-syz5gwhueQ .navbar.opened {
  transition: all 0.3s;
  background: #188ef4 !important;
}
.cid-syz5gwhueQ .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-syz5gwhueQ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-syz5gwhueQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syz5gwhueQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-syz5gwhueQ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-syz5gwhueQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syz5gwhueQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-syz5gwhueQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syz5gwhueQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-syz5gwhueQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syz5gwhueQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syz5gwhueQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syz5gwhueQ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-syz5gwhueQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syz5gwhueQ .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-syz5gwhueQ .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-syz5gwhueQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syz5gwhueQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-syz5gwhueQ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-syz5gwhueQ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-syz5gwhueQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syz5gwhueQ .navbar.navbar-short {
  background: #188ef4 !important;
  min-height: 60px;
}
.cid-syz5gwhueQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-syz5gwhueQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-syz5gwhueQ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-syz5gwhueQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syz5gwhueQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syz5gwhueQ .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-syz5gwhueQ .dropdown-item.active,
.cid-syz5gwhueQ .dropdown-item:active {
  background-color: transparent;
}
.cid-syz5gwhueQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syz5gwhueQ .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syz5gwhueQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #188ef4;
}
.cid-syz5gwhueQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syz5gwhueQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syz5gwhueQ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-syz5gwhueQ .navbar-buttons {
  text-align: center;
}
.cid-syz5gwhueQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-syz5gwhueQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-syz5gwhueQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syz5gwhueQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syz5gwhueQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syz5gwhueQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syz5gwhueQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syz5gwhueQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syz5gwhueQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syz5gwhueQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syz5gwhueQ .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-syz5gwhueQ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-syz5gwhueQ .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-syz5gwhueQ .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-syz5gwhueQ .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-syz5gwhueQ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syz5gwhueQ .navbar {
    height: 77px;
  }
  .cid-syz5gwhueQ .navbar.opened {
    height: auto;
  }
  .cid-syz5gwhueQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syz5gxjWm7 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #289c70;
}
.cid-syz5gxjWm7 .container-fluid {
  padding: 0 3rem;
}
.cid-syz5gxjWm7 .media-container-column {
  padding: 0 2rem;
}
.cid-syz5gxjWm7 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-syz5gxjWm7 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-syz5gxUG4z {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #289c70;
}
.cid-syz5gxUG4z .mbr-text,
.cid-syz5gxUG4z blockquote {
  color: #232323;
}
.cid-syz5gxUG4z .mbr-text {
  color: #ffffff;
}
.cid-t4WOGc4G0b {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #289c70;
}
@media (max-width: 991px) {
  .cid-t4WOGc4G0b .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t4WOGc4G0b .row {
  flex-direction: row-reverse;
}
.cid-t4WOGc4G0b img {
  width: 100%;
}
.cid-syz5gz47Dy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #289c70;
}
.cid-syz5gz47Dy .mbr-text,
.cid-syz5gz47Dy blockquote {
  color: #232323;
}
.cid-syz5gz47Dy .mbr-text {
  color: #ffffff;
}
.cid-syz5gzzH8U {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #289c70;
}
@media (max-width: 767px) {
  .cid-syz5gzzH8U .content {
    text-align: center;
  }
  .cid-syz5gzzH8U .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-syz5gzzH8U .logo-subtitle {
  color: #8d97ad;
}
.cid-syz5gzzH8U .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-syz5gzzH8U .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-syz5gzzH8U .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-syz5gzzH8U .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-syz5gzzH8U .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-syz5gzzH8U .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-syz5gzzH8U .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-syz5gzzH8U .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-syz5gzzH8U .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-syz5gzzH8U .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-syz5gzzH8U .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-syz5gzzH8U .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-syz5gzzH8U .list-item {
  display: flex;
}
.cid-syz5gzzH8U .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-syz5gzzH8U ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-syz5gzzH8U ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-syz5gzzH8U ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-syz5gzzH8U .logo-subtitle,
.cid-syz5gzzH8U .media-wrap {
  color: #1b41e2;
}
.cid-syz5gzzH8U .column-title {
  color: #ffffff;
}
.cid-syz5gzzH8U P {
  color: #ffffff;
}
.cid-syz6fpR8dm .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  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-syz6fpR8dm .nav-item,
.cid-syz6fpR8dm .nav-link,
.cid-syz6fpR8dm .navbar-caption {
  font-weight: normal;
}
.cid-syz6fpR8dm .nav-item:focus,
.cid-syz6fpR8dm .nav-link:focus {
  outline: none;
}
.cid-syz6fpR8dm .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-syz6fpR8dm .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-syz6fpR8dm .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-syz6fpR8dm .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-syz6fpR8dm .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-syz6fpR8dm .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-syz6fpR8dm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-syz6fpR8dm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  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-syz6fpR8dm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syz6fpR8dm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syz6fpR8dm .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #188ef4;
}
.cid-syz6fpR8dm .navbar.opened {
  transition: all 0.3s;
  background: #188ef4 !important;
}
.cid-syz6fpR8dm .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-syz6fpR8dm .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-syz6fpR8dm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syz6fpR8dm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-syz6fpR8dm .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-syz6fpR8dm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syz6fpR8dm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-syz6fpR8dm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syz6fpR8dm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-syz6fpR8dm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syz6fpR8dm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syz6fpR8dm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syz6fpR8dm .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-syz6fpR8dm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syz6fpR8dm .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-syz6fpR8dm .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-syz6fpR8dm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syz6fpR8dm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-syz6fpR8dm .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-syz6fpR8dm .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-syz6fpR8dm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syz6fpR8dm .navbar.navbar-short {
  background: #188ef4 !important;
  min-height: 60px;
}
.cid-syz6fpR8dm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-syz6fpR8dm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-syz6fpR8dm .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-syz6fpR8dm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syz6fpR8dm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syz6fpR8dm .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-syz6fpR8dm .dropdown-item.active,
.cid-syz6fpR8dm .dropdown-item:active {
  background-color: transparent;
}
.cid-syz6fpR8dm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syz6fpR8dm .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syz6fpR8dm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #188ef4;
}
.cid-syz6fpR8dm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syz6fpR8dm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syz6fpR8dm ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-syz6fpR8dm .navbar-buttons {
  text-align: center;
}
.cid-syz6fpR8dm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-syz6fpR8dm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-syz6fpR8dm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syz6fpR8dm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syz6fpR8dm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syz6fpR8dm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syz6fpR8dm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syz6fpR8dm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syz6fpR8dm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syz6fpR8dm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syz6fpR8dm .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-syz6fpR8dm a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-syz6fpR8dm .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-syz6fpR8dm .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-syz6fpR8dm .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-syz6fpR8dm .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syz6fpR8dm .navbar {
    height: 77px;
  }
  .cid-syz6fpR8dm .navbar.opened {
    height: auto;
  }
  .cid-syz6fpR8dm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syz6frjY3e {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #289c70;
}
.cid-syz6frjY3e .container-fluid {
  padding: 0 3rem;
}
.cid-syz6frjY3e .media-container-column {
  padding: 0 2rem;
}
.cid-syz6frjY3e .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-syz6frjY3e .container-fluid {
    padding: 0 1rem;
  }
}
.cid-syz6frOOXe {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #289c70;
}
.cid-syz6frOOXe .mbr-text,
.cid-syz6frOOXe blockquote {
  color: #232323;
}
.cid-t0NJXHNrpu {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #289c70;
}
.cid-t0NJXHNrpu .container-fluid {
  padding: 0 3rem;
}
.cid-t0NJXHNrpu .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-t0NJXHNrpu .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-t0NJXHNrpu .title-wrap {
  padding-left: 0;
  padding-right: 0;
}
.cid-t0NJXHNrpu .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-t0NJXHNrpu .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-t0NJXHNrpu .image-wrap img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-t0NJXHNrpu .content-section {
  padding: 3rem;
}
.cid-t0NJXHNrpu .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-t0NJXHNrpu .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #289c70;
  padding: 0rem;
  z-index: 10;
  border-radius: 15px;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .cid-t0NJXHNrpu .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t0NJXHNrpu .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-t0NJXHNrpu .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-t0NJXHNrpu .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-t0NJXHNrpu .underline,
.cid-t0NJXHNrpu .mbr-title {
  color: #ffffff;
}
.cid-t0NJXHNrpu .mbr-text {
  color: #ffffff;
}
.cid-t0NK01fz4C {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #289c70;
}
.cid-t0NK01fz4C .container-fluid {
  padding: 0 2rem;
}
.cid-t0NK01fz4C .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cid-t0NK01fz4C .mbr-title {
  padding: 0 1rem;
}
.cid-t0NK01fz4C .mbr-section-subtitle {
  margin-top: .8rem;
  margin-bottom: 1.3rem;
}
.cid-t0NK01fz4C .underline {
  padding: .5rem 1rem .5rem 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-t0NK01fz4C .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-t0NK01fz4C .image-wrap {
  width: 100%;
}
.cid-t0NK01fz4C .image-wrap img {
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.cid-t0NK01fz4C .btn {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.cid-t0NK01fz4C .card-wrapper {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-t0NK01fz4C .container-fluid {
    padding: 0rem;
  }
}
.cid-t0NK01fz4C .underline,
.cid-t0NK01fz4C .mbr-title {
  color: #ffffff;
}
.cid-t0NK01fz4C .mbr-text,
.cid-t0NK01fz4C .mbr-section-btn {
  color: #ffffff;
}
.cid-t0NMHdVXLn {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #289c70;
}
.cid-t0NMHdVXLn .container-fluid {
  padding: 0 2rem;
}
.cid-t0NMHdVXLn .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cid-t0NMHdVXLn .mbr-title {
  padding: 0 1rem;
}
.cid-t0NMHdVXLn .mbr-section-subtitle {
  margin-top: .8rem;
  margin-bottom: 1.3rem;
}
.cid-t0NMHdVXLn .underline {
  padding: .5rem 1rem .5rem 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-t0NMHdVXLn .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-t0NMHdVXLn .image-wrap {
  width: 100%;
}
.cid-t0NMHdVXLn .image-wrap img {
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.cid-t0NMHdVXLn .btn {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.cid-t0NMHdVXLn .card-wrapper {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-t0NMHdVXLn .container-fluid {
    padding: 0rem;
  }
}
.cid-t0NMHdVXLn .underline,
.cid-t0NMHdVXLn .mbr-title {
  color: #ffffff;
}
.cid-t0NMHdVXLn .mbr-text,
.cid-t0NMHdVXLn .mbr-section-btn {
  color: #ffffff;
}
.cid-syz6ftFxIu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #289c70;
}
@media (max-width: 767px) {
  .cid-syz6ftFxIu .content {
    text-align: center;
  }
  .cid-syz6ftFxIu .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-syz6ftFxIu .logo-subtitle {
  color: #8d97ad;
}
.cid-syz6ftFxIu .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-syz6ftFxIu .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-syz6ftFxIu .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-syz6ftFxIu .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-syz6ftFxIu .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-syz6ftFxIu .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-syz6ftFxIu .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-syz6ftFxIu .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-syz6ftFxIu .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-syz6ftFxIu .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-syz6ftFxIu .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-syz6ftFxIu .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-syz6ftFxIu .list-item {
  display: flex;
}
.cid-syz6ftFxIu .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-syz6ftFxIu ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-syz6ftFxIu ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-syz6ftFxIu ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-syz6ftFxIu .logo-subtitle,
.cid-syz6ftFxIu .media-wrap {
  color: #1b41e2;
}
.cid-syz6ftFxIu .column-title {
  color: #ffffff;
}
.cid-syz6ftFxIu P {
  color: #ffffff;
}
.cid-syz7MV1cGV .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  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-syz7MV1cGV .nav-item,
.cid-syz7MV1cGV .nav-link,
.cid-syz7MV1cGV .navbar-caption {
  font-weight: normal;
}
.cid-syz7MV1cGV .nav-item:focus,
.cid-syz7MV1cGV .nav-link:focus {
  outline: none;
}
.cid-syz7MV1cGV .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-syz7MV1cGV .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-syz7MV1cGV .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-syz7MV1cGV .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-syz7MV1cGV .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-syz7MV1cGV .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-syz7MV1cGV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-syz7MV1cGV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  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-syz7MV1cGV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syz7MV1cGV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syz7MV1cGV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #188ef4;
}
.cid-syz7MV1cGV .navbar.opened {
  transition: all 0.3s;
  background: #188ef4 !important;
}
.cid-syz7MV1cGV .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-syz7MV1cGV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-syz7MV1cGV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syz7MV1cGV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-syz7MV1cGV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-syz7MV1cGV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syz7MV1cGV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-syz7MV1cGV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syz7MV1cGV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-syz7MV1cGV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syz7MV1cGV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syz7MV1cGV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syz7MV1cGV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-syz7MV1cGV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syz7MV1cGV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-syz7MV1cGV .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-syz7MV1cGV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syz7MV1cGV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-syz7MV1cGV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-syz7MV1cGV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-syz7MV1cGV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syz7MV1cGV .navbar.navbar-short {
  background: #188ef4 !important;
  min-height: 60px;
}
.cid-syz7MV1cGV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-syz7MV1cGV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-syz7MV1cGV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-syz7MV1cGV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syz7MV1cGV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syz7MV1cGV .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-syz7MV1cGV .dropdown-item.active,
.cid-syz7MV1cGV .dropdown-item:active {
  background-color: transparent;
}
.cid-syz7MV1cGV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syz7MV1cGV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syz7MV1cGV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #188ef4;
}
.cid-syz7MV1cGV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syz7MV1cGV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syz7MV1cGV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-syz7MV1cGV .navbar-buttons {
  text-align: center;
}
.cid-syz7MV1cGV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-syz7MV1cGV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-syz7MV1cGV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syz7MV1cGV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syz7MV1cGV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syz7MV1cGV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syz7MV1cGV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syz7MV1cGV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syz7MV1cGV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syz7MV1cGV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syz7MV1cGV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-syz7MV1cGV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-syz7MV1cGV .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-syz7MV1cGV .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-syz7MV1cGV .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-syz7MV1cGV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syz7MV1cGV .navbar {
    height: 77px;
  }
  .cid-syz7MV1cGV .navbar.opened {
    height: auto;
  }
  .cid-syz7MV1cGV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syz7MWbZO4 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #289c70;
}
.cid-syz7MWbZO4 .container-fluid {
  padding: 0 3rem;
}
.cid-syz7MWbZO4 .media-container-column {
  padding: 0 2rem;
}
.cid-syz7MWbZO4 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-syz7MWbZO4 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-syz7MXeI11 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #289c70;
}
.cid-syz7MXeI11 .mbr-text,
.cid-syz7MXeI11 blockquote {
  color: #232323;
}
.cid-syz7MXeI11 .mbr-text {
  color: #ffffff;
}
.cid-t4WR1JpTD2 {
  background: #289c70;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-t4WR1JpTD2 .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-t4WR1JpTD2 .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-t4WR1JpTD2 .image-block:hover:before {
  opacity: 0.6;
}
.cid-t4WR1JpTD2 .image-block:hover .wrap {
  opacity: 1;
}
.cid-t4WR1JpTD2 .image-block:hover img {
  transform: scale(1.1);
}
.cid-t4WR1JpTD2 .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t4WR1JpTD2 img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-t4WR1JpTD2 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t4WR1JpTD2 .wrap {
    opacity: 1 !important;
  }
  .cid-t4WR1JpTD2 .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-syz7MYe1qz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #289c70;
}
.cid-syz7MYe1qz .mbr-text,
.cid-syz7MYe1qz blockquote {
  color: #232323;
}
.cid-syz7MYe1qz .mbr-text {
  color: #ffffff;
}
.cid-t4WRMfP5YM {
  background: #289c70;
  padding-top: 30px;
  padding-bottom: 45px;
}
.cid-t4WRMfP5YM .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-t4WRMfP5YM .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-t4WRMfP5YM .image-block:hover:before {
  opacity: 0.6;
}
.cid-t4WRMfP5YM .image-block:hover .wrap {
  opacity: 1;
}
.cid-t4WRMfP5YM .image-block:hover img {
  transform: scale(1.1);
}
.cid-t4WRMfP5YM .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t4WRMfP5YM img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-t4WRMfP5YM .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t4WRMfP5YM .wrap {
    opacity: 1 !important;
  }
  .cid-t4WRMfP5YM .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-syz7MZ10Pr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #289c70;
}
@media (max-width: 767px) {
  .cid-syz7MZ10Pr .content {
    text-align: center;
  }
  .cid-syz7MZ10Pr .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-syz7MZ10Pr .logo-subtitle {
  color: #8d97ad;
}
.cid-syz7MZ10Pr .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-syz7MZ10Pr .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-syz7MZ10Pr .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-syz7MZ10Pr .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-syz7MZ10Pr .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-syz7MZ10Pr .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-syz7MZ10Pr .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-syz7MZ10Pr .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-syz7MZ10Pr .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-syz7MZ10Pr .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-syz7MZ10Pr .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-syz7MZ10Pr .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-syz7MZ10Pr .list-item {
  display: flex;
}
.cid-syz7MZ10Pr .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-syz7MZ10Pr ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-syz7MZ10Pr ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-syz7MZ10Pr ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-syz7MZ10Pr .logo-subtitle,
.cid-syz7MZ10Pr .media-wrap {
  color: #1b41e2;
}
.cid-syz7MZ10Pr .column-title {
  color: #ffffff;
}
.cid-syz7MZ10Pr P {
  color: #ffffff;
}
.cid-syz9eppJo4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  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-syz9eppJo4 .nav-item,
.cid-syz9eppJo4 .nav-link,
.cid-syz9eppJo4 .navbar-caption {
  font-weight: normal;
}
.cid-syz9eppJo4 .nav-item:focus,
.cid-syz9eppJo4 .nav-link:focus {
  outline: none;
}
.cid-syz9eppJo4 .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-syz9eppJo4 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-syz9eppJo4 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-syz9eppJo4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-syz9eppJo4 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-syz9eppJo4 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-syz9eppJo4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-syz9eppJo4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  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-syz9eppJo4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syz9eppJo4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syz9eppJo4 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #188ef4;
}
.cid-syz9eppJo4 .navbar.opened {
  transition: all 0.3s;
  background: #188ef4 !important;
}
.cid-syz9eppJo4 .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-syz9eppJo4 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-syz9eppJo4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syz9eppJo4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-syz9eppJo4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-syz9eppJo4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syz9eppJo4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-syz9eppJo4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syz9eppJo4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-syz9eppJo4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syz9eppJo4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syz9eppJo4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syz9eppJo4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-syz9eppJo4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syz9eppJo4 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-syz9eppJo4 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-syz9eppJo4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syz9eppJo4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-syz9eppJo4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-syz9eppJo4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-syz9eppJo4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syz9eppJo4 .navbar.navbar-short {
  background: #188ef4 !important;
  min-height: 60px;
}
.cid-syz9eppJo4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-syz9eppJo4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-syz9eppJo4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-syz9eppJo4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syz9eppJo4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syz9eppJo4 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-syz9eppJo4 .dropdown-item.active,
.cid-syz9eppJo4 .dropdown-item:active {
  background-color: transparent;
}
.cid-syz9eppJo4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syz9eppJo4 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syz9eppJo4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #188ef4;
}
.cid-syz9eppJo4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syz9eppJo4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syz9eppJo4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-syz9eppJo4 .navbar-buttons {
  text-align: center;
}
.cid-syz9eppJo4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-syz9eppJo4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-syz9eppJo4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syz9eppJo4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syz9eppJo4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syz9eppJo4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syz9eppJo4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syz9eppJo4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syz9eppJo4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syz9eppJo4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syz9eppJo4 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-syz9eppJo4 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-syz9eppJo4 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-syz9eppJo4 .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-syz9eppJo4 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-syz9eppJo4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syz9eppJo4 .navbar {
    height: 77px;
  }
  .cid-syz9eppJo4 .navbar.opened {
    height: auto;
  }
  .cid-syz9eppJo4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syz9eqkWyx {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #289c70;
}
.cid-syz9eqkWyx .container-fluid {
  padding: 0 3rem;
}
.cid-syz9eqkWyx .media-container-column {
  padding: 0 2rem;
}
.cid-syz9eqkWyx .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-syz9eqkWyx .container-fluid {
    padding: 0 1rem;
  }
}
.cid-syz9eqU6LG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #289c70;
}
.cid-syz9eqU6LG .mbr-text,
.cid-syz9eqU6LG blockquote {
  color: #232323;
}
.cid-syz9eqU6LG .mbr-text {
  color: #ffffff;
}
.cid-tHUTWsezdL {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #289c70;
}
.cid-tHUTWsezdL .mbr-text,
.cid-tHUTWsezdL blockquote {
  color: #232323;
}
.cid-tHUTWsezdL .mbr-text {
  color: #ffffff;
}
.cid-t4WSmDR1kU {
  background: #289c70;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-t4WSmDR1kU .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-t4WSmDR1kU .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-t4WSmDR1kU .image-block:hover:before {
  opacity: 0.6;
}
.cid-t4WSmDR1kU .image-block:hover .wrap {
  opacity: 1;
}
.cid-t4WSmDR1kU .image-block:hover img {
  transform: scale(1.1);
}
.cid-t4WSmDR1kU .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t4WSmDR1kU img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-t4WSmDR1kU .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t4WSmDR1kU .wrap {
    opacity: 1 !important;
  }
  .cid-t4WSmDR1kU .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-syz9erRrf8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #289c70;
}
.cid-syz9erRrf8 .mbr-text,
.cid-syz9erRrf8 blockquote {
  color: #232323;
}
.cid-syz9erRrf8 .mbr-text {
  color: #ffffff;
}
.cid-t4WSZf93ED {
  background: #289c70;
  padding-top: 30px;
  padding-bottom: 45px;
}
.cid-t4WSZf93ED .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-t4WSZf93ED .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-t4WSZf93ED .image-block:hover:before {
  opacity: 0.6;
}
.cid-t4WSZf93ED .image-block:hover .wrap {
  opacity: 1;
}
.cid-t4WSZf93ED .image-block:hover img {
  transform: scale(1.1);
}
.cid-t4WSZf93ED .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t4WSZf93ED img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-t4WSZf93ED .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t4WSZf93ED .wrap {
    opacity: 1 !important;
  }
  .cid-t4WSZf93ED .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-syz9esrpcF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #289c70;
}
@media (max-width: 767px) {
  .cid-syz9esrpcF .content {
    text-align: center;
  }
  .cid-syz9esrpcF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-syz9esrpcF .logo-subtitle {
  color: #8d97ad;
}
.cid-syz9esrpcF .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-syz9esrpcF .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-syz9esrpcF .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-syz9esrpcF .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-syz9esrpcF .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-syz9esrpcF .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-syz9esrpcF .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-syz9esrpcF .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-syz9esrpcF .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-syz9esrpcF .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-syz9esrpcF .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-syz9esrpcF .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-syz9esrpcF .list-item {
  display: flex;
}
.cid-syz9esrpcF .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-syz9esrpcF ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-syz9esrpcF ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-syz9esrpcF ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-syz9esrpcF .logo-subtitle,
.cid-syz9esrpcF .media-wrap {
  color: #1b41e2;
}
.cid-syz9esrpcF .column-title {
  color: #ffffff;
}
.cid-syz9esrpcF P {
  color: #ffffff;
}
.cid-tIF3PZANbZ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  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-tIF3PZANbZ .nav-item,
.cid-tIF3PZANbZ .nav-link,
.cid-tIF3PZANbZ .navbar-caption {
  font-weight: normal;
}
.cid-tIF3PZANbZ .nav-item:focus,
.cid-tIF3PZANbZ .nav-link:focus {
  outline: none;
}
.cid-tIF3PZANbZ .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tIF3PZANbZ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tIF3PZANbZ .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-tIF3PZANbZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tIF3PZANbZ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tIF3PZANbZ .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tIF3PZANbZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tIF3PZANbZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  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-tIF3PZANbZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIF3PZANbZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIF3PZANbZ .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #188ef4;
}
.cid-tIF3PZANbZ .navbar.opened {
  transition: all 0.3s;
  background: #188ef4 !important;
}
.cid-tIF3PZANbZ .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-tIF3PZANbZ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIF3PZANbZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIF3PZANbZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tIF3PZANbZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tIF3PZANbZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIF3PZANbZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tIF3PZANbZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIF3PZANbZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tIF3PZANbZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIF3PZANbZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIF3PZANbZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIF3PZANbZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tIF3PZANbZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIF3PZANbZ .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tIF3PZANbZ .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tIF3PZANbZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIF3PZANbZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tIF3PZANbZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tIF3PZANbZ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tIF3PZANbZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tIF3PZANbZ .navbar.navbar-short {
  background: #188ef4 !important;
  min-height: 60px;
}
.cid-tIF3PZANbZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tIF3PZANbZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tIF3PZANbZ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIF3PZANbZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIF3PZANbZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIF3PZANbZ .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tIF3PZANbZ .dropdown-item.active,
.cid-tIF3PZANbZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tIF3PZANbZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIF3PZANbZ .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIF3PZANbZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #188ef4;
}
.cid-tIF3PZANbZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIF3PZANbZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIF3PZANbZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tIF3PZANbZ .navbar-buttons {
  text-align: center;
}
.cid-tIF3PZANbZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tIF3PZANbZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tIF3PZANbZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIF3PZANbZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIF3PZANbZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIF3PZANbZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIF3PZANbZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIF3PZANbZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIF3PZANbZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIF3PZANbZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIF3PZANbZ .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tIF3PZANbZ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tIF3PZANbZ .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tIF3PZANbZ .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tIF3PZANbZ .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-tIF3PZANbZ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIF3PZANbZ .navbar {
    height: 77px;
  }
  .cid-tIF3PZANbZ .navbar.opened {
    height: auto;
  }
  .cid-tIF3PZANbZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIF3Q07Ls0 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #289c70;
}
.cid-tIF3Q07Ls0 .container-fluid {
  padding: 0 3rem;
}
.cid-tIF3Q07Ls0 .media-container-column {
  padding: 0 2rem;
}
.cid-tIF3Q07Ls0 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tIF3Q07Ls0 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tIF3Q0l0Vr {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #289c70;
}
.cid-tIF3Q0l0Vr .mbr-text,
.cid-tIF3Q0l0Vr blockquote {
  color: #232323;
}
.cid-tIF3Q0l0Vr .mbr-text {
  color: #ffffff;
}
.cid-tIF3Q0A7IT {
  background: #289c70;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-tIF3Q0A7IT .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-tIF3Q0A7IT .image-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #403f83;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tIF3Q0A7IT .image-block:hover:before {
  opacity: 0.6;
}
.cid-tIF3Q0A7IT .image-block:hover .wrap {
  opacity: 1;
}
.cid-tIF3Q0A7IT .image-block:hover img {
  transform: scale(1.1);
}
.cid-tIF3Q0A7IT .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tIF3Q0A7IT img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tIF3Q0A7IT .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tIF3Q0A7IT .wrap {
    opacity: 1 !important;
  }
  .cid-tIF3Q0A7IT .image-block:before {
    opacity: 0.6 !important;
  }
}
.cid-tIF3Q0S0Oc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #289c70;
}
.cid-tIF3Q0S0Oc .mbr-text,
.cid-tIF3Q0S0Oc blockquote {
  color: #232323;
}
.cid-tIF3Q0S0Oc .mbr-text {
  color: #ffffff;
}
.cid-tIF3Q18uHg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #289c70;
}
@media (max-width: 767px) {
  .cid-tIF3Q18uHg .content {
    text-align: center;
  }
  .cid-tIF3Q18uHg .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tIF3Q18uHg .logo-subtitle {
  color: #8d97ad;
}
.cid-tIF3Q18uHg .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tIF3Q18uHg .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tIF3Q18uHg .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tIF3Q18uHg .media-wrap img {
  height: 6rem;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tIF3Q18uHg .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tIF3Q18uHg .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: 0.05;
}
.cid-tIF3Q18uHg .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tIF3Q18uHg .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tIF3Q18uHg .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tIF3Q18uHg .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tIF3Q18uHg .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIF3Q18uHg .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIF3Q18uHg .list-item {
  display: flex;
}
.cid-tIF3Q18uHg .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tIF3Q18uHg ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tIF3Q18uHg ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tIF3Q18uHg ul.list li::before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  padding-right: 0.5rem;
}
.cid-tIF3Q18uHg .logo-subtitle,
.cid-tIF3Q18uHg .media-wrap {
  color: #1b41e2;
}
.cid-tIF3Q18uHg .column-title {
  color: #ffffff;
}
.cid-tIF3Q18uHg P {
  color: #ffffff;
}
