body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.06rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #4284df !important;
}
.bg-success {
  background-color: #9473d2 !important;
}
.bg-info {
  background-color: #7237a2 !important;
}
.bg-warning {
  background-color: #f8f9c4 !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #4284df !important;
  border-color: #4284df !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #4284df !important;
  border-color: #4284df !important;
}
.btn-primary:before {
  background-color: #1f5eb6 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1f5eb6 !important;
  border-color: #1f5eb6 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-secondary:before {
  background-color: #eb3934 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #eb3934 !important;
  border-color: #eb3934 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-info:before {
  background-color: #4a2469 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4a2469 !important;
  border-color: #4a2469 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-success:before {
  background-color: #693cbc !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #693cbc !important;
  border-color: #693cbc !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
  color: #aaac12 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #aaac12 !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-warning:before {
  background-color: #f0f27f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #aaac12 !important;
  background-color: #f0f27f !important;
  border-color: #f0f27f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-danger:before {
  background-color: #c9c9c9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-white {
  color: #333333 !important;
}
.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: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.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: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #1b53a0;
  color: #1b53a0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #4284df;
}
.btn-primary-outline:before {
  background-color: #4284df;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4284df !important;
  border-color: #4284df !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9221d;
  color: #e9221d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #f27d7a;
}
.btn-secondary-outline:before {
  background-color: #f27d7a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #3c1d56;
  color: #3c1d56;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #7237a2;
}
.btn-info-outline:before {
  background-color: #7237a2;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #5e36a9;
  color: #5e36a9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #9473d2;
}
.btn-success-outline:before {
  background-color: #9473d2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #edf067;
  color: #edf067;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #aaac12;
  border-color: #f8f9c4;
}
.btn-warning-outline:before {
  background-color: #f8f9c4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #707070;
  border-color: #efefef;
}
.btn-danger-outline:before {
  background-color: #efefef;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4284df;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #4284df !important;
}
.text-secondary {
  color: #f27d7a !important;
}
.text-success {
  color: #9473d2 !important;
}
.text-info {
  color: #7237a2 !important;
}
.text-warning {
  color: #f8f9c4 !important;
}
.text-danger {
  color: #efefef !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1b53a0 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9221d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5e36a9 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #3c1d56 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #edf067 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bcbcbc !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: #70c770;
}
.alert-info {
  background-color: #7237a2;
}
.alert-warning {
  background-color: #f8f9c4;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4284df;
  border-color: #4284df;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4284df;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f0f6fd;
}
.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: #b083d5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #4284df;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #4284df;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #4284df;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.696rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4284df;
  color: #ffffff;
}
.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-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #4284df;
  border-bottom-color: #4284df;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #4284df !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: #f27d7a !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='%234284df' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-sPOeQFX9Wx .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-sPOeQFX9Wx .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sPOeQFX9Wx a {
  font-style: normal;
}
.cid-sPOeQFX9Wx .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sPOeQFX9Wx .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sPOeQFX9Wx .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-sPOeQFX9Wx .content-text {
  margin-bottom: 0;
}
.cid-sPOeQFX9Wx .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sPOeQFX9Wx .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #4284df;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sPOeQFX9Wx .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sPOeQFX9Wx .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sPOeQFX9Wx .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sPOeQFX9Wx .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sPOeQFX9Wx .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sPOeQFX9Wx .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sPOeQFX9Wx .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sPOeQFX9Wx .nav-dropdown .link {
  font-weight: 400;
}
.cid-sPOeQFX9Wx .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sPOeQFX9Wx .content-right-side {
  text-align: center;
}
.cid-sPOeQFX9Wx .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sPOeQFX9Wx .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sPOeQFX9Wx .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sPOeQFX9Wx .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sPOeQFX9Wx .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sPOeQFX9Wx .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sPOeQFX9Wx img {
    height: 3.8rem !important;
  }
  .cid-sPOeQFX9Wx .btn {
    display: -webkit-flex;
  }
  .cid-sPOeQFX9Wx button.navbar-toggler {
    display: block;
  }
  .cid-sPOeQFX9Wx .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sPOeQFX9Wx .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sPOeQFX9Wx .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sPOeQFX9Wx .navbar-collapse.collapsing,
  .cid-sPOeQFX9Wx .navbar-collapse.show {
    display: block !important;
  }
  .cid-sPOeQFX9Wx .navbar-collapse.collapsing .navbar-nav,
  .cid-sPOeQFX9Wx .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sPOeQFX9Wx .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sPOeQFX9Wx .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sPOeQFX9Wx .navbar-collapse.collapsing .navbar-buttons,
  .cid-sPOeQFX9Wx .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sPOeQFX9Wx .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sPOeQFX9Wx .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sPOeQFX9Wx .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-sPOeQFX9Wx .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sPOeQFX9Wx .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sPOeQFX9Wx .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sPOeQFX9Wx .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sPOeQFX9Wx .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sPOeQFX9Wx .navbar.opened {
    padding-bottom: 12rem;
  }
  .cid-sPOeQFX9Wx .navbar .navbar-collapse {
    max-height: calc(100vh - 12rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sPOeQFX9Wx .navbar.opened {
    padding-bottom: 15rem;
  }
  .cid-sPOeQFX9Wx .navbar .navbar-collapse {
    max-height: calc(100vh - 15rem - 80px);
  }
}
.cid-sPOeQFX9Wx .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sPOeQFX9Wx .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sPOeQFX9Wx .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sPOeQFX9Wx .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sPOeQFX9Wx .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sPOeQFX9Wx .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sPOeQFX9Wx .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sPOeQFX9Wx .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sPOeQFX9Wx .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sPOeQFX9Wx .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sPOeQFX9Wx .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
}
@media (min-width: 992px) {
  .cid-sPOeQFX9Wx .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sPOeQFX9Wx .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sPOeQFX9Wx .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sPOeQFX9Wx .navbar {
    display: block;
    padding: 0;
  }
  .cid-sPOeQFX9Wx .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sPOeQFX9Wx .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sPOeQFX9Wx .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sPOeQFX9Wx .navbar-toggler {
    display: none;
  }
  .cid-sPOeQFX9Wx .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sPOeQFX9Wx .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sPOeQFX9Wx .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sPOeQFX9Wx .menu-logo {
  margin-right: auto;
}
.cid-sPOeQFX9Wx .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sPOeQFX9Wx .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sPOeQFX9Wx .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sPOeQFX9Wx .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sPOeQFX9Wx .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sPOeQFX9Wx .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sPOeQFX9Wx .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sPOeQFX9Wx .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sPOeQFX9Wx .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPOeQFX9Wx .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sPOeQFX9Wx .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sPOeQFX9Wx .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sPOeQFX9Wx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sPOeQFX9Wx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPOeQFX9Wx .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sPOeQFX9Wx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sPOeQFX9Wx .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-sPOeQFX9Wx .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sPOeQFX9Wx .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPOeQFX9Wx .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sPOeQFX9Wx .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sPOeQFX9Wx .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sPOeQFX9Wx .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sPOeQFX9Wx .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sPOeQFX9Wx .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sPOeQFX9Wx button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPOeQFX9Wx button.navbar-toggler:focus {
  outline: none;
}
.cid-sPOeQFX9Wx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sPOeQFX9Wx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sPOeQFX9Wx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sPOeQFX9Wx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sPOeQFX9Wx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sPOeQFX9Wx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sPOeQFX9Wx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sPOeQFX9Wx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sPOeQFX9Wx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sPOeQFX9Wx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPOeQFX9Wx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPOeQFX9Wx .collapsed .btn {
  display: -webkit-flex;
}
.cid-sPOeQFX9Wx .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sPOeQFX9Wx .collapsed .navbar-collapse.collapsing,
.cid-sPOeQFX9Wx .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sPOeQFX9Wx .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sPOeQFX9Wx .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sPOeQFX9Wx .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sPOeQFX9Wx .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sPOeQFX9Wx .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sPOeQFX9Wx .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sPOeQFX9Wx .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sPOeQFX9Wx .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sPOeQFX9Wx .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sPOeQFX9Wx .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sPOeQFX9Wx .collapsed button.navbar-toggler {
  display: block;
}
.cid-sPOeQFX9Wx .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sPOeQFX9Wx .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sPOeQFX9Wx .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-sPOeQFX9Wx .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sPOeQFX9Wx .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sPOeQFX9Wx .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sPOeQFX9Wx .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sPOeQFX9Wx .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sPOeQFX9Wx .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sPOeQFX9Wx .nav-link:focus {
  outline: none;
}
.cid-sPOeQFX9Wx .navbar-toggler {
  position: relative;
}
.cid-sPOeQFX9Wx .dropdown-item.active,
.cid-sPOeQFX9Wx .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sPOeQFX9Wx .nav-link:hover,
.cid-sPOeQFX9Wx .dropdown-item:hover {
  color: #4284df;
}
.cid-sPOe7tlz6g {
  background-image: url("../../../assets/images/mbr-1256x837.jpg");
}
.cid-sPOe7tlz6g .column-content {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
  width: 100%;
  float: right;
  position: relative;
}
.cid-sPOe7tlz6g .text-content .btn-bgr {
  z-index: 0;
}
.cid-sPOe7tlz6g .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-sPOe7tlz6g .container-full-width {
  position: relative;
}
.cid-sPOe7tlz6g .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-sPOe7tlz6g .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-sPOe7tlz6g .layer path {
  fill: #ffffff;
}
@media (min-width: 576px) {
  .cid-sPOe7tlz6g .text-content {
    width: 540px;
  }
  .cid-sPOe7tlz6g .column-content {
    width: 100%;
  }
  .cid-sPOe7tlz6g .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-sPOe7tlz6g .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-sPOe7tlz6g .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-sPOe7tlz6g .column-content {
    width: 50%;
  }
  .cid-sPOe7tlz6g .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-sPOe7tlz6g .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPOe7tlz6g .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-sPOe7tlz6g .column-content {
    height: 33rem;
  }
}
.cid-sPOe7tlz6g .mbr-text,
.cid-sPOe7tlz6g .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-sPOe7tlz6g H1 {
  color: #0c57bf;
}
.cid-sPOjjdLdxk {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sPOjjdLdxk .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-sPOjjdLdxk .mbr-overlay {
  background: linear-gradient(#1d2671 -10%, #00113e 75%);
}
.cid-sPOjjdLdxk H1 {
  color: #2c1616;
}
.cid-sPOjjdLdxk H3 {
  color: #555555;
}
.cid-sPOjjdLdxk .mbr-text,
.cid-sPOjjdLdxk .mbr-section-btn {
  color: #555555;
}
.cid-sRXPGbRZm5 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sPOe6Zp4ZV {
  padding-top: 0px;
  background-color: #ffffff;
}
.cid-sPOe6Zp4ZV .container {
  margin-bottom: 15%;
}
.cid-sPOe6Zp4ZV .content-container .btn-bgr {
  z-index: 0;
}
.cid-sPOe6Zp4ZV .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-sPOe6Zp4ZV .box-item {
  width: calc(33.3% - 5rem);
  padding: 2.5rem;
}
.cid-sPOe6Zp4ZV .box-item:first-child {
  background-color: #4284df;
  margin-top: -200px;
}
.cid-sPOe6Zp4ZV .box-item:nth-child(2) {
  background-color: #04367c;
}
.cid-sPOe6Zp4ZV .box-item:nth-child(3) {
  background-color: #0c57bf;
}
.cid-sPOe6Zp4ZV .box-item:last-child {
  background-color: #04367c;
}
.cid-sPOe6Zp4ZV .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sPOe6Zp4ZV .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sPOe6Zp4ZV .box-list li:last-child {
  border-bottom: none;
}
.cid-sPOe6Zp4ZV .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sPOe6Zp4ZV .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-sPOe6Zp4ZV .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPOe6Zp4ZV .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-sPOe6Zp4ZV .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sPOe6Zp4ZV .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-sPOe6Zp4ZV .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sPOe6Zp4ZV H1 {
  text-align: left;
}
.cid-tpdR6xPAPo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tpdR6xPAPo .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tpdR6xPAPo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tpdR6xPAPo .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tpdR6xPAPo .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sPOk3eOp36 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sPOk3eOp36 h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-sPOk3eOp36 .mbr-section-subtitle {
  color: #767676;
}
.cid-sPOk3eOp36 .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-sPOk3eOp36 .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-sPOk3eOp36 .mbr-text-left {
  text-align: left;
}
.cid-sPOjxRVRH7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2a0845;
  background: linear-gradient(90deg, #2a0845, #0c57bf);
}
.cid-sPOjxRVRH7 .mbr-overlay {
  background: linear-gradient(90deg, #efefef, #1ec5bf);
}
.cid-sPOjxRVRH7 h4,
.cid-sPOjxRVRH7 h5 {
  text-align: center;
}
.cid-sPOjxRVRH7 p {
  text-align: center;
}
.cid-sPOjxRVRH7 .card-box {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.cid-sPOjxRVRH7 .card-img {
  font-size: 3rem;
}
.cid-sPOjxRVRH7 .date span {
  display: inline-block;
  background-color: #f27d7a;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
.cid-sPOjxRVRH7 .mbr-text {
  text-align: left;
}
.cid-sPOtuPRwJI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sPOtuPRwJI .google-map {
  height: 25rem;
  position: relative;
}
.cid-sPOtuPRwJI .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sPOtuPRwJI .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sPOtuPRwJI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sPOtuPRwJI .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sPOtuPRwJI .wrapper {
  margin-top: -10rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-sPOtuPRwJI .form-container {
  padding: 3rem;
}
.cid-sPOtuPRwJI .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-sPOtuPRwJI .content-panel {
  padding: 2rem;
  background: linear-gradient(45deg, #1a032d, #4284df);
  height: 100%;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
  overflow: hidden;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sPOtuPRwJI .mbr-text {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-sPOtuPRwJI .form-group,
  .cid-sPOtuPRwJI .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-sPOtuPRwJI .form-control {
  border-radius: .25rem !important;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
}
.cid-sPOtuPRwJI textarea.form-control {
  min-height: 170px;
}
@media (max-width: 767px) {
  .cid-sPOtuPRwJI .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sPOtuPRwJI .text-block {
    margin-bottom: 2rem;
  }
  .cid-sPOtuPRwJI .wrapper {
    margin-top: 0;
  }
}
.cid-sPOtuPRwJI .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPOtuPRwJI .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-sPOtuPRwJI .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sPOtuPRwJI .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-sPOtuPRwJI .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sPOtuPRwJI .social-list a:hover {
  opacity: 1;
}
.cid-sPOthP5UrG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4284df;
}
.cid-sPOthP5UrG p {
  text-align: center;
}
.cid-sPOthP5UrG .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sPOthP5UrG .btn-underline:hover {
  color: #505050;
}
.cid-sPOthP5UrG .btn-underline:before {
  background-color: #505050;
}
.cid-sPOthP5UrG .social-list a:focus {
  text-decoration: none;
}
.cid-sPOthP5UrG .text-copyright {
  width: 100%;
}
.cid-sPOthP5UrG .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-sPOthP5UrG .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sPOthP5UrG .logo-footer {
  line-height: normal;
}
.cid-sPOthP5UrG .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sPOthP5UrG .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sPOthP5UrG .mbr-section-btn {
  font-size: 16px;
}
.cid-sPOthP5UrG .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-sPOnJ5jurQ.popup-builder {
  background-color: #ffffff;
}
.cid-sPOnJ5jurQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sPOnJ5jurQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sPOnJ5jurQ .modal-content,
.cid-sPOnJ5jurQ .modal-dialog {
  height: auto;
}
.cid-sPOnJ5jurQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sPOnJ5jurQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sPOnJ5jurQ .form-wrapper .mbr-form .form-group,
  .cid-sPOnJ5jurQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sPOnJ5jurQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sPOnJ5jurQ .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-sPOnJ5jurQ .mbr-text {
  text-align: left;
  color: #cccccc;
}
.cid-sPOnJ5jurQ .pt-0 {
  padding-top: 0 !important;
}
.cid-sPOnJ5jurQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sPOnJ5jurQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sPOnJ5jurQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sPOnJ5jurQ .modal-open {
  overflow: hidden;
}
.cid-sPOnJ5jurQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sPOnJ5jurQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sPOnJ5jurQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sPOnJ5jurQ .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-sPOnJ5jurQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sPOnJ5jurQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sPOnJ5jurQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sPOnJ5jurQ .modal-content {
  background-image: url("https://branderitsolutions.co.za/clients/client-images/obp-investments-website/background.jpeg") !important;
  background-repeat: no-repeat !important;
  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) !important;
}
.cid-sPOnJ5jurQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sPOnJ5jurQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-sPOnJ5jurQ .modal-backdrop.show {
  opacity: .5;
}
.cid-sPOnJ5jurQ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sPOnJ5jurQ .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sPOnJ5jurQ .modal-header .close:hover {
  opacity: 1;
}
.cid-sPOnJ5jurQ .modal-header .close:focus {
  outline: none;
}
.cid-sPOnJ5jurQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #efefef;
}
.cid-sPOnJ5jurQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sPOnJ5jurQ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sPOnJ5jurQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sPOnJ5jurQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sPOnJ5jurQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sPOnJ5jurQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sPOnJ5jurQ .modal-sm {
    max-width: 300px;
  }
  .cid-sPOnJ5jurQ .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sPOnJ5jurQ .modal-lg,
  .cid-sPOnJ5jurQ .modal-xl {
    max-width: 800px;
  }
  .cid-sPOnJ5jurQ .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sPOnJ5jurQ .modal-xl {
    max-width: 1140px;
  }
  .cid-sPOnJ5jurQ .container {
    max-width: 1140px;
  }
}
.cid-sPOnJ5jurQ .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sPOnJ5jurQ .container {
    max-width: 720px;
  }
}
.cid-sPOnJ5jurQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sPOnJ5jurQ .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-sPOnJ5jurQ .form-group {
  margin-bottom: 1rem;
}
.cid-sPOnJ5jurQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sPOnJ5jurQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sPOnJ5jurQ .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-sPOnKGcNxB.popup-builder {
  background-color: #ffffff;
}
.cid-sPOnKGcNxB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sPOnKGcNxB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sPOnKGcNxB .modal-content,
.cid-sPOnKGcNxB .modal-dialog {
  height: auto;
}
.cid-sPOnKGcNxB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sPOnKGcNxB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sPOnKGcNxB .form-wrapper .mbr-form .form-group,
  .cid-sPOnKGcNxB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sPOnKGcNxB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sPOnKGcNxB .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-sPOnKGcNxB .mbr-text {
  text-align: left;
  color: #cccccc;
}
.cid-sPOnKGcNxB .pt-0 {
  padding-top: 0 !important;
}
.cid-sPOnKGcNxB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sPOnKGcNxB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sPOnKGcNxB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sPOnKGcNxB .modal-open {
  overflow: hidden;
}
.cid-sPOnKGcNxB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sPOnKGcNxB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sPOnKGcNxB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sPOnKGcNxB .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-sPOnKGcNxB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sPOnKGcNxB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sPOnKGcNxB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sPOnKGcNxB .modal-content {
  background-image: url("https://branderitsolutions.co.za/clients/client-images/obp-investments-website/background.jpeg") !important;
  background-repeat: no-repeat !important;
  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) !important;
}
.cid-sPOnKGcNxB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sPOnKGcNxB .modal-backdrop.fade {
  opacity: 0;
}
.cid-sPOnKGcNxB .modal-backdrop.show {
  opacity: .5;
}
.cid-sPOnKGcNxB .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sPOnKGcNxB .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sPOnKGcNxB .modal-header .close:hover {
  opacity: 1;
}
.cid-sPOnKGcNxB .modal-header .close:focus {
  outline: none;
}
.cid-sPOnKGcNxB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #efefef;
}
.cid-sPOnKGcNxB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sPOnKGcNxB .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sPOnKGcNxB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sPOnKGcNxB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sPOnKGcNxB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sPOnKGcNxB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sPOnKGcNxB .modal-sm {
    max-width: 300px;
  }
  .cid-sPOnKGcNxB .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sPOnKGcNxB .modal-lg,
  .cid-sPOnKGcNxB .modal-xl {
    max-width: 800px;
  }
  .cid-sPOnKGcNxB .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sPOnKGcNxB .modal-xl {
    max-width: 1140px;
  }
  .cid-sPOnKGcNxB .container {
    max-width: 1140px;
  }
}
.cid-sPOnKGcNxB .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sPOnKGcNxB .container {
    max-width: 720px;
  }
}
.cid-sPOnKGcNxB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sPOnKGcNxB .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-sPOnKGcNxB .form-group {
  margin-bottom: 1rem;
}
.cid-sPOnKGcNxB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sPOnKGcNxB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sPOnKGcNxB .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-sPOnLgNQyT.popup-builder {
  background-color: #ffffff;
}
.cid-sPOnLgNQyT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sPOnLgNQyT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sPOnLgNQyT .modal-content,
.cid-sPOnLgNQyT .modal-dialog {
  height: auto;
}
.cid-sPOnLgNQyT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sPOnLgNQyT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sPOnLgNQyT .form-wrapper .mbr-form .form-group,
  .cid-sPOnLgNQyT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sPOnLgNQyT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sPOnLgNQyT .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-sPOnLgNQyT .mbr-text {
  text-align: left;
  color: #cccccc;
}
.cid-sPOnLgNQyT .pt-0 {
  padding-top: 0 !important;
}
.cid-sPOnLgNQyT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sPOnLgNQyT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sPOnLgNQyT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sPOnLgNQyT .modal-open {
  overflow: hidden;
}
.cid-sPOnLgNQyT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sPOnLgNQyT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sPOnLgNQyT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sPOnLgNQyT .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-sPOnLgNQyT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sPOnLgNQyT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sPOnLgNQyT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sPOnLgNQyT .modal-content {
  background-image: url("https://branderitsolutions.co.za/clients/client-images/obp-investments-website/background.jpeg") !important;
  background-repeat: no-repeat !important;
  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) !important;
}
.cid-sPOnLgNQyT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sPOnLgNQyT .modal-backdrop.fade {
  opacity: 0;
}
.cid-sPOnLgNQyT .modal-backdrop.show {
  opacity: .5;
}
.cid-sPOnLgNQyT .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sPOnLgNQyT .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sPOnLgNQyT .modal-header .close:hover {
  opacity: 1;
}
.cid-sPOnLgNQyT .modal-header .close:focus {
  outline: none;
}
.cid-sPOnLgNQyT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #efefef;
}
.cid-sPOnLgNQyT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sPOnLgNQyT .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sPOnLgNQyT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sPOnLgNQyT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sPOnLgNQyT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sPOnLgNQyT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sPOnLgNQyT .modal-sm {
    max-width: 300px;
  }
  .cid-sPOnLgNQyT .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sPOnLgNQyT .modal-lg,
  .cid-sPOnLgNQyT .modal-xl {
    max-width: 800px;
  }
  .cid-sPOnLgNQyT .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sPOnLgNQyT .modal-xl {
    max-width: 1140px;
  }
  .cid-sPOnLgNQyT .container {
    max-width: 1140px;
  }
}
.cid-sPOnLgNQyT .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sPOnLgNQyT .container {
    max-width: 720px;
  }
}
.cid-sPOnLgNQyT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sPOnLgNQyT .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-sPOnLgNQyT .form-group {
  margin-bottom: 1rem;
}
.cid-sPOnLgNQyT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sPOnLgNQyT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sPOnLgNQyT .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-sSdE8L5TMe.popup-builder {
  background-color: #ffffff;
}
.cid-sSdE8L5TMe.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sSdE8L5TMe.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sSdE8L5TMe .modal-content,
.cid-sSdE8L5TMe .modal-dialog {
  height: auto;
}
.cid-sSdE8L5TMe .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sSdE8L5TMe .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sSdE8L5TMe .form-wrapper .mbr-form .form-group,
  .cid-sSdE8L5TMe .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sSdE8L5TMe .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sSdE8L5TMe .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-sSdE8L5TMe .mbr-text {
  text-align: left;
  color: #cccccc;
}
.cid-sSdE8L5TMe .pt-0 {
  padding-top: 0 !important;
}
.cid-sSdE8L5TMe .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sSdE8L5TMe .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sSdE8L5TMe .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sSdE8L5TMe .modal-open {
  overflow: hidden;
}
.cid-sSdE8L5TMe .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sSdE8L5TMe .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sSdE8L5TMe .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sSdE8L5TMe .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-sSdE8L5TMe .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sSdE8L5TMe .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sSdE8L5TMe .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sSdE8L5TMe .modal-content {
  background-image: url("https://branderitsolutions.co.za/clients/client-images/obp-investments-website/background.jpeg") !important;
  background-repeat: no-repeat !important;
  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) !important;
}
.cid-sSdE8L5TMe .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sSdE8L5TMe .modal-backdrop.fade {
  opacity: 0;
}
.cid-sSdE8L5TMe .modal-backdrop.show {
  opacity: .5;
}
.cid-sSdE8L5TMe .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sSdE8L5TMe .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sSdE8L5TMe .modal-header .close:hover {
  opacity: 1;
}
.cid-sSdE8L5TMe .modal-header .close:focus {
  outline: none;
}
.cid-sSdE8L5TMe .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #efefef;
}
.cid-sSdE8L5TMe .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sSdE8L5TMe .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sSdE8L5TMe .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sSdE8L5TMe .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sSdE8L5TMe .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sSdE8L5TMe .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sSdE8L5TMe .modal-sm {
    max-width: 300px;
  }
  .cid-sSdE8L5TMe .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sSdE8L5TMe .modal-lg,
  .cid-sSdE8L5TMe .modal-xl {
    max-width: 800px;
  }
  .cid-sSdE8L5TMe .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sSdE8L5TMe .modal-xl {
    max-width: 1140px;
  }
  .cid-sSdE8L5TMe .container {
    max-width: 1140px;
  }
}
.cid-sSdE8L5TMe .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sSdE8L5TMe .container {
    max-width: 720px;
  }
}
.cid-sSdE8L5TMe .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sSdE8L5TMe .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-sSdE8L5TMe .form-group {
  margin-bottom: 1rem;
}
.cid-sSdE8L5TMe .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sSdE8L5TMe .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sSdE8L5TMe .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%;
}
