body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.6rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  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: 2.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((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: #7ccbf1 !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #096693 !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: #37b0ea;
  border-color: #37b0ea;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #7ccbf1 !important;
  border-color: #7ccbf1 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #37b0ea !important;
  border-color: #37b0ea !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: #37b0ea !important;
  border-color: #37b0ea !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: #12a0e4;
  border-color: #12a0e4;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #52bdf1 !important;
  border-color: #52bdf1 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #12a0e4 !important;
  border-color: #12a0e4 !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: #12a0e4 !important;
  border-color: #12a0e4 !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: #05344b;
  border-color: #05344b;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #096693 !important;
  border-color: #096693 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #05344b !important;
  border-color: #05344b !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: #05344b !important;
  border-color: #05344b !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;
}
.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;
}
.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;
}
.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;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #7ccbf1;
  border-color: #7ccbf1;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #20a6e7;
  color: #20a6e7 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #7ccbf1;
  border-color: #7ccbf1;
}
.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: #7ccbf1 !important;
  border-color: #7ccbf1 !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: #52bdf1;
  border-color: #52bdf1;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #118fcc;
  color: #118fcc !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #52bdf1;
  border-color: #52bdf1;
}
.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: #52bdf1 !important;
  border-color: #52bdf1 !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: #096693;
  border-color: #096693;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #032333;
  color: #032333 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #096693;
  border-color: #096693;
}
.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: #096693 !important;
  border-color: #096693 !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;
}
.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;
}
.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;
}
.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;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #7ccbf1 !important;
}
.text-secondary {
  color: #52bdf1 !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #096693 !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: #20a6e7 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #118fcc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #032333 !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: #096693;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #7ccbf1;
  border-color: #7ccbf1;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #7ccbf1;
}
.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: #2ab1f2;
}
.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*/
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
blockquote {
  border-color: #7ccbf1;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #7ccbf1;
  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: #7ccbf1;
  border-bottom-color: #7ccbf1;
}
.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: #7ccbf1 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #52bdf1 !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='%237ccbf1' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-rgtdrw4xfL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-rgtdrw4xfL .nav-item:focus,
.cid-rgtdrw4xfL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgtdrw4xfL .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgtdrw4xfL .nav-item .nav-link {
    position: relative;
  }
  .cid-rgtdrw4xfL .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #7ccbf1, #52bdf1);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgtdrw4xfL .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgtdrw4xfL .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgtdrw4xfL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgtdrw4xfL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgtdrw4xfL .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rgtdrw4xfL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgtdrw4xfL .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-rgtdrw4xfL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgtdrw4xfL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgtdrw4xfL .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-rgtdrw4xfL .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-rgtdrw4xfL .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rgtdrw4xfL .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rgtdrw4xfL .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 767px) {
  .cid-rgtdrw4xfL .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rgtdrw4xfL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgtdrw4xfL .navbar.collapsed .navbar-collapse.show,
.cid-rgtdrw4xfL .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgtdrw4xfL .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rgtdrw4xfL .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rgtdrw4xfL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgtdrw4xfL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgtdrw4xfL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgtdrw4xfL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rgtdrw4xfL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgtdrw4xfL .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgtdrw4xfL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgtdrw4xfL .navbar.collapsed .right-menu,
.cid-rgtdrw4xfL .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rgtdrw4xfL .navbar .navbar-collapse.show,
  .cid-rgtdrw4xfL .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgtdrw4xfL .navbar .navbar-collapse.show .brand-container,
  .cid-rgtdrw4xfL .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rgtdrw4xfL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgtdrw4xfL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgtdrw4xfL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgtdrw4xfL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgtdrw4xfL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rgtdrw4xfL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgtdrw4xfL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgtdrw4xfL .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgtdrw4xfL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rgtdrw4xfL .navbar .right-menu,
  .cid-rgtdrw4xfL .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rgtdrw4xfL .navbar.navbar-short {
  min-height: 60px;
}
.cid-rgtdrw4xfL .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-rgtdrw4xfL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgtdrw4xfL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgtdrw4xfL .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgtdrw4xfL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgtdrw4xfL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgtdrw4xfL .dropdown-item.active,
.cid-rgtdrw4xfL .dropdown-item:active {
  background-color: transparent;
}
.cid-rgtdrw4xfL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgtdrw4xfL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgtdrw4xfL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgtdrw4xfL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rgtdrw4xfL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgtdrw4xfL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgtdrw4xfL ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rgtdrw4xfL ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rgtdrw4xfL .navbar-buttons {
  margin-left: auto;
}
.cid-rgtdrw4xfL button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rgtdrw4xfL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #096693;
}
.cid-rgtdrw4xfL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgtdrw4xfL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgtdrw4xfL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgtdrw4xfL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgtdrw4xfL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgtdrw4xfL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rgtdrw4xfL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rgtdrw4xfL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgtdrw4xfL .navbar-dropdown {
  position: fixed;
}
.cid-rgtdrw4xfL a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgtdrw4xfL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgtdrw4xfL .right-menu,
.cid-rgtdrw4xfL .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rgtdrw4xfL .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgtdrw4xfL .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgtdrw4xfL .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rgtdrw4xfL .menu-top {
  text-align: center;
  width: 100%;
  background-color: #096693;
  padding: .5rem 0;
}
.cid-rgtdrw4xfL .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rgtdrw4xfL .card-wrapper {
  z-index: 3;
}
.cid-rgtdrw4xfL .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rgtdrw4xfL .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgtdrw4xfL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgy4SACNBq {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rgy4SACNBq .container-fluid {
  padding: 0 3rem;
}
.cid-rgy4SACNBq .media-container-column {
  padding: 0 2rem;
}
.cid-rgy4SACNBq .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rgy4SACNBq .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rgtl07y7cZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rgtl07y7cZ .container-fluid {
  padding: 0 3rem;
}
.cid-rgtl07y7cZ .media-container-column {
  padding: 0 2rem;
}
.cid-rgtl07y7cZ .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #1ba1e2;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-rgtl07y7cZ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rgtl07y7cZ .mbr-section-subtitle {
  color: #1ba1e2;
}
.cid-rgtl07y7cZ h5 {
  font-size: 0.8rem;
}
#custom-html-3n img {
  transition: all 0.5s linear 0s;
  border-radius: 12px 0px 0px 12px;
  box-shadow: 2px 2px 8px black;
}
#custom-html-3n img:hover {
  -ms-transform: scale(1.2, 1.2);
  /* IE 9 */
  -webkit-transform: scale(1.2, 1.2);
  /* Safari */
  transform: scale(1.2, 1.2);
}
#custom-html-3n .empuja {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
.cid-undiuOpoq4.popup-builder {
  background-color: #ffffff;
}
.cid-undiuOpoq4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-undiuOpoq4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-undiuOpoq4 .modal-content,
.cid-undiuOpoq4 .modal-dialog {
  height: auto;
}
.cid-undiuOpoq4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-undiuOpoq4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-undiuOpoq4 .form-wrapper .mbr-form .form-group,
  .cid-undiuOpoq4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-undiuOpoq4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-undiuOpoq4 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-undiuOpoq4 .mbr-text {
  text-align: center;
}
.cid-undiuOpoq4 .pt-0 {
  padding-top: 0 !important;
}
.cid-undiuOpoq4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-undiuOpoq4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-undiuOpoq4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-undiuOpoq4 .modal-open {
  overflow: hidden;
}
.cid-undiuOpoq4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-undiuOpoq4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-undiuOpoq4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-undiuOpoq4 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-undiuOpoq4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-undiuOpoq4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-undiuOpoq4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-undiuOpoq4 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-undiuOpoq4 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-undiuOpoq4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-undiuOpoq4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-undiuOpoq4 .modal-backdrop.show {
  opacity: .5;
}
.cid-undiuOpoq4 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-undiuOpoq4 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-undiuOpoq4 .modal-header {
    padding: 1rem;
  }
}
.cid-undiuOpoq4 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-undiuOpoq4 .modal-header .close svg {
  fill: #353535;
}
.cid-undiuOpoq4 .modal-header .close:hover {
  opacity: 1;
}
.cid-undiuOpoq4 .modal-header .close:focus {
  outline: none;
}
.cid-undiuOpoq4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-undiuOpoq4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-undiuOpoq4 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-undiuOpoq4 .modal-body {
    padding: 1rem;
  }
}
.cid-undiuOpoq4 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-undiuOpoq4 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-undiuOpoq4 .modal-footer {
    padding: 1rem;
  }
}
.cid-undiuOpoq4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-undiuOpoq4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-undiuOpoq4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-undiuOpoq4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-undiuOpoq4 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-undiuOpoq4 .modal-lg,
  .cid-undiuOpoq4 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-undiuOpoq4 .modal-xl {
    max-width: 1140px;
  }
}
.cid-undiuOpoq4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-undiuOpoq4 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-undiuOpoq4 .form-group {
  margin-bottom: 1rem;
}
.cid-undiuOpoq4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-undiuOpoq4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-undiuOpoq4 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-undiuOpoq4 .mbr-section-btn {
  margin: 0;
}
.cid-undiuOpoq4 .mbr-section-btn .btn {
  margin: 0;
}
.cid-rgz2dKY90g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/collage-fokus-bn-op.webp");
}
.cid-rgz2dKY90g .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rgz2dKY90g .row-element,
.cid-rgz2dKY90g .image-element {
  padding: 0;
}
.cid-rgz2dKY90g .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgz2dKY90g .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rgz2dKY90g .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rgz2dKY90g .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rgz2dKY90g .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rgz2dKY90g .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rgz2dKY90g .text-content {
    padding: 2rem 1rem;
  }
  .cid-rgz2dKY90g .underline .line {
    height: 2px;
  }
  .cid-rgz2dKY90g .mbr-title,
  .cid-rgz2dKY90g .underline,
  .cid-rgz2dKY90g .mbr-text,
  .cid-rgz2dKY90g .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rgz2dKY90g .mbr-title,
.cid-rgz2dKY90g .underline {
  color: #ffffff;
}
.cid-rgz2dKY90g .mbr-text,
.cid-rgz2dKY90g .mbr-section-btn {
  color: #ffffff;
}
#custom-html-3t .easyhtml5video {
  margin-bottom: -10px;
}
.cid-sWSagaLhWZ {
  overflow: hidden !important;
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #096693;
}
.cid-sWSagaLhWZ .container-fluid {
  padding: 0 5rem;
}
.cid-sWSagaLhWZ .animated-element {
  color: #efefef;
}
.cid-sWSagaLhWZ .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-sWSagaLhWZ .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sWSagaLhWZ .container-fluid {
    padding: 0 1rem;
  }
  .cid-sWSagaLhWZ .mbr-figure {
    margin-top: 1rem;
  }
}
.cid-rfUCZmC0TY {
  background-image: url("../../../assets/images/chica-fotografiando-op.webp");
}
.cid-rfUCZmC0TY .card-wrapper {
  z-index: 3;
}
.cid-rfUCZmC0TY .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rfUCZmC0TY:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rfUCZmC0TY .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rfUCZmC0TY .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rfUCZmC0TY .text-block {
  text-align: left !important;
}
.cid-rfUCZmC0TY * {
  cursor: default !important;
}
.cid-rglSUiZaaH {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rglSUiZaaH .container-fluid {
  padding: 0 3rem;
}
.cid-rglSUiZaaH .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rglSUiZaaH svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rglSUiZaaH .signature > span {
  color: #7ccbf1;
}
@media (max-width: 767px) {
  .cid-rglSUiZaaH .blockquote-quote {
    text-align: left;
  }
  .cid-rglSUiZaaH .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rglTaEKAVF {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rglTaEKAVF .container-fluid {
  padding: 0 3rem;
}
.cid-rglTaEKAVF .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rglTaEKAVF svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rglTaEKAVF .signature > span {
  color: #7ccbf1;
}
@media (max-width: 767px) {
  .cid-rglTaEKAVF .blockquote-quote {
    text-align: left;
  }
  .cid-rglTaEKAVF .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rfUIGhb5EJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rfUIGhb5EJ p {
  color: #767676;
}
.cid-rfUIGhb5EJ .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rfUIGhb5EJ .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rfUIGhb5EJ .row-element,
.cid-rfUIGhb5EJ .image-element {
  padding: 0;
}
.cid-rfUIGhb5EJ .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rfUIGhb5EJ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rfUIGhb5EJ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rfUIGhb5EJ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rfUIGhb5EJ .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rfUIGhb5EJ .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rfUIGhb5EJ .text-content {
    padding: 2rem 1rem;
  }
  .cid-rfUIGhb5EJ .underline .line {
    height: 2px;
  }
  .cid-rfUIGhb5EJ .mbr-title,
  .cid-rfUIGhb5EJ .underline,
  .cid-rfUIGhb5EJ .mbr-text,
  .cid-rfUIGhb5EJ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rg3NGtCJo6 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rg3NGtCJo6 .mbr-overlay {
  background: #ffffff;
  background: linear-gradient(45deg, #ffffff, #000000);
  background: radial-gradient(#ffffff, #000000);
}
.cid-rg3NGtCJo6 .mbr-section-title {
  margin: 0;
}
.cid-rg3NGtCJo6 .mbr-text,
.cid-rg3NGtCJo6 .mbr-section-btn {
  color: #232323;
}
.cid-rg3NGtCJo6 .mbr-section-subtitle,
.cid-rg3NGtCJo6 mbr-section-btn DIV {
  color: #232323;
}
.cid-rg3NGtCJo6 H1 {
  color: #232323;
}
.cid-rfULXp0r0Z {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/camera-vintage-fokus-op-2000x1333.webp");
}
.cid-rfULXp0r0Z .container-fluid {
  padding: 0 3rem;
}
.cid-rfULXp0r0Z .card {
  display: block;
}
.cid-rfULXp0r0Z .card .card-wrapper {
  height: 1%;
}
.cid-rfULXp0r0Z .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-rfULXp0r0Z .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rfULXp0r0Z .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rfULXp0r0Z .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-rfULXp0r0Z .container-fluid {
    padding: 0 1rem;
  }
  .cid-rfULXp0r0Z .text-row {
    padding-bottom: 1rem;
  }
}
.cid-rfURlka8Gx {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rfURlka8Gx .container-fluid {
  padding: 0 3rem;
}
.cid-rfURlka8Gx ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rfURlka8Gx ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rfURlka8Gx ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-rfURlka8Gx ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rfURlka8Gx .container-fluid {
    padding: 0 1rem;
  }
  .cid-rfURlka8Gx .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rfURlka8Gx .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rfURlka8Gx .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
.cid-rfURlka8Gx img {
  border-radius: 10px;
}
.cid-rgafzOP2V2 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rgafzOP2V2 .container-fluid {
  padding: 0 3rem;
}
.cid-rgafzOP2V2 ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rgafzOP2V2 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rgafzOP2V2 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-rgafzOP2V2 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rgafzOP2V2 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rgafzOP2V2 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rgafzOP2V2 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rgafzOP2V2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
.cid-rgafzOP2V2 img {
  border-radius: 10px;
}
.cid-rheggZ1LGh {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/camara-bolex-fokus-reparaciones-op.webp");
}
.cid-rheggZ1LGh .card-wrapper {
  z-index: 3;
}
.cid-rheggZ1LGh .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rheggZ1LGh:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rheggZ1LGh .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rheggZ1LGh .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rheggZ1LGh .text-block {
  text-align: right !important;
}
.cid-rjVJFfIKuw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rjVJFfIKuw p {
  color: #767676;
}
.cid-rjVJFfIKuw .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rjVJFfIKuw .row-element,
.cid-rjVJFfIKuw .image-element {
  padding: 0;
}
.cid-rjVJFfIKuw .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rjVJFfIKuw .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rjVJFfIKuw .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rjVJFfIKuw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rjVJFfIKuw .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rjVJFfIKuw .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rjVJFfIKuw .text-content {
    padding: 2rem 1rem;
  }
  .cid-rjVJFfIKuw .underline .line {
    height: 2px;
  }
  .cid-rjVJFfIKuw .mbr-title,
  .cid-rjVJFfIKuw .underline,
  .cid-rjVJFfIKuw .mbr-text,
  .cid-rjVJFfIKuw .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rfUG8DTtA2 {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #232323;
}
.cid-rfUG8DTtA2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-rfUG8DTtA2 ul li {
  padding: 1rem 0;
}
.cid-rfUG8DTtA2 ul li:hover {
  color: #7ccbf1;
}
.cid-rfUG8DTtA2 .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-rfUG8DTtA2 .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-rfUG8DTtA2 .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-rfUG8DTtA2 .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rfUG8DTtA2 .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-rfUG8DTtA2 .map {
    height: auto;
  }
}
.cid-rfUG8DTtA2 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rfUG8DTtA2 .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
}
.cid-rfUG8DTtA2 .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rfUG8DTtA2 .social-list a:hover {
  opacity: 1;
}
.cid-rfUG8DTtA2 .row-element,
.cid-rfUG8DTtA2 .image-element {
  padding: 0;
}
.cid-rfUG8DTtA2 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rfUG8DTtA2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rfUG8DTtA2 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rfUG8DTtA2 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rfUG8DTtA2 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rfUG8DTtA2 .underline .line {
    height: 2px;
  }
  .cid-rfUG8DTtA2 .mbr-title,
  .cid-rfUG8DTtA2 .underline,
  .cid-rfUG8DTtA2 .mbr-text,
  .cid-rfUG8DTtA2 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rfUG8DTtA2 .mbr-title,
.cid-rfUG8DTtA2 .underline {
  color: #ffffff;
}
.cid-rfUG8DTtA2 .mbr-text,
.cid-rfUG8DTtA2 .mbr-section-btn {
  color: #ffffff;
}
.cid-rfUG8DTtA2 mbr-list LI {
  color: #ffffff;
}
.cid-rfUG8DTtA2 mbr-list {
  text-align: center;
}
.cid-rfUG8DTtA2 .mbr-list,
.cid-rfUG8DTtA2 .social-list mbr-list {
  color: #ffffff;
}
.cid-rgtssSFhvl .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-rgtssSFhvl .nav-item:focus,
.cid-rgtssSFhvl .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgtssSFhvl .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgtssSFhvl .nav-item .nav-link {
    position: relative;
  }
  .cid-rgtssSFhvl .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #7ccbf1, #52bdf1);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgtssSFhvl .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgtssSFhvl .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgtssSFhvl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgtssSFhvl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgtssSFhvl .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rgtssSFhvl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgtssSFhvl .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-rgtssSFhvl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgtssSFhvl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgtssSFhvl .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-rgtssSFhvl .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-rgtssSFhvl .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rgtssSFhvl .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rgtssSFhvl .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 767px) {
  .cid-rgtssSFhvl .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rgtssSFhvl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgtssSFhvl .navbar.collapsed .navbar-collapse.show,
.cid-rgtssSFhvl .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgtssSFhvl .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rgtssSFhvl .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rgtssSFhvl .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgtssSFhvl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgtssSFhvl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgtssSFhvl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rgtssSFhvl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgtssSFhvl .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgtssSFhvl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgtssSFhvl .navbar.collapsed .right-menu,
.cid-rgtssSFhvl .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rgtssSFhvl .navbar .navbar-collapse.show,
  .cid-rgtssSFhvl .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgtssSFhvl .navbar .navbar-collapse.show .brand-container,
  .cid-rgtssSFhvl .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rgtssSFhvl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgtssSFhvl .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgtssSFhvl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgtssSFhvl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgtssSFhvl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rgtssSFhvl .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgtssSFhvl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgtssSFhvl .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgtssSFhvl .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rgtssSFhvl .navbar .right-menu,
  .cid-rgtssSFhvl .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rgtssSFhvl .navbar.navbar-short {
  min-height: 60px;
}
.cid-rgtssSFhvl .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-rgtssSFhvl .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgtssSFhvl .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgtssSFhvl .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgtssSFhvl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgtssSFhvl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgtssSFhvl .dropdown-item.active,
.cid-rgtssSFhvl .dropdown-item:active {
  background-color: transparent;
}
.cid-rgtssSFhvl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgtssSFhvl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgtssSFhvl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgtssSFhvl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rgtssSFhvl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgtssSFhvl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgtssSFhvl ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rgtssSFhvl ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rgtssSFhvl .navbar-buttons {
  margin-left: auto;
}
.cid-rgtssSFhvl button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rgtssSFhvl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #096693;
}
.cid-rgtssSFhvl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgtssSFhvl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgtssSFhvl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgtssSFhvl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgtssSFhvl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgtssSFhvl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rgtssSFhvl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rgtssSFhvl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgtssSFhvl .navbar-dropdown {
  position: fixed;
}
.cid-rgtssSFhvl a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgtssSFhvl .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgtssSFhvl .right-menu,
.cid-rgtssSFhvl .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rgtssSFhvl .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgtssSFhvl .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgtssSFhvl .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rgtssSFhvl .menu-top {
  text-align: center;
  width: 100%;
  background-color: #096693;
  padding: .5rem 0;
}
.cid-rgtssSFhvl .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rgtssSFhvl .card-wrapper {
  z-index: 3;
}
.cid-rgtssSFhvl .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rgtssSFhvl .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgtssSFhvl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rg3TQ8mhJK {
  background-image: url("../../../assets/images/lente-colores2-op.webp");
}
.cid-rg3TQ8mhJK .container-fluid {
  padding: 0 3rem;
}
.cid-rg3TQ8mhJK .media-container-column {
  padding: 0 2rem;
}
.cid-rg3TQ8mhJK .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rg3TQ8mhJK .container-fluid {
    padding: 0 1rem;
  }
}
#custom-html-3q img {
  transition: all 0.5s linear 0s;
  border-radius: 12px 0px 0px 12px;
  box-shadow: 2px 2px 8px black;
}
#custom-html-3q img:hover {
  -ms-transform: scale(1.2, 1.2);
  /* IE 9 */
  -webkit-transform: scale(1.2, 1.2);
  /* Safari */
  transform: scale(1.2, 1.2);
}
#custom-html-3q .empuja {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
.cid-rg48O3ihPP {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rg48O3ihPP .mbr-section-title,
.cid-rg48O3ihPP .mbr-section-subtitle {
  color: #000000;
}
.cid-rg48O3ihPP .mbr-section-text {
  color: #232323;
}
.cid-rg48O3ihPP .mbr-text,
.cid-rg48O3ihPP .typed-text,
.cid-rg48O3ihPP .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-rg48O3ihPP .btn {
  margin-left: 4px !important;
}
.cid-rg48O3ihPP .animated-element {
  color: #52bdf1;
}
.cid-rg48O3ihPP .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #52bdf1;
}
@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-rg48O3ihPP .mbr-section-subtitle,
.cid-rg48O3ihPP .typed-text {
  text-align: center;
  color: #000000;
}
.cid-rg48O3ihPP .mbr-section-text,
.cid-rg48O3ihPP .mbr-section-btn {
  color: #232323;
}
.cid-rg4hFR8p8l {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/camara-digital-de-frente-op.webp");
}
.cid-rg4hFR8p8l .container-fluid {
  padding: 0 3rem;
}
.cid-rg4hFR8p8l .media-container-column {
  padding: 0 2rem;
}
.cid-rg4hFR8p8l .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rg4hFR8p8l .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rg4p8YlZYF {
  overflow-x: hidden !important;
}
.cid-rg4p8YlZYF .container-fluid {
  padding: 0 3rem;
}
.cid-rg4p8YlZYF .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 100% 0;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 22s !important;
  animation-duration: 22s;
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-rg4p8YlZYF .scroll-wrapper.second {
  left: calc(100% - 1px);
  background-position: 0 0;
}
.cid-rg4p8YlZYF .mbr-overlay {
  z-index: 1;
}
.cid-rg4p8YlZYF .block-content {
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 150px;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@media (max-width: 767px) {
  .cid-rg4p8YlZYF .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rg4p8YlZYF .mbr-section-title {
  color: #1ba1e2;
  text-align: center;
}
.cid-rg4p8YlZYF .mbr-section-subtitle,
.cid-rg4p8YlZYF .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-rg4p8YlZYF .mbr-section-title B {
  color: #000000;
}
.cid-rg4p8YlZYF .mbr-section-title FONT {
  color: #232323;
}
.cid-rg3ReveOLu {
  overflow: hidden !important;
  background-image: url("../../../assets/images/objetivo-lente-fokus-op.webp");
}
.cid-rg3ReveOLu .container-fluid {
  padding: 0 3rem;
}
.cid-rg3ReveOLu .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-rg3ReveOLu .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rg9SFwWfsr {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rg9SFwWfsr .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-rg9SFwWfsr h4 {
  text-align: center;
}
.cid-rg9SFwWfsr p {
  text-align: center;
}
.cid-rg9SFwWfsr .card .card-img {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rg9SFwWfsr .card:hover .step {
  color: #ffffff;
  border: 0px solid transparent;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rg9SFwWfsr .card:hover .step:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.cid-rg9SFwWfsr .step {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  width: 100px;
  height: 100px;
  border: 2px solid #eee;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rg9SFwWfsr .step:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.3s;
  background: linear-gradient(45deg, #52bdf1, #096693);
  border-radius: 50%;
}
.cid-rg9SFwWfsr .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rg9SFwWfsr .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
@media (min-width: 768px) {
  .cid-rg9SFwWfsr .mbr-section-title,
  .cid-rg9SFwWfsr .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-rg9SFwWfsr .card-title,
.cid-rg9SFwWfsr .card-img {
  text-align: center;
  color: #52bdf1;
}
.cid-rg4DVv7bqh {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #dddddd;
}
.cid-rg4DVv7bqh .container-fluid {
  padding: 0 3rem;
}
.cid-rg4DVv7bqh .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rg4DVv7bqh svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rg4DVv7bqh .signature > span {
  color: #7ccbf1;
}
@media (max-width: 767px) {
  .cid-rg4DVv7bqh .blockquote-quote {
    text-align: left;
  }
  .cid-rg4DVv7bqh .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rg4DVv7bqh .mbr-section-title {
  color: #232323;
}
.cid-rg4DFzWdIJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rg4DFzWdIJ .container-fluid {
  padding: 0 3rem;
}
.cid-rg4DFzWdIJ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #7ccbf1 50%, #52bdf1 120%);
  display: inline-block;
}
.cid-rg4DFzWdIJ .mbr-section-title {
  color: #000000;
}
.cid-rg4DFzWdIJ .mbr-section-subtitle {
  color: #000000;
}
.cid-rg4DFzWdIJ .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-rg4DFzWdIJ .header-text {
  padding: 2rem 1rem !important;
}
.cid-rg4DFzWdIJ .card {
  border-radius: 25px;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-rg4DFzWdIJ .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-rg4DFzWdIJ .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-rg4DFzWdIJ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rg4DFzWdIJ .card .card-header a.panel-title:hover .sign {
  background-color: #1ba1e2 !important;
}
.cid-rg4DFzWdIJ .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #096693;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-rg4DFzWdIJ .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rg4DFzWdIJ .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-rg4DFzWdIJ .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-rg4DFzWdIJ .container-fluid {
    padding: 0 1rem;
  }
  .cid-rg4DFzWdIJ .header-text {
    padding: 1rem !important;
  }
  .cid-rg4DFzWdIJ .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-rg4DFzWdIJ .panel-body {
    width: calc(100% - 48px);
  }
  .cid-rg4DFzWdIJ .panel-group {
    padding: 0;
  }
}
.cid-rg4DFzWdIJ .header-text,
.cid-rg4DFzWdIJ .sign {
  color: #52bdf1;
}
.cid-rg4JtSjPws {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rg4JtSjPws .container-fluid {
  padding: 0 3rem;
}
.cid-rg4JtSjPws .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #7ccbf1 50%, #52bdf1 120%);
  display: inline-block;
}
.cid-rg4JtSjPws .mbr-section-title {
  color: #000000;
}
.cid-rg4JtSjPws .mbr-section-subtitle {
  color: #000000;
}
.cid-rg4JtSjPws .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-rg4JtSjPws .header-text {
  padding: 2rem 1rem !important;
}
.cid-rg4JtSjPws .card {
  border-radius: 25px;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-rg4JtSjPws .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-rg4JtSjPws .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-rg4JtSjPws .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rg4JtSjPws .card .card-header a.panel-title:hover .sign {
  background-color: #1ba1e2 !important;
}
.cid-rg4JtSjPws .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #096693;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-rg4JtSjPws .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rg4JtSjPws .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-rg4JtSjPws .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-rg4JtSjPws .container-fluid {
    padding: 0 1rem;
  }
  .cid-rg4JtSjPws .header-text {
    padding: 1rem !important;
  }
  .cid-rg4JtSjPws .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-rg4JtSjPws .panel-body {
    width: calc(100% - 48px);
  }
  .cid-rg4JtSjPws .panel-group {
    padding: 0;
  }
}
.cid-rg4JtSjPws .header-text,
.cid-rg4JtSjPws .sign {
  color: #52bdf1;
}
.cid-rg4CXkFSaa {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #dddddd;
}
.cid-rg4CXkFSaa .card-wrapper {
  z-index: 3;
}
.cid-rg4CXkFSaa .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rg4CXkFSaa:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rg4CXkFSaa .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rg4CXkFSaa .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rg4CXkFSaa .text-block {
  text-align: left !important;
}
.cid-rg4CXkFSaa H2 {
  color: #232323;
  text-align: center;
}
.cid-rg4CXkFSaa DIV {
  color: #52bdf1;
}
.cid-rg4LEzhAgJ {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #dddddd;
}
.cid-rg4LEzhAgJ .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rg4LEzhAgJ .carousel-item.active,
.cid-rg4LEzhAgJ .carousel-item-next,
.cid-rg4LEzhAgJ .carousel-item-prev {
  display: flex;
}
.cid-rg4LEzhAgJ .carousel-controls a {
  transition: opacity .5s;
  font-size: 2rem;
}
.cid-rg4LEzhAgJ .carousel-controls a span {
  position: absolute;
  top: 180px;
  padding: 10px;
  border-radius: 50%;
  color: #000000;
  background: linear-gradient(#efefef, #52bdf1);
  opacity: .9;
}
.cid-rg4LEzhAgJ .carousel-controls a:hover span {
  opacity: 1;
}
.cid-rg4LEzhAgJ .user {
  margin: 1rem;
  padding: 3rem;
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  background: #ffffff;
}
.cid-rg4LEzhAgJ .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  margin: 0 auto 2rem auto;
  display: flex;
  -webkit-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
}
.cid-rg4LEzhAgJ .user_image .user_image_inner {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-rg4LEzhAgJ .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-rg4LEzhAgJ .user_text {
  color: #767676;
  text-align: left;
}
@media (max-width: 230px) {
  .cid-rg4LEzhAgJ .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-rg4LEzhAgJ H2 {
  color: #232323;
}
.cid-rg4LEzhAgJ .user_name {
  color: #232323;
}
.cid-rg05zZQRdi {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #232323;
}
.cid-rg05zZQRdi ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-rg05zZQRdi ul li {
  padding: 1rem 0;
}
.cid-rg05zZQRdi ul li:hover {
  color: #7ccbf1;
}
.cid-rg05zZQRdi .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-rg05zZQRdi .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-rg05zZQRdi .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-rg05zZQRdi .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rg05zZQRdi .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-rg05zZQRdi .map {
    height: auto;
  }
}
.cid-rg05zZQRdi .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rg05zZQRdi .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
}
.cid-rg05zZQRdi .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rg05zZQRdi .social-list a:hover {
  opacity: 1;
}
.cid-rg05zZQRdi .row-element,
.cid-rg05zZQRdi .image-element {
  padding: 0;
}
.cid-rg05zZQRdi .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rg05zZQRdi .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rg05zZQRdi .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rg05zZQRdi .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rg05zZQRdi .text-content {
    padding: 2rem 1rem;
  }
  .cid-rg05zZQRdi .underline .line {
    height: 2px;
  }
  .cid-rg05zZQRdi .mbr-title,
  .cid-rg05zZQRdi .underline,
  .cid-rg05zZQRdi .mbr-text,
  .cid-rg05zZQRdi .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rg05zZQRdi .mbr-title,
.cid-rg05zZQRdi .underline {
  color: #ffffff;
}
.cid-rg05zZQRdi .mbr-text,
.cid-rg05zZQRdi .mbr-section-btn {
  color: #ffffff;
}
.cid-rg05zZQRdi mbr-list LI {
  color: #ffffff;
}
.cid-rg05zZQRdi mbr-list {
  text-align: center;
}
.cid-rg05zZQRdi .mbr-list,
.cid-rg05zZQRdi .social-list mbr-list {
  color: #ffffff;
}
.cid-uJiwXoz5ca.popup-builder {
  background-color: #ffffff;
}
.cid-uJiwXoz5ca.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJiwXoz5ca.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJiwXoz5ca .modal-content,
.cid-uJiwXoz5ca .modal-dialog {
  height: auto;
}
.cid-uJiwXoz5ca .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJiwXoz5ca .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJiwXoz5ca .form-wrapper .mbr-form .form-group,
  .cid-uJiwXoz5ca .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJiwXoz5ca .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJiwXoz5ca .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJiwXoz5ca .mbr-text {
  text-align: center;
}
.cid-uJiwXoz5ca .pt-0 {
  padding-top: 0 !important;
}
.cid-uJiwXoz5ca .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJiwXoz5ca .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJiwXoz5ca .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJiwXoz5ca .modal-open {
  overflow: hidden;
}
.cid-uJiwXoz5ca .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJiwXoz5ca .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJiwXoz5ca .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJiwXoz5ca .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJiwXoz5ca .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJiwXoz5ca .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJiwXoz5ca .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJiwXoz5ca .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uJiwXoz5ca .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJiwXoz5ca .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJiwXoz5ca .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJiwXoz5ca .modal-backdrop.show {
  opacity: .5;
}
.cid-uJiwXoz5ca .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJiwXoz5ca .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXoz5ca .modal-header {
    padding: 1rem;
  }
}
.cid-uJiwXoz5ca .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJiwXoz5ca .modal-header .close svg {
  fill: #353535;
}
.cid-uJiwXoz5ca .modal-header .close:hover {
  opacity: 1;
}
.cid-uJiwXoz5ca .modal-header .close:focus {
  outline: none;
}
.cid-uJiwXoz5ca .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uJiwXoz5ca .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJiwXoz5ca .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXoz5ca .modal-body {
    padding: 1rem;
  }
}
.cid-uJiwXoz5ca .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJiwXoz5ca .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXoz5ca .modal-footer {
    padding: 1rem;
  }
}
.cid-uJiwXoz5ca .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJiwXoz5ca .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJiwXoz5ca .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJiwXoz5ca .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJiwXoz5ca .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJiwXoz5ca .modal-lg,
  .cid-uJiwXoz5ca .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJiwXoz5ca .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJiwXoz5ca .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJiwXoz5ca .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJiwXoz5ca .form-group {
  margin-bottom: 1rem;
}
.cid-uJiwXoz5ca .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJiwXoz5ca .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJiwXoz5ca .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJiwXoz5ca .mbr-section-btn {
  margin: 0;
}
.cid-uJiwXoz5ca .mbr-section-btn .btn {
  margin: 0;
}
.cid-rgtsy1Q55W .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-rgtsy1Q55W .nav-item:focus,
.cid-rgtsy1Q55W .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgtsy1Q55W .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgtsy1Q55W .nav-item .nav-link {
    position: relative;
  }
  .cid-rgtsy1Q55W .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #7ccbf1, #52bdf1);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgtsy1Q55W .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgtsy1Q55W .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgtsy1Q55W .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgtsy1Q55W .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgtsy1Q55W .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rgtsy1Q55W .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgtsy1Q55W .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-rgtsy1Q55W .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgtsy1Q55W .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgtsy1Q55W .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-rgtsy1Q55W .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-rgtsy1Q55W .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rgtsy1Q55W .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rgtsy1Q55W .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 767px) {
  .cid-rgtsy1Q55W .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rgtsy1Q55W .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgtsy1Q55W .navbar.collapsed .navbar-collapse.show,
.cid-rgtsy1Q55W .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgtsy1Q55W .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rgtsy1Q55W .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rgtsy1Q55W .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgtsy1Q55W .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgtsy1Q55W .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgtsy1Q55W .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rgtsy1Q55W .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgtsy1Q55W .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgtsy1Q55W .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgtsy1Q55W .navbar.collapsed .right-menu,
.cid-rgtsy1Q55W .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rgtsy1Q55W .navbar .navbar-collapse.show,
  .cid-rgtsy1Q55W .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgtsy1Q55W .navbar .navbar-collapse.show .brand-container,
  .cid-rgtsy1Q55W .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rgtsy1Q55W .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgtsy1Q55W .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgtsy1Q55W .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgtsy1Q55W .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgtsy1Q55W .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rgtsy1Q55W .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgtsy1Q55W .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgtsy1Q55W .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgtsy1Q55W .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rgtsy1Q55W .navbar .right-menu,
  .cid-rgtsy1Q55W .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rgtsy1Q55W .navbar.navbar-short {
  min-height: 60px;
}
.cid-rgtsy1Q55W .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-rgtsy1Q55W .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgtsy1Q55W .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgtsy1Q55W .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgtsy1Q55W .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgtsy1Q55W .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgtsy1Q55W .dropdown-item.active,
.cid-rgtsy1Q55W .dropdown-item:active {
  background-color: transparent;
}
.cid-rgtsy1Q55W .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgtsy1Q55W .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgtsy1Q55W .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgtsy1Q55W .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rgtsy1Q55W .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgtsy1Q55W .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgtsy1Q55W ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rgtsy1Q55W ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rgtsy1Q55W .navbar-buttons {
  margin-left: auto;
}
.cid-rgtsy1Q55W button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rgtsy1Q55W button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #096693;
}
.cid-rgtsy1Q55W button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgtsy1Q55W button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgtsy1Q55W button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgtsy1Q55W button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgtsy1Q55W nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgtsy1Q55W nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rgtsy1Q55W nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rgtsy1Q55W nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgtsy1Q55W .navbar-dropdown {
  position: fixed;
}
.cid-rgtsy1Q55W a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgtsy1Q55W .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgtsy1Q55W .right-menu,
.cid-rgtsy1Q55W .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rgtsy1Q55W .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgtsy1Q55W .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgtsy1Q55W .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rgtsy1Q55W .menu-top {
  text-align: center;
  width: 100%;
  background-color: #096693;
  padding: .5rem 0;
}
.cid-rgtsy1Q55W .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rgtsy1Q55W .card-wrapper {
  z-index: 3;
}
.cid-rgtsy1Q55W .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rgtsy1Q55W .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgtsy1Q55W .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-3r img {
  transition: all 0.5s linear 0s;
  border-radius: 12px 0px 0px 12px;
  box-shadow: 2px 2px 8px black;
}
#custom-html-3r img:hover {
  -ms-transform: scale(1.2, 1.2);
  /* IE 9 */
  -webkit-transform: scale(1.2, 1.2);
  /* Safari */
  transform: scale(1.2, 1.2);
}
#custom-html-3r .empuja {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
.cid-rg5v52S4X1 {
  background-image: url("../../../assets/images/reparacion-camara-op.webp");
}
.cid-rg5v52S4X1 .mbr-section-title,
.cid-rg5v52S4X1 .mbr-section-subtitle {
  color: #000000;
}
.cid-rg5v52S4X1 .mbr-section-text {
  color: #232323;
}
.cid-rg5v52S4X1 .mbr-text,
.cid-rg5v52S4X1 .typed-text,
.cid-rg5v52S4X1 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-rg5v52S4X1 .btn {
  margin-left: 4px !important;
}
.cid-rg5v52S4X1 .animated-element {
  color: #7ccbf1;
}
.cid-rg5v52S4X1 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #7ccbf1;
}
@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-rg5v52S4X1 .mbr-section-title {
  color: #ffffff;
}
.cid-rg5v52S4X1 .mbr-section-subtitle,
.cid-rg5v52S4X1 .typed-text {
  color: #ffffff;
}
.cid-rg5Td3rCgb {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rg5Td3rCgb .card-wrapper {
  z-index: 3;
}
.cid-rg5Td3rCgb .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rg5Td3rCgb:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rg5Td3rCgb .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rg5Td3rCgb .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rg5Td3rCgb .text-block {
  text-align: left !important;
}
.cid-rg5Td3rCgb H2 {
  color: #52bdf1;
  text-align: center;
}
.cid-rg5Td3rCgb DIV {
  color: #7ccbf1;
}
.cid-rg5UaM6EeU {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rg5UaM6EeU .container-fluid {
  padding: 0 3rem;
}
.cid-rg5UaM6EeU .table-wrap {
  margin: 0 1rem 3rem 1rem;
  border: 1px solid #efefef;
  border-radius: 3%;
  padding: 3rem;
  transition: all 0.3s ease-in-out;
}
.cid-rg5UaM6EeU .table-wrap:hover {
  transition: all 0.3s ease-in-out;
  background-color: #efefef;
}
.cid-rg5UaM6EeU .table-wrap:hover .table-pricing,
.cid-rg5UaM6EeU .table-wrap:hover .table-icon {
  color: #000000 !important;
}
.cid-rg5UaM6EeU .table-wrap:hover .table-heading,
.cid-rg5UaM6EeU .table-wrap:hover .mbr-section-subtitle {
  color: #000000 !important;
}
.cid-rg5UaM6EeU .section-heading {
  margin-bottom: 2rem;
}
.cid-rg5UaM6EeU .table-heading {
  margin-bottom: 2em;
}
.cid-rg5UaM6EeU .underline {
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.cid-rg5UaM6EeU .underline .line {
  width: 6rem;
  height: 3px;
  background: linear-gradient(135deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
.cid-rg5UaM6EeU ul {
  word-wrap: break-word;
  padding: 0 4rem;
  margin: 0;
  list-style: none;
}
.cid-rg5UaM6EeU ul li {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  padding: 0.7em 0;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-rg5UaM6EeU ul li span {
  font-size: 32px;
  color: #000000;
}
.cid-rg5UaM6EeU hr {
  display: none;
  background: #efefef;
}
.cid-rg5UaM6EeU hr {
  display: block;
}
.cid-rg5UaM6EeU .table-heading,
.cid-rg5UaM6EeU .table-pricing,
.cid-rg5UaM6EeU .table-icon {
  color: #a38dfd;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.cid-rg5UaM6EeU .mbr-section-subtitle {
  color: #767676;
  transition: all 0.3s ease-in-out;
}
.cid-rg5UaM6EeU .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rg5UaM6EeU .mbr-iconfont {
  font-size: 50px;
}
@media (max-width: 1200px) {
  .cid-rg5UaM6EeU .table-wrap {
    margin: 1.5rem 0 0 0;
  }
}
@media (max-width: 767px) {
  .cid-rg5UaM6EeU .container-fluid {
    padding: 0 0rem;
  }
}
.cid-rg5UaM6EeU .table-pricing,
.cid-rg5UaM6EeU .table-icon {
  color: #232323;
  text-align: center;
}
.cid-rg5XcvFAr8 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rg5SnO5Hwm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #7ccbf1;
}
.cid-rg5SnO5Hwm .container-fluid {
  padding: 0 3rem;
}
.cid-rg5SnO5Hwm .mbr-section-title {
  color: #096693;
  text-align: right;
}
.cid-rg5SnO5Hwm .btn {
  margin-top: 0;
}
.cid-rg5SnO5Hwm .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-rg5SnO5Hwm .container-fluid {
    padding: 0 1rem;
  }
  .cid-rg5SnO5Hwm .btn {
    margin-top: 0.4rem;
  }
  .cid-rg5SnO5Hwm .mbr-section-btn {
    margin: 0;
  }
}
.cid-rg5SnO5Hwm .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-rg5GyZiiLr {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rg5GyZiiLr .container-fluid {
  padding: 0 3rem;
}
.cid-rg5GyZiiLr .media-container-column {
  padding: 0 2rem;
}
.cid-rg5GyZiiLr .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-rg5GyZiiLr .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rg5GyZiiLr .mbr-section-subtitle {
  color: #232323;
}
.cid-rg5KTZAbG1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rg5KTZAbG1 .mbr-section-subtitle {
  color: #767676;
}
.cid-rg5KTZAbG1 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rg5KTZAbG1 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
.cid-rg5KTZAbG1 .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-rg5KTZAbG1 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rg5KTZAbG1 .wrapper {
  padding: 2rem 1rem 1rem 1rem;
  background: #52bdf1;
}
.cid-rg5KTZAbG1 .card-overlay {
  display: none;
}
.cid-rg5KTZAbG1 .mbr-section-title,
.cid-rg5KTZAbG1 .underline,
.cid-rg5KTZAbG1 .mbr-section-subtitle {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .cid-rg5KTZAbG1 .image-element:hover .card-overlay {
    opacity: .5;
    border-bottom-right-radius: 7rem;
  }
  .cid-rg5KTZAbG1 .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-rg5KTZAbG1 .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-rg5KTZAbG1 .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-rg5KTZAbG1 .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rg5KTZAbG1 .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rg5KTZAbG1 .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rg5KTZAbG1 .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rg5KTZAbG1 .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-rg5KTZAbG1 .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-rg5KTZAbG1 .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-rg5KTZAbG1 .underline .line {
    height: 2px;
  }
  .cid-rg5KTZAbG1 .card-title,
  .cid-rg5KTZAbG1 .underline,
  .cid-rg5KTZAbG1 .mbr-text,
  .cid-rg5KTZAbG1 .mbr-section-btn,
  .cid-rg5KTZAbG1 .mbr-section-subtitle,
  .cid-rg5KTZAbG1 .mbr-section-title {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .cid-rg5KTZAbG1 .main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .cid-rg5KTZAbG1 .mbr-section-title,
  .cid-rg5KTZAbG1 .underline,
  .cid-rg5KTZAbG1 .mbr-section-subtitle {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-rg5KTZAbG1 DIV {
  color: #ffffff;
}
.cid-rg5KTZAbG1 B {
  color: #ffffff;
}
.cid-rg5KTZAbG1 H3 {
  color: #ffffff;
}
.cid-rg9Ystz6RM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rg9Ystz6RM .card-wrapper {
  z-index: 3;
}
.cid-rg9Ystz6RM .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rg9Ystz6RM:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rg9Ystz6RM .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rg9Ystz6RM .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rg9Ystz6RM .text-block {
  text-align: left !important;
}
.cid-rg9Ystz6RM H2 {
  color: #000000;
  text-align: center;
}
.cid-rg05HvVjMe {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rg05HvVjMe .container-fluid {
  padding: 0 3rem;
}
.cid-rg05HvVjMe .media-container-column {
  padding: 0 2rem;
}
.cid-rg05HvVjMe .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rg05HvVjMe .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rg6d3ZNIBu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rg6d3ZNIBu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rg6d3ZNIBu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rg6d3ZNIBu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rg6d3ZNIBu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rg6d3ZNIBu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #52bdf1);
}
.cid-rg6d3ZNIBu .icon-focus {
  display: none;
}
.cid-rg6d3ZNIBu .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-rg6d3ZNIBu ul {
  font-size: 0;
}
.cid-rg6d3ZNIBu .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rg6d3ZNIBu .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rg6d3ZNIBu .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
}
.cid-rg6d3ZNIBu .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rg6d3ZNIBu .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rg6d3ZNIBu .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-rg6d3ZNIBu .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rg6d3ZNIBu .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
.cid-rg6d3ZNIBu .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rg6d3ZNIBu .btn:hover {
  background: transparent !important;
}
.cid-rg6d3ZNIBu .btn:hover:before {
  background: transparent !important;
}
.cid-rg6d3ZNIBu .btn:before {
  background-color: transparent !important;
}
.cid-rg6d3ZNIBu .btn:focus {
  box-shadow: none;
}
.cid-rg05HyfIjM {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #232323;
}
.cid-rg05HyfIjM ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-rg05HyfIjM ul li {
  padding: 1rem 0;
}
.cid-rg05HyfIjM ul li:hover {
  color: #7ccbf1;
}
.cid-rg05HyfIjM .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-rg05HyfIjM .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-rg05HyfIjM .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-rg05HyfIjM .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rg05HyfIjM .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-rg05HyfIjM .map {
    height: auto;
  }
}
.cid-rg05HyfIjM .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rg05HyfIjM .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
}
.cid-rg05HyfIjM .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rg05HyfIjM .social-list a:hover {
  opacity: 1;
}
.cid-rg05HyfIjM .row-element,
.cid-rg05HyfIjM .image-element {
  padding: 0;
}
.cid-rg05HyfIjM .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rg05HyfIjM .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rg05HyfIjM .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rg05HyfIjM .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rg05HyfIjM .text-content {
    padding: 2rem 1rem;
  }
  .cid-rg05HyfIjM .underline .line {
    height: 2px;
  }
  .cid-rg05HyfIjM .mbr-title,
  .cid-rg05HyfIjM .underline,
  .cid-rg05HyfIjM .mbr-text,
  .cid-rg05HyfIjM .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rg05HyfIjM .mbr-title,
.cid-rg05HyfIjM .underline {
  color: #ffffff;
}
.cid-rg05HyfIjM .mbr-text,
.cid-rg05HyfIjM .mbr-section-btn {
  color: #ffffff;
}
.cid-rg05HyfIjM mbr-list LI {
  color: #ffffff;
}
.cid-rg05HyfIjM mbr-list {
  text-align: center;
}
.cid-rg05HyfIjM .mbr-list,
.cid-rg05HyfIjM .social-list mbr-list {
  color: #7ccbf1;
}
.cid-uJiwXozzS9.popup-builder {
  background-color: #ffffff;
}
.cid-uJiwXozzS9.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJiwXozzS9.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJiwXozzS9 .modal-content,
.cid-uJiwXozzS9 .modal-dialog {
  height: auto;
}
.cid-uJiwXozzS9 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJiwXozzS9 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJiwXozzS9 .form-wrapper .mbr-form .form-group,
  .cid-uJiwXozzS9 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJiwXozzS9 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJiwXozzS9 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJiwXozzS9 .mbr-text {
  text-align: center;
}
.cid-uJiwXozzS9 .pt-0 {
  padding-top: 0 !important;
}
.cid-uJiwXozzS9 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJiwXozzS9 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJiwXozzS9 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJiwXozzS9 .modal-open {
  overflow: hidden;
}
.cid-uJiwXozzS9 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJiwXozzS9 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJiwXozzS9 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJiwXozzS9 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJiwXozzS9 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJiwXozzS9 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJiwXozzS9 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJiwXozzS9 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uJiwXozzS9 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJiwXozzS9 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJiwXozzS9 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJiwXozzS9 .modal-backdrop.show {
  opacity: .5;
}
.cid-uJiwXozzS9 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJiwXozzS9 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXozzS9 .modal-header {
    padding: 1rem;
  }
}
.cid-uJiwXozzS9 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJiwXozzS9 .modal-header .close svg {
  fill: #353535;
}
.cid-uJiwXozzS9 .modal-header .close:hover {
  opacity: 1;
}
.cid-uJiwXozzS9 .modal-header .close:focus {
  outline: none;
}
.cid-uJiwXozzS9 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uJiwXozzS9 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJiwXozzS9 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXozzS9 .modal-body {
    padding: 1rem;
  }
}
.cid-uJiwXozzS9 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJiwXozzS9 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXozzS9 .modal-footer {
    padding: 1rem;
  }
}
.cid-uJiwXozzS9 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJiwXozzS9 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJiwXozzS9 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJiwXozzS9 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJiwXozzS9 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJiwXozzS9 .modal-lg,
  .cid-uJiwXozzS9 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJiwXozzS9 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJiwXozzS9 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJiwXozzS9 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJiwXozzS9 .form-group {
  margin-bottom: 1rem;
}
.cid-uJiwXozzS9 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJiwXozzS9 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJiwXozzS9 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJiwXozzS9 .mbr-section-btn {
  margin: 0;
}
.cid-uJiwXozzS9 .mbr-section-btn .btn {
  margin: 0;
}
.cid-rgtsBFfyUh .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-rgtsBFfyUh .nav-item:focus,
.cid-rgtsBFfyUh .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgtsBFfyUh .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgtsBFfyUh .nav-item .nav-link {
    position: relative;
  }
  .cid-rgtsBFfyUh .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #7ccbf1, #52bdf1);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgtsBFfyUh .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgtsBFfyUh .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgtsBFfyUh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgtsBFfyUh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgtsBFfyUh .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rgtsBFfyUh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgtsBFfyUh .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-rgtsBFfyUh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgtsBFfyUh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgtsBFfyUh .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-rgtsBFfyUh .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-rgtsBFfyUh .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rgtsBFfyUh .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rgtsBFfyUh .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 767px) {
  .cid-rgtsBFfyUh .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rgtsBFfyUh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgtsBFfyUh .navbar.collapsed .navbar-collapse.show,
.cid-rgtsBFfyUh .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgtsBFfyUh .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rgtsBFfyUh .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rgtsBFfyUh .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgtsBFfyUh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgtsBFfyUh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgtsBFfyUh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rgtsBFfyUh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgtsBFfyUh .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgtsBFfyUh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgtsBFfyUh .navbar.collapsed .right-menu,
.cid-rgtsBFfyUh .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rgtsBFfyUh .navbar .navbar-collapse.show,
  .cid-rgtsBFfyUh .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgtsBFfyUh .navbar .navbar-collapse.show .brand-container,
  .cid-rgtsBFfyUh .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rgtsBFfyUh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgtsBFfyUh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgtsBFfyUh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgtsBFfyUh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgtsBFfyUh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rgtsBFfyUh .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgtsBFfyUh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgtsBFfyUh .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgtsBFfyUh .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rgtsBFfyUh .navbar .right-menu,
  .cid-rgtsBFfyUh .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rgtsBFfyUh .navbar.navbar-short {
  min-height: 60px;
}
.cid-rgtsBFfyUh .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-rgtsBFfyUh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgtsBFfyUh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgtsBFfyUh .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgtsBFfyUh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgtsBFfyUh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgtsBFfyUh .dropdown-item.active,
.cid-rgtsBFfyUh .dropdown-item:active {
  background-color: transparent;
}
.cid-rgtsBFfyUh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgtsBFfyUh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgtsBFfyUh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgtsBFfyUh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rgtsBFfyUh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgtsBFfyUh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgtsBFfyUh ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rgtsBFfyUh ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rgtsBFfyUh .navbar-buttons {
  margin-left: auto;
}
.cid-rgtsBFfyUh button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rgtsBFfyUh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #096693;
}
.cid-rgtsBFfyUh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgtsBFfyUh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgtsBFfyUh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgtsBFfyUh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgtsBFfyUh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgtsBFfyUh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rgtsBFfyUh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rgtsBFfyUh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgtsBFfyUh .navbar-dropdown {
  position: fixed;
}
.cid-rgtsBFfyUh a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgtsBFfyUh .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgtsBFfyUh .right-menu,
.cid-rgtsBFfyUh .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rgtsBFfyUh .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgtsBFfyUh .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgtsBFfyUh .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rgtsBFfyUh .menu-top {
  text-align: center;
  width: 100%;
  background-color: #096693;
  padding: .5rem 0;
}
.cid-rgtsBFfyUh .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rgtsBFfyUh .card-wrapper {
  z-index: 3;
}
.cid-rgtsBFfyUh .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rgtsBFfyUh .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgtsBFfyUh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rg0Uki5L8u {
  background: #ffffff;
  background: linear-gradient(135deg, #ffffff, #52bdf1);
}
.cid-rg0Uki5L8u .container-fluid {
  padding: 0 3rem;
}
.cid-rg0Uki5L8u .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rg0Uki5L8u .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rg0Uki5L8u .container-fluid {
    padding: 0 1rem;
  }
  .cid-rg0Uki5L8u .image-block {
    width: 100% !important;
  }
}
#custom-html-3s img {
  transition: all 0.5s linear 0s;
  border-radius: 12px 0px 0px 12px;
  box-shadow: 2px 2px 8px black;
}
#custom-html-3s img:hover {
  -ms-transform: scale(1.2, 1.2);
  /* IE 9 */
  -webkit-transform: scale(1.2, 1.2);
  /* Safari */
  transform: scale(1.2, 1.2);
}
#custom-html-3s .empuja {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
.cid-rgaQPdKd9G {
  overflow-x: hidden !important;
}
.cid-rgaQPdKd9G .container-fluid {
  padding: 0 3rem;
}
.cid-rgaQPdKd9G .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 100% 0;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 60s !important;
  animation-duration: 60s;
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rgaQPdKd9G .scroll-wrapper.second {
  left: calc(100% - 1px);
  background-position: 0 0;
}
.cid-rgaQPdKd9G .mbr-overlay {
  z-index: 1;
}
.cid-rgaQPdKd9G .block-content {
  z-index: 2;
  padding-top: 105px;
  padding-bottom: 90px;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@media (max-width: 767px) {
  .cid-rgaQPdKd9G .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rgaQPdKd9G .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-rgaQPdKd9G .mbr-section-subtitle,
.cid-rgaQPdKd9G .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-rgaQPdKd9G .mbr-section-title B {
  color: #232323;
}
.cid-rgbsa7RBZa {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/camaras-antiguas-op.webp");
}
.cid-rgbsa7RBZa .mbr-section-title,
.cid-rgbsa7RBZa .mbr-section-subtitle {
  color: #879a9f;
}
.cid-rgbsa7RBZa .mbr-section-text {
  color: #767676;
}
.cid-rgbsa7RBZa .mbr-text,
.cid-rgbsa7RBZa .typed-text,
.cid-rgbsa7RBZa .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-rgbsa7RBZa .btn {
  margin-left: 4px !important;
}
.cid-rgbsa7RBZa .animated-element {
  color: #a38dfd;
}
.cid-rgbsa7RBZa .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #a38dfd;
}
@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-rgbsa7RBZa .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-rgbsa7RBZa .mbr-section-subtitle,
.cid-rgbsa7RBZa .typed-text {
  color: #ffffff;
  text-align: left;
}
.cid-rgbsa7RBZa .mbr-section-text,
.cid-rgbsa7RBZa .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-rgbqroMgvO {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rgbqroMgvO .container-fluid {
  padding: 0 3rem;
}
.cid-rgbqroMgvO .animated-element {
  color: #52bdf1;
}
@media (max-width: 767px) {
  .cid-rgbqroMgvO .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rgbqroMgvO .mbr-section-title {
  color: #000000;
}
.cid-rgbqroMgvO .mbr-section-subtitle,
.cid-rgbqroMgvO .mbr-section-btn {
  color: #232323;
}
.cid-rgaxXdjT5X {
  padding-top: 225px;
  padding-bottom: 195px;
  background-image: url("../../../assets/images/camara-rota-op-1.webp");
}
.cid-rgaxXdjT5X .card-wrapper {
  z-index: 3;
}
.cid-rgaxXdjT5X .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rgaxXdjT5X:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rgaxXdjT5X .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rgaxXdjT5X .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rgaxXdjT5X .text-block {
  text-align: left !important;
}
.cid-rgaxXdjT5X H2 {
  text-align: center;
  color: #ffffff;
}
.cid-rgaxXdjT5X SPAN {
  color: #096693;
}
.cid-rglWDpmnOg {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rglWDpmnOg .container-fluid {
  padding: 0 3rem;
}
.cid-rglWDpmnOg .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #7ccbf1 50%, #52bdf1 120%);
  display: inline-block;
}
.cid-rglWDpmnOg .timeline-text-content {
  padding: 2rem 2.5rem;
  margin-left: 2rem;
  text-align: left;
}
.cid-rglWDpmnOg .timeline-text-content p {
  margin-bottom: 0;
}
.cid-rglWDpmnOg .time-line-date-content {
  margin-right: 2rem;
}
.cid-rglWDpmnOg .time-line-date-content p {
  padding: 2rem 1.4rem;
  float: right;
}
.cid-rglWDpmnOg .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.cid-rglWDpmnOg .iconBackground {
  position: absolute;
  left: 25%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #1ba1e2;
  font-size: 30px;
  display: inline-block;
  top: 29px;
  margin-left: -10px;
}
.cid-rglWDpmnOg .separline:before,
.cid-rglWDpmnOg .first-separline:before {
  top: 3rem;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #1ba1e2;
  left: calc(25% - 1px);
  height: calc(100% + 2rem);
}
.cid-rglWDpmnOg .separline:after {
  top: calc(100% + 6.1rem);
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #1ba1e2;
  left: calc(25% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-rglWDpmnOg .container-fluid {
    padding: 0 1rem;
  }
  .cid-rglWDpmnOg .iconBackground {
    left: 10px !important;
    top: 33px;
  }
  .cid-rglWDpmnOg .separline:before,
  .cid-rglWDpmnOg .first-separline:before {
    left: 9px !important;
    top: 3.3rem;
  }
  .cid-rglWDpmnOg .separline:after {
    left: 9px !important;
    top: calc(100% + 6.4rem);
  }
  .cid-rglWDpmnOg .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-rglWDpmnOg .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-rglWDpmnOg .time-line-date-content p {
    float: left !important;
  }
  .cid-rglWDpmnOg .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
}
.cid-rglWDpmnOg .mbr-timeline-date {
  color: #1ba1e2;
}
.cid-rjVV78huSX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rjVV78huSX .container-fluid {
  padding: 0 3rem;
}
.cid-rjVV78huSX .media-container-column {
  padding: 0 2rem;
}
.cid-rjVV78huSX .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rjVV78huSX .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rjVRmwuYe3 {
  background: #ffffff;
  background: linear-gradient(135deg, #ffffff, #52bdf1);
}
.cid-rjVRmwuYe3 .container-fluid {
  padding: 0 3rem;
}
.cid-rjVRmwuYe3 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rjVRmwuYe3 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rjVRmwuYe3 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rjVRmwuYe3 .image-block {
    width: 100% !important;
  }
}
.cid-rjVRmwuYe3 img {
  border-radius: 20px;
}
.cid-rgbwKmOxse {
  background-image: url("../../../assets/images/collage-fokus-bn-op.webp");
}
.cid-rgbwKmOxse .mbr-overlay {
  background: #7ccbf1;
  background: linear-gradient(45deg, #7ccbf1, #000000);
}
.cid-rgbwKmOxse .mbr-section-title {
  margin: 0;
}
.cid-rgbwKmOxse .mbr-text,
.cid-rgbwKmOxse .mbr-section-btn {
  color: #ffffff;
}
.cid-rgbmw3Mnx1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rgbmw3Mnx1 p {
  color: #767676;
}
.cid-rgbmw3Mnx1 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rgbmw3Mnx1 .row-element,
.cid-rgbmw3Mnx1 .image-element {
  padding: 0;
}
.cid-rgbmw3Mnx1 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgbmw3Mnx1 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rgbmw3Mnx1 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rgbmw3Mnx1 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rgbmw3Mnx1 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rgbmw3Mnx1 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rgbmw3Mnx1 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rgbmw3Mnx1 .underline .line {
    height: 2px;
  }
  .cid-rgbmw3Mnx1 .mbr-title,
  .cid-rgbmw3Mnx1 .underline,
  .cid-rgbmw3Mnx1 .mbr-text,
  .cid-rgbmw3Mnx1 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rgbmwCRnjO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rgbmwCRnjO p {
  color: #767676;
}
.cid-rgbmwCRnjO .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rgbmwCRnjO .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rgbmwCRnjO .row-element,
.cid-rgbmwCRnjO .image-element {
  padding: 0;
}
.cid-rgbmwCRnjO .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgbmwCRnjO .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rgbmwCRnjO .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rgbmwCRnjO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rgbmwCRnjO .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rgbmwCRnjO .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rgbmwCRnjO .text-content {
    padding: 2rem 1rem;
  }
  .cid-rgbmwCRnjO .underline .line {
    height: 2px;
  }
  .cid-rgbmwCRnjO .mbr-title,
  .cid-rgbmwCRnjO .underline,
  .cid-rgbmwCRnjO .mbr-text,
  .cid-rgbmwCRnjO .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rg0UkiQ0F0 {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rg0UkiQ0F0 .container-fluid {
  padding: 0 3rem;
}
.cid-rg0UkiQ0F0 .animated-element {
  color: #52bdf1;
}
@media (max-width: 767px) {
  .cid-rg0UkiQ0F0 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rg0UkiQ0F0 .mbr-section-title {
  color: #000000;
}
.cid-rg0UkiQ0F0 .mbr-section-subtitle,
.cid-rg0UkiQ0F0 .mbr-section-btn {
  color: #232323;
}
.cid-rg0UkkzoWP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #4d86b3;
}
.cid-rg0UkkzoWP .container-fluid {
  padding: 0 3rem;
}
.cid-rg0UkkzoWP .media-container-column {
  padding: 0 2rem;
}
.cid-rg0UkkzoWP .mbr-section-title {
  display: inline-block;
  position: relative;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rg0UkkzoWP .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rg0UkkzoWP .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-rg0UkmBwbl {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #232323;
}
.cid-rg0UkmBwbl ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-rg0UkmBwbl ul li {
  padding: 1rem 0;
}
.cid-rg0UkmBwbl ul li:hover {
  color: #7ccbf1;
}
.cid-rg0UkmBwbl .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-rg0UkmBwbl .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-rg0UkmBwbl .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-rg0UkmBwbl .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rg0UkmBwbl .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-rg0UkmBwbl .map {
    height: auto;
  }
}
.cid-rg0UkmBwbl .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rg0UkmBwbl .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
}
.cid-rg0UkmBwbl .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rg0UkmBwbl .social-list a:hover {
  opacity: 1;
}
.cid-rg0UkmBwbl .row-element,
.cid-rg0UkmBwbl .image-element {
  padding: 0;
}
.cid-rg0UkmBwbl .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rg0UkmBwbl .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rg0UkmBwbl .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rg0UkmBwbl .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rg0UkmBwbl .text-content {
    padding: 2rem 1rem;
  }
  .cid-rg0UkmBwbl .underline .line {
    height: 2px;
  }
  .cid-rg0UkmBwbl .mbr-title,
  .cid-rg0UkmBwbl .underline,
  .cid-rg0UkmBwbl .mbr-text,
  .cid-rg0UkmBwbl .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rg0UkmBwbl .mbr-title,
.cid-rg0UkmBwbl .underline {
  color: #ffffff;
}
.cid-rg0UkmBwbl .mbr-text,
.cid-rg0UkmBwbl .mbr-section-btn {
  color: #ffffff;
}
.cid-rg0UkmBwbl mbr-list LI {
  color: #ffffff;
}
.cid-rg0UkmBwbl mbr-list {
  text-align: center;
}
.cid-rg0UkmBwbl .mbr-list,
.cid-rg0UkmBwbl .social-list mbr-list {
  color: #ffffff;
}
.cid-uJiwXozTVD.popup-builder {
  background-color: #ffffff;
}
.cid-uJiwXozTVD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJiwXozTVD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJiwXozTVD .modal-content,
.cid-uJiwXozTVD .modal-dialog {
  height: auto;
}
.cid-uJiwXozTVD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJiwXozTVD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJiwXozTVD .form-wrapper .mbr-form .form-group,
  .cid-uJiwXozTVD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJiwXozTVD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJiwXozTVD .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJiwXozTVD .mbr-text {
  text-align: center;
}
.cid-uJiwXozTVD .pt-0 {
  padding-top: 0 !important;
}
.cid-uJiwXozTVD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJiwXozTVD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJiwXozTVD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJiwXozTVD .modal-open {
  overflow: hidden;
}
.cid-uJiwXozTVD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJiwXozTVD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJiwXozTVD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJiwXozTVD .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJiwXozTVD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJiwXozTVD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJiwXozTVD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJiwXozTVD .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uJiwXozTVD .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJiwXozTVD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJiwXozTVD .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJiwXozTVD .modal-backdrop.show {
  opacity: .5;
}
.cid-uJiwXozTVD .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJiwXozTVD .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXozTVD .modal-header {
    padding: 1rem;
  }
}
.cid-uJiwXozTVD .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJiwXozTVD .modal-header .close svg {
  fill: #353535;
}
.cid-uJiwXozTVD .modal-header .close:hover {
  opacity: 1;
}
.cid-uJiwXozTVD .modal-header .close:focus {
  outline: none;
}
.cid-uJiwXozTVD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uJiwXozTVD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJiwXozTVD .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXozTVD .modal-body {
    padding: 1rem;
  }
}
.cid-uJiwXozTVD .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJiwXozTVD .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXozTVD .modal-footer {
    padding: 1rem;
  }
}
.cid-uJiwXozTVD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJiwXozTVD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJiwXozTVD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJiwXozTVD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJiwXozTVD .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJiwXozTVD .modal-lg,
  .cid-uJiwXozTVD .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJiwXozTVD .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJiwXozTVD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJiwXozTVD .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJiwXozTVD .form-group {
  margin-bottom: 1rem;
}
.cid-uJiwXozTVD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJiwXozTVD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJiwXozTVD .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJiwXozTVD .mbr-section-btn {
  margin: 0;
}
.cid-uJiwXozTVD .mbr-section-btn .btn {
  margin: 0;
}
.cid-rgtsFgNfgV .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-rgtsFgNfgV .nav-item:focus,
.cid-rgtsFgNfgV .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgtsFgNfgV .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgtsFgNfgV .nav-item .nav-link {
    position: relative;
  }
  .cid-rgtsFgNfgV .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #7ccbf1, #52bdf1);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgtsFgNfgV .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgtsFgNfgV .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgtsFgNfgV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgtsFgNfgV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgtsFgNfgV .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rgtsFgNfgV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgtsFgNfgV .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-rgtsFgNfgV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgtsFgNfgV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgtsFgNfgV .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-rgtsFgNfgV .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-rgtsFgNfgV .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rgtsFgNfgV .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rgtsFgNfgV .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 767px) {
  .cid-rgtsFgNfgV .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rgtsFgNfgV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgtsFgNfgV .navbar.collapsed .navbar-collapse.show,
.cid-rgtsFgNfgV .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgtsFgNfgV .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rgtsFgNfgV .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rgtsFgNfgV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgtsFgNfgV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgtsFgNfgV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgtsFgNfgV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rgtsFgNfgV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgtsFgNfgV .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgtsFgNfgV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgtsFgNfgV .navbar.collapsed .right-menu,
.cid-rgtsFgNfgV .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rgtsFgNfgV .navbar .navbar-collapse.show,
  .cid-rgtsFgNfgV .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgtsFgNfgV .navbar .navbar-collapse.show .brand-container,
  .cid-rgtsFgNfgV .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rgtsFgNfgV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgtsFgNfgV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgtsFgNfgV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgtsFgNfgV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgtsFgNfgV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rgtsFgNfgV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgtsFgNfgV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgtsFgNfgV .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgtsFgNfgV .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rgtsFgNfgV .navbar .right-menu,
  .cid-rgtsFgNfgV .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rgtsFgNfgV .navbar.navbar-short {
  min-height: 60px;
}
.cid-rgtsFgNfgV .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-rgtsFgNfgV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgtsFgNfgV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgtsFgNfgV .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgtsFgNfgV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgtsFgNfgV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgtsFgNfgV .dropdown-item.active,
.cid-rgtsFgNfgV .dropdown-item:active {
  background-color: transparent;
}
.cid-rgtsFgNfgV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgtsFgNfgV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgtsFgNfgV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgtsFgNfgV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rgtsFgNfgV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgtsFgNfgV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgtsFgNfgV ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rgtsFgNfgV ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rgtsFgNfgV .navbar-buttons {
  margin-left: auto;
}
.cid-rgtsFgNfgV button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rgtsFgNfgV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #096693;
}
.cid-rgtsFgNfgV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgtsFgNfgV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgtsFgNfgV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgtsFgNfgV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgtsFgNfgV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgtsFgNfgV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rgtsFgNfgV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rgtsFgNfgV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgtsFgNfgV .navbar-dropdown {
  position: fixed;
}
.cid-rgtsFgNfgV a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgtsFgNfgV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgtsFgNfgV .right-menu,
.cid-rgtsFgNfgV .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rgtsFgNfgV .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgtsFgNfgV .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgtsFgNfgV .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rgtsFgNfgV .menu-top {
  text-align: center;
  width: 100%;
  background-color: #096693;
  padding: .5rem 0;
}
.cid-rgtsFgNfgV .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rgtsFgNfgV .card-wrapper {
  z-index: 3;
}
.cid-rgtsFgNfgV .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rgtsFgNfgV .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgtsFgNfgV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgtt7Li1UL {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rgtt7Li1UL .container-fluid {
  padding: 0 3rem;
}
.cid-rgtt7Li1UL .media-container-column {
  padding: 0 2rem;
}
.cid-rgtt7Li1UL .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rgtt7Li1UL .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rgbSwXaVuD {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rgbSwXaVuD .container-fluid {
  padding: 0 3rem;
}
.cid-rgbSwXaVuD .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-rgbSwXaVuD .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rgbSwXaVuD .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-rgbSAHBaZo {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rgbSAHBaZo .mbr-text,
.cid-rgbSAHBaZo blockquote {
  color: #232323;
}
.cid-uJiwXoA9bR.popup-builder {
  background-color: #ffffff;
}
.cid-uJiwXoA9bR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJiwXoA9bR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJiwXoA9bR .modal-content,
.cid-uJiwXoA9bR .modal-dialog {
  height: auto;
}
.cid-uJiwXoA9bR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJiwXoA9bR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJiwXoA9bR .form-wrapper .mbr-form .form-group,
  .cid-uJiwXoA9bR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJiwXoA9bR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJiwXoA9bR .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJiwXoA9bR .mbr-text {
  text-align: center;
}
.cid-uJiwXoA9bR .pt-0 {
  padding-top: 0 !important;
}
.cid-uJiwXoA9bR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJiwXoA9bR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJiwXoA9bR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJiwXoA9bR .modal-open {
  overflow: hidden;
}
.cid-uJiwXoA9bR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJiwXoA9bR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJiwXoA9bR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJiwXoA9bR .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJiwXoA9bR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJiwXoA9bR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJiwXoA9bR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJiwXoA9bR .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uJiwXoA9bR .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJiwXoA9bR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJiwXoA9bR .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJiwXoA9bR .modal-backdrop.show {
  opacity: .5;
}
.cid-uJiwXoA9bR .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJiwXoA9bR .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXoA9bR .modal-header {
    padding: 1rem;
  }
}
.cid-uJiwXoA9bR .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJiwXoA9bR .modal-header .close svg {
  fill: #353535;
}
.cid-uJiwXoA9bR .modal-header .close:hover {
  opacity: 1;
}
.cid-uJiwXoA9bR .modal-header .close:focus {
  outline: none;
}
.cid-uJiwXoA9bR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uJiwXoA9bR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJiwXoA9bR .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXoA9bR .modal-body {
    padding: 1rem;
  }
}
.cid-uJiwXoA9bR .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJiwXoA9bR .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXoA9bR .modal-footer {
    padding: 1rem;
  }
}
.cid-uJiwXoA9bR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJiwXoA9bR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJiwXoA9bR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJiwXoA9bR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJiwXoA9bR .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJiwXoA9bR .modal-lg,
  .cid-uJiwXoA9bR .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJiwXoA9bR .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJiwXoA9bR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJiwXoA9bR .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJiwXoA9bR .form-group {
  margin-bottom: 1rem;
}
.cid-uJiwXoA9bR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJiwXoA9bR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJiwXoA9bR .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJiwXoA9bR .mbr-section-btn {
  margin: 0;
}
.cid-uJiwXoA9bR .mbr-section-btn .btn {
  margin: 0;
}
.cid-rgttDppcja .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-rgttDppcja .nav-item:focus,
.cid-rgttDppcja .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgttDppcja .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgttDppcja .nav-item .nav-link {
    position: relative;
  }
  .cid-rgttDppcja .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #7ccbf1, #52bdf1);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgttDppcja .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgttDppcja .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgttDppcja .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgttDppcja .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgttDppcja .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rgttDppcja .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgttDppcja .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-rgttDppcja .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgttDppcja .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgttDppcja .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-rgttDppcja .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-rgttDppcja .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rgttDppcja .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rgttDppcja .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 767px) {
  .cid-rgttDppcja .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rgttDppcja .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgttDppcja .navbar.collapsed .navbar-collapse.show,
.cid-rgttDppcja .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgttDppcja .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rgttDppcja .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rgttDppcja .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgttDppcja .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgttDppcja .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgttDppcja .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rgttDppcja .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgttDppcja .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgttDppcja .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgttDppcja .navbar.collapsed .right-menu,
.cid-rgttDppcja .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rgttDppcja .navbar .navbar-collapse.show,
  .cid-rgttDppcja .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgttDppcja .navbar .navbar-collapse.show .brand-container,
  .cid-rgttDppcja .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rgttDppcja .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgttDppcja .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgttDppcja .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgttDppcja .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgttDppcja .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rgttDppcja .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgttDppcja .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgttDppcja .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgttDppcja .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rgttDppcja .navbar .right-menu,
  .cid-rgttDppcja .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rgttDppcja .navbar.navbar-short {
  min-height: 60px;
}
.cid-rgttDppcja .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-rgttDppcja .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgttDppcja .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgttDppcja .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgttDppcja .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgttDppcja .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgttDppcja .dropdown-item.active,
.cid-rgttDppcja .dropdown-item:active {
  background-color: transparent;
}
.cid-rgttDppcja .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgttDppcja .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgttDppcja .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgttDppcja .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rgttDppcja .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgttDppcja .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgttDppcja ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rgttDppcja ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rgttDppcja .navbar-buttons {
  margin-left: auto;
}
.cid-rgttDppcja button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rgttDppcja button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #096693;
}
.cid-rgttDppcja button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgttDppcja button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgttDppcja button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgttDppcja button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgttDppcja nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgttDppcja nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rgttDppcja nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rgttDppcja nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgttDppcja .navbar-dropdown {
  position: fixed;
}
.cid-rgttDppcja a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgttDppcja .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgttDppcja .right-menu,
.cid-rgttDppcja .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rgttDppcja .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgttDppcja .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgttDppcja .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rgttDppcja .menu-top {
  text-align: center;
  width: 100%;
  background-color: #096693;
  padding: .5rem 0;
}
.cid-rgttDppcja .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rgttDppcja .card-wrapper {
  z-index: 3;
}
.cid-rgttDppcja .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rgttDppcja .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgttDppcja .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgttySiqgz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rgttySiqgz .container-fluid {
  padding: 0 3rem;
}
.cid-rgttySiqgz .media-container-column {
  padding: 0 2rem;
}
.cid-rgttySiqgz .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rgttySiqgz .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rgbUuHaYuB {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rgbUuHaYuB .container-fluid {
  padding: 0 3rem;
}
.cid-rgbUuHaYuB .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-rgbUuHaYuB .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rgbUuHaYuB .mbr-section-title {
  color: #232323;
}
.cid-rgbUBtpnYQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rgbUBtpnYQ .mbr-text,
.cid-rgbUBtpnYQ blockquote {
  color: #232323;
}
.cid-uJiwXoAgdB.popup-builder {
  background-color: #ffffff;
}
.cid-uJiwXoAgdB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJiwXoAgdB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJiwXoAgdB .modal-content,
.cid-uJiwXoAgdB .modal-dialog {
  height: auto;
}
.cid-uJiwXoAgdB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJiwXoAgdB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJiwXoAgdB .form-wrapper .mbr-form .form-group,
  .cid-uJiwXoAgdB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJiwXoAgdB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJiwXoAgdB .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJiwXoAgdB .mbr-text {
  text-align: center;
}
.cid-uJiwXoAgdB .pt-0 {
  padding-top: 0 !important;
}
.cid-uJiwXoAgdB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJiwXoAgdB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJiwXoAgdB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJiwXoAgdB .modal-open {
  overflow: hidden;
}
.cid-uJiwXoAgdB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJiwXoAgdB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJiwXoAgdB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJiwXoAgdB .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJiwXoAgdB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJiwXoAgdB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJiwXoAgdB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJiwXoAgdB .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uJiwXoAgdB .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJiwXoAgdB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJiwXoAgdB .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJiwXoAgdB .modal-backdrop.show {
  opacity: .5;
}
.cid-uJiwXoAgdB .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJiwXoAgdB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXoAgdB .modal-header {
    padding: 1rem;
  }
}
.cid-uJiwXoAgdB .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJiwXoAgdB .modal-header .close svg {
  fill: #353535;
}
.cid-uJiwXoAgdB .modal-header .close:hover {
  opacity: 1;
}
.cid-uJiwXoAgdB .modal-header .close:focus {
  outline: none;
}
.cid-uJiwXoAgdB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uJiwXoAgdB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJiwXoAgdB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXoAgdB .modal-body {
    padding: 1rem;
  }
}
.cid-uJiwXoAgdB .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJiwXoAgdB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXoAgdB .modal-footer {
    padding: 1rem;
  }
}
.cid-uJiwXoAgdB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJiwXoAgdB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJiwXoAgdB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJiwXoAgdB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJiwXoAgdB .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJiwXoAgdB .modal-lg,
  .cid-uJiwXoAgdB .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJiwXoAgdB .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJiwXoAgdB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJiwXoAgdB .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJiwXoAgdB .form-group {
  margin-bottom: 1rem;
}
.cid-uJiwXoAgdB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJiwXoAgdB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJiwXoAgdB .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJiwXoAgdB .mbr-section-btn {
  margin: 0;
}
.cid-uJiwXoAgdB .mbr-section-btn .btn {
  margin: 0;
}
.cid-rgtdrw4xfL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-rgtdrw4xfL .nav-item:focus,
.cid-rgtdrw4xfL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgtdrw4xfL .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgtdrw4xfL .nav-item .nav-link {
    position: relative;
  }
  .cid-rgtdrw4xfL .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #7ccbf1, #52bdf1);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgtdrw4xfL .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgtdrw4xfL .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgtdrw4xfL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgtdrw4xfL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgtdrw4xfL .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rgtdrw4xfL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgtdrw4xfL .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-rgtdrw4xfL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgtdrw4xfL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgtdrw4xfL .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-rgtdrw4xfL .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-rgtdrw4xfL .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rgtdrw4xfL .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rgtdrw4xfL .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 767px) {
  .cid-rgtdrw4xfL .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rgtdrw4xfL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgtdrw4xfL .navbar.collapsed .navbar-collapse.show,
.cid-rgtdrw4xfL .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgtdrw4xfL .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rgtdrw4xfL .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rgtdrw4xfL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgtdrw4xfL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgtdrw4xfL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgtdrw4xfL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rgtdrw4xfL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgtdrw4xfL .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgtdrw4xfL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgtdrw4xfL .navbar.collapsed .right-menu,
.cid-rgtdrw4xfL .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rgtdrw4xfL .navbar .navbar-collapse.show,
  .cid-rgtdrw4xfL .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgtdrw4xfL .navbar .navbar-collapse.show .brand-container,
  .cid-rgtdrw4xfL .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rgtdrw4xfL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgtdrw4xfL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgtdrw4xfL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgtdrw4xfL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgtdrw4xfL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rgtdrw4xfL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgtdrw4xfL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgtdrw4xfL .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgtdrw4xfL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rgtdrw4xfL .navbar .right-menu,
  .cid-rgtdrw4xfL .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rgtdrw4xfL .navbar.navbar-short {
  min-height: 60px;
}
.cid-rgtdrw4xfL .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-rgtdrw4xfL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgtdrw4xfL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgtdrw4xfL .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgtdrw4xfL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgtdrw4xfL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgtdrw4xfL .dropdown-item.active,
.cid-rgtdrw4xfL .dropdown-item:active {
  background-color: transparent;
}
.cid-rgtdrw4xfL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgtdrw4xfL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgtdrw4xfL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgtdrw4xfL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rgtdrw4xfL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgtdrw4xfL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgtdrw4xfL ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rgtdrw4xfL ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rgtdrw4xfL .navbar-buttons {
  margin-left: auto;
}
.cid-rgtdrw4xfL button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rgtdrw4xfL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #096693;
}
.cid-rgtdrw4xfL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgtdrw4xfL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgtdrw4xfL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgtdrw4xfL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgtdrw4xfL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgtdrw4xfL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rgtdrw4xfL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rgtdrw4xfL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgtdrw4xfL .navbar-dropdown {
  position: fixed;
}
.cid-rgtdrw4xfL a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgtdrw4xfL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgtdrw4xfL .right-menu,
.cid-rgtdrw4xfL .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rgtdrw4xfL .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgtdrw4xfL .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgtdrw4xfL .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rgtdrw4xfL .menu-top {
  text-align: center;
  width: 100%;
  background-color: #096693;
  padding: .5rem 0;
}
.cid-rgtdrw4xfL .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rgtdrw4xfL .card-wrapper {
  z-index: 3;
}
.cid-rgtdrw4xfL .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rgtdrw4xfL .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgtdrw4xfL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rhtTMg8nG5 {
  background-image: url("../../../assets/images/mbr-1.webp");
}
.cid-rhtTMg8nG5 .mbr-overlay {
  background: #4d86b3;
  background: linear-gradient(45deg, #4d86b3, #ffffff);
  background: radial-gradient(#4d86b3, #ffffff);
}
.cid-rhtTMg8nG5 .mbr-section-title {
  margin: 0;
}
#custom-html-3v img {
  transition: all 0.5s linear 0s;
  border-radius: 12px 0px 0px 12px;
  box-shadow: 2px 2px 8px black;
}
#custom-html-3v img:hover {
  -ms-transform: scale(1.2, 1.2);
  /* IE 9 */
  -webkit-transform: scale(1.2, 1.2);
  /* Safari */
  transform: scale(1.2, 1.2);
}
#custom-html-3v .empuja {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
.cid-uJiwXoAsAc.popup-builder {
  background-color: #ffffff;
}
.cid-uJiwXoAsAc.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJiwXoAsAc.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJiwXoAsAc .modal-content,
.cid-uJiwXoAsAc .modal-dialog {
  height: auto;
}
.cid-uJiwXoAsAc .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJiwXoAsAc .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJiwXoAsAc .form-wrapper .mbr-form .form-group,
  .cid-uJiwXoAsAc .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJiwXoAsAc .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJiwXoAsAc .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJiwXoAsAc .mbr-text {
  text-align: center;
}
.cid-uJiwXoAsAc .pt-0 {
  padding-top: 0 !important;
}
.cid-uJiwXoAsAc .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJiwXoAsAc .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJiwXoAsAc .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJiwXoAsAc .modal-open {
  overflow: hidden;
}
.cid-uJiwXoAsAc .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJiwXoAsAc .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJiwXoAsAc .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJiwXoAsAc .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJiwXoAsAc .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJiwXoAsAc .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJiwXoAsAc .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJiwXoAsAc .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uJiwXoAsAc .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJiwXoAsAc .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJiwXoAsAc .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJiwXoAsAc .modal-backdrop.show {
  opacity: .5;
}
.cid-uJiwXoAsAc .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJiwXoAsAc .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXoAsAc .modal-header {
    padding: 1rem;
  }
}
.cid-uJiwXoAsAc .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJiwXoAsAc .modal-header .close svg {
  fill: #353535;
}
.cid-uJiwXoAsAc .modal-header .close:hover {
  opacity: 1;
}
.cid-uJiwXoAsAc .modal-header .close:focus {
  outline: none;
}
.cid-uJiwXoAsAc .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uJiwXoAsAc .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJiwXoAsAc .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXoAsAc .modal-body {
    padding: 1rem;
  }
}
.cid-uJiwXoAsAc .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJiwXoAsAc .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXoAsAc .modal-footer {
    padding: 1rem;
  }
}
.cid-uJiwXoAsAc .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJiwXoAsAc .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJiwXoAsAc .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJiwXoAsAc .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJiwXoAsAc .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJiwXoAsAc .modal-lg,
  .cid-uJiwXoAsAc .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJiwXoAsAc .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJiwXoAsAc .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJiwXoAsAc .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJiwXoAsAc .form-group {
  margin-bottom: 1rem;
}
.cid-uJiwXoAsAc .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJiwXoAsAc .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJiwXoAsAc .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJiwXoAsAc .mbr-section-btn {
  margin: 0;
}
.cid-uJiwXoAsAc .mbr-section-btn .btn {
  margin: 0;
}
.cid-rgtdrw4xfL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-rgtdrw4xfL .nav-item:focus,
.cid-rgtdrw4xfL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgtdrw4xfL .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgtdrw4xfL .nav-item .nav-link {
    position: relative;
  }
  .cid-rgtdrw4xfL .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #7ccbf1, #52bdf1);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgtdrw4xfL .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgtdrw4xfL .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgtdrw4xfL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgtdrw4xfL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgtdrw4xfL .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rgtdrw4xfL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgtdrw4xfL .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-rgtdrw4xfL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgtdrw4xfL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgtdrw4xfL .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-rgtdrw4xfL .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-rgtdrw4xfL .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rgtdrw4xfL .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-rgtdrw4xfL .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 767px) {
  .cid-rgtdrw4xfL .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rgtdrw4xfL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgtdrw4xfL .navbar.collapsed .navbar-collapse.show,
.cid-rgtdrw4xfL .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgtdrw4xfL .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rgtdrw4xfL .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-rgtdrw4xfL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgtdrw4xfL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgtdrw4xfL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgtdrw4xfL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rgtdrw4xfL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgtdrw4xfL .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgtdrw4xfL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgtdrw4xfL .navbar.collapsed .right-menu,
.cid-rgtdrw4xfL .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-rgtdrw4xfL .navbar .navbar-collapse.show,
  .cid-rgtdrw4xfL .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgtdrw4xfL .navbar .navbar-collapse.show .brand-container,
  .cid-rgtdrw4xfL .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-rgtdrw4xfL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgtdrw4xfL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgtdrw4xfL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgtdrw4xfL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgtdrw4xfL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rgtdrw4xfL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgtdrw4xfL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgtdrw4xfL .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rgtdrw4xfL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-rgtdrw4xfL .navbar .right-menu,
  .cid-rgtdrw4xfL .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rgtdrw4xfL .navbar.navbar-short {
  min-height: 60px;
}
.cid-rgtdrw4xfL .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-rgtdrw4xfL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgtdrw4xfL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgtdrw4xfL .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgtdrw4xfL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgtdrw4xfL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgtdrw4xfL .dropdown-item.active,
.cid-rgtdrw4xfL .dropdown-item:active {
  background-color: transparent;
}
.cid-rgtdrw4xfL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgtdrw4xfL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgtdrw4xfL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgtdrw4xfL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rgtdrw4xfL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgtdrw4xfL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgtdrw4xfL ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-rgtdrw4xfL ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-rgtdrw4xfL .navbar-buttons {
  margin-left: auto;
}
.cid-rgtdrw4xfL button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rgtdrw4xfL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #096693;
}
.cid-rgtdrw4xfL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgtdrw4xfL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgtdrw4xfL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgtdrw4xfL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgtdrw4xfL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgtdrw4xfL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-rgtdrw4xfL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-rgtdrw4xfL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgtdrw4xfL .navbar-dropdown {
  position: fixed;
}
.cid-rgtdrw4xfL a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgtdrw4xfL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgtdrw4xfL .right-menu,
.cid-rgtdrw4xfL .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-rgtdrw4xfL .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgtdrw4xfL .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rgtdrw4xfL .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rgtdrw4xfL .menu-top {
  text-align: center;
  width: 100%;
  background-color: #096693;
  padding: .5rem 0;
}
.cid-rgtdrw4xfL .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rgtdrw4xfL .card-wrapper {
  z-index: 3;
}
.cid-rgtdrw4xfL .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-rgtdrw4xfL .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgtdrw4xfL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCywsb8Ntj {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/camara-yashica-mat-124-1-1496x2000.webp");
}
.cid-tCywsb8Ntj p {
  color: #767676;
}
.cid-tCywsb8Ntj .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tCywsb8Ntj .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tCywsb8Ntj .text-content {
    padding: 5rem;
  }
  .cid-tCywsb8Ntj .media-content {
    padding-right: 5rem;
  }
}
@media (max-width: 1499px) and (min-width: 768px) {
  .cid-tCywsb8Ntj .text-content {
    padding: 3rem;
  }
}
@media (max-width: 1499px) and (min-width: 991px) {
  .cid-tCywsb8Ntj .media-content {
    padding-right: 3rem;
  }
}
@media (min-width: 992px) {
  .cid-tCywsb8Ntj .media-content {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tCywsb8Ntj .text-content {
    padding: 2rem 1rem;
  }
}
.cid-tCywsb8Ntj .mbr-text,
.cid-tCywsb8Ntj .mbr-section-btn {
  color: #000000;
}
.cid-tCywsb8Ntj .underline,
.cid-tCywsb8Ntj .mbr-title {
  color: #ffffff;
}
.cid-tCywsb8Ntj video {
  height: 420px !important;
  width: auto !important;
}
.cid-tCywsb8Ntj .mbr-figure {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}
.cid-tCyK6v0hzq {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #232323;
}
.cid-tCyK6v0hzq ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-tCyK6v0hzq ul li {
  padding: 1rem 0;
}
.cid-tCyK6v0hzq ul li:hover {
  color: #7ccbf1;
}
.cid-tCyK6v0hzq .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-tCyK6v0hzq .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-tCyK6v0hzq .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-tCyK6v0hzq .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tCyK6v0hzq .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-tCyK6v0hzq .map {
    height: auto;
  }
}
.cid-tCyK6v0hzq .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tCyK6v0hzq .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
}
.cid-tCyK6v0hzq .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tCyK6v0hzq .social-list a:hover {
  opacity: 1;
}
.cid-tCyK6v0hzq .row-element,
.cid-tCyK6v0hzq .image-element {
  padding: 0;
}
.cid-tCyK6v0hzq .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tCyK6v0hzq .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7ccbf1, #52bdf1);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tCyK6v0hzq .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-tCyK6v0hzq .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tCyK6v0hzq .text-content {
    padding: 2rem 1rem;
  }
  .cid-tCyK6v0hzq .underline .line {
    height: 2px;
  }
  .cid-tCyK6v0hzq .mbr-title,
  .cid-tCyK6v0hzq .underline,
  .cid-tCyK6v0hzq .mbr-text,
  .cid-tCyK6v0hzq .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tCyK6v0hzq .mbr-title,
.cid-tCyK6v0hzq .underline {
  color: #ffffff;
}
.cid-tCyK6v0hzq .mbr-text,
.cid-tCyK6v0hzq .mbr-section-btn {
  color: #ffffff;
}
.cid-tCyK6v0hzq mbr-list LI {
  color: #ffffff;
}
.cid-tCyK6v0hzq mbr-list {
  text-align: center;
}
.cid-tCyK6v0hzq .mbr-list,
.cid-tCyK6v0hzq .social-list mbr-list {
  color: #ffffff;
}
.cid-rfUFEVJXcR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rfUFEVJXcR .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uJiwXoAOyg.popup-builder {
  background-color: #ffffff;
}
.cid-uJiwXoAOyg.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJiwXoAOyg.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJiwXoAOyg .modal-content,
.cid-uJiwXoAOyg .modal-dialog {
  height: auto;
}
.cid-uJiwXoAOyg .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJiwXoAOyg .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJiwXoAOyg .form-wrapper .mbr-form .form-group,
  .cid-uJiwXoAOyg .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJiwXoAOyg .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJiwXoAOyg .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJiwXoAOyg .mbr-text {
  text-align: center;
}
.cid-uJiwXoAOyg .pt-0 {
  padding-top: 0 !important;
}
.cid-uJiwXoAOyg .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJiwXoAOyg .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJiwXoAOyg .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJiwXoAOyg .modal-open {
  overflow: hidden;
}
.cid-uJiwXoAOyg .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJiwXoAOyg .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJiwXoAOyg .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJiwXoAOyg .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJiwXoAOyg .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJiwXoAOyg .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJiwXoAOyg .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJiwXoAOyg .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uJiwXoAOyg .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJiwXoAOyg .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJiwXoAOyg .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJiwXoAOyg .modal-backdrop.show {
  opacity: .5;
}
.cid-uJiwXoAOyg .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJiwXoAOyg .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXoAOyg .modal-header {
    padding: 1rem;
  }
}
.cid-uJiwXoAOyg .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJiwXoAOyg .modal-header .close svg {
  fill: #353535;
}
.cid-uJiwXoAOyg .modal-header .close:hover {
  opacity: 1;
}
.cid-uJiwXoAOyg .modal-header .close:focus {
  outline: none;
}
.cid-uJiwXoAOyg .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uJiwXoAOyg .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJiwXoAOyg .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXoAOyg .modal-body {
    padding: 1rem;
  }
}
.cid-uJiwXoAOyg .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJiwXoAOyg .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJiwXoAOyg .modal-footer {
    padding: 1rem;
  }
}
.cid-uJiwXoAOyg .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJiwXoAOyg .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJiwXoAOyg .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJiwXoAOyg .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJiwXoAOyg .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJiwXoAOyg .modal-lg,
  .cid-uJiwXoAOyg .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJiwXoAOyg .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJiwXoAOyg .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJiwXoAOyg .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJiwXoAOyg .form-group {
  margin-bottom: 1rem;
}
.cid-uJiwXoAOyg .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJiwXoAOyg .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJiwXoAOyg .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJiwXoAOyg .mbr-section-btn {
  margin: 0;
}
.cid-uJiwXoAOyg .mbr-section-btn .btn {
  margin: 0;
}
