body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Barlow', sans-serif;
  font-size: 4.8rem;
  letter-spacing: -1px;
}
.display-1 > .mbr-iconfont {
  font-size: 7.68rem;
}
.display-2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2.1rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.36rem;
}
.display-4 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.6rem;
  letter-spacing: -1px;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- 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.84rem;
    font-size: calc( 2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.68rem;
    font-size: calc( 1.385rem + (2.1 - 1.385) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.385rem + (2.1 - 1.385) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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))));
  }
}
/* 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: #ffffff !important;
}
.bg-success {
  background-color: #cc2952 !important;
}
.bg-info {
  background-color: #1a9636 !important;
}
.bg-warning {
  background-color: #5c88ec !important;
}
.bg-danger {
  background-color: #3a65c6 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #595959 !important;
  border-color: #595959 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #595959 !important;
  border-color: #595959 !important;
}
.btn-info,
.btn-info:active {
  background-color: #1a9636 !important;
  border-color: #1a9636 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #25d74d !important;
  border-color: #25d74d !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #25d74d !important;
  border-color: #25d74d !important;
}
.btn-success,
.btn-success:active {
  background-color: #cc2952 !important;
  border-color: #cc2952 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #df6282 !important;
  border-color: #df6282 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #df6282 !important;
  border-color: #df6282 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #5c88ec !important;
  border-color: #5c88ec !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #a1baf4 !important;
  border-color: #a1baf4 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a1baf4 !important;
  border-color: #a1baf4 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #3a65c6 !important;
  border-color: #3a65c6 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #7593d7 !important;
  border-color: #7593d7 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #7593d7 !important;
  border-color: #7593d7 !important;
}
.btn-white {
  color: #222222 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #0b3f17;
  color: #0b3f17;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #1a9636;
  border-color: #1a9636;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1a9636 !important;
  border-color: #1a9636 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #771830;
  color: #771830;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #cc2952;
  border-color: #cc2952;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #cc2952 !important;
  border-color: #cc2952 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #184eca;
  color: #184eca;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #5c88ec;
  border-color: #5c88ec;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #5c88ec !important;
  border-color: #5c88ec !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #233d77;
  color: #233d77;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #3a65c6;
  border-color: #3a65c6;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #3a65c6 !important;
  border-color: #3a65c6 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #222222;
  border-color: #222222;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !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;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #333333 !important;
}
.text-success {
  color: #cc2952 !important;
}
.text-info {
  color: #1a9636 !important;
}
.text-warning {
  color: #5c88ec !important;
}
.text-danger {
  color: #3a65c6 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ffffff !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #666666 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #e47793 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #39dd5e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b7cbf7 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #89a3dd !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #000000 !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #1a9636;
}
.alert-warning {
  background-color: #5c88ec;
}
.alert-danger {
  background-color: #3a65c6;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.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: #f5ccd6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #4fe070;
}
.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: #9db2e3;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #333333 !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='%23ffffff' %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-rwG46vRkNS .navbar {
  background: #4501a4;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rwG46vRkNS .navbar-dropdown.bg-color.transparent.opened {
  background: #4501a4;
}
.cid-rwG46vRkNS a {
  font-style: normal;
}
.cid-rwG46vRkNS .show {
  overflow: visible;
}
.cid-rwG46vRkNS .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-rwG46vRkNS .dropdown-item:active {
  background-color: transparent;
}
.cid-rwG46vRkNS .nav-link {
  font-weight: 600!important;
}
.cid-rwG46vRkNS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rwG46vRkNS .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-rwG46vRkNS .nav-item:focus,
.cid-rwG46vRkNS .nav-link:focus {
  outline: none;
}
.cid-rwG46vRkNS .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rwG46vRkNS .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rwG46vRkNS .menu-logo {
  margin-right: auto;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rwG46vRkNS .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-rwG46vRkNS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600!important;
  padding-right: 2rem;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu {
  background: #efeeee;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #465052 !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rwG46vRkNS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rwG46vRkNS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rwG46vRkNS .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rwG46vRkNS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rwG46vRkNS button.navbar-toggler:focus {
  outline: none;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwG46vRkNS .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwG46vRkNS .collapsed .btn {
  display: -webkit-flex;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rwG46vRkNS .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-rwG46vRkNS .collapsed button.navbar-toggler {
  display: block;
}
.cid-rwG46vRkNS .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rwG46vRkNS .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwG46vRkNS .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-rwG46vRkNS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rwG46vRkNS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rwG46vRkNS .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;
}
@media (max-width: 991px) {
  .cid-rwG46vRkNS.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwG46vRkNS img {
    height: 3.8rem !important;
  }
  .cid-rwG46vRkNS .btn {
    display: -webkit-flex;
  }
  .cid-rwG46vRkNS button.navbar-toggler {
    display: block;
  }
  .cid-rwG46vRkNS .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rwG46vRkNS .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwG46vRkNS .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing,
  .cid-rwG46vRkNS .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-nav,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-buttons,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rwG46vRkNS .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-rwG46vRkNS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rwG46vRkNS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rwG46vRkNS .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;
  }
}
@media (max-width: 767px) {
  .cid-rwG46vRkNS .nav-link {
    justify-content: start!important;
  }
  .cid-rwG46vRkNS .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-rwG46vRkNS .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-rwG46vRkNS .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-rwG46vRkNS .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rwG46vRkNS .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rwG46vRkNS .nav-link:hover,
.cid-rwG46vRkNS .dropdown-item:hover {
  color: #8cadf8 !important;
}
@media (min-width: 1500px) {
  .cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-rwG46vRkNS .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-rzZgUWHioE {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/fundo-aramado-2000x1426.jpg");
}
.cid-rzZgUWHioE .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #5c88ec;
}
.cid-rzZgUWHioE img {
  width: 100%;
}
.cid-rzZgUWHioE p {
  margin-top: 6rem;
}
.cid-rzZgUWHioE .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-rzZgUWHioE .content-wrapper {
  padding-top: 6rem;
}
.cid-rzZgUWHioE h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-rzZgUWHioE .content-wrapper {
    padding-top: 0rem;
  }
  .cid-rzZgUWHioE p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rzZgUWHioE .back {
    width: 100%;
    height: 75%;
  }
  .cid-rzZgUWHioE .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-rzZgUWHioE p {
    margin-top: 4rem;
  }
}
.cid-rzZgUWHioE .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-rzZgUWHioE .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-rzZgUWHioE .content-wrapper {
    padding-right: 3rem;
  }
  .cid-rzZgUWHioE h4 {
    right: 2rem;
  }
}
.cid-rzZgUWHioE H1 {
  color: #ffffff;
  text-align: left;
}
.cid-rzZgUWHioE H3 {
  color: #ffffff;
  text-align: left;
}
.cid-rzZgUWHioE .mbr-text,
.cid-rzZgUWHioE .mbr-section-btn {
  color: #ffffff;
}
.cid-rzZgUWHioE H4 {
  color: #efeeee;
}
.cid-rzZP766uV5 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-rzZP766uV5 .mbr-section-subtitle {
  color: #767676;
}
.cid-rzZP766uV5 H2 {
  color: #ffffff;
}
.cid-rzZr3lzcON {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #4501a4;
}
.cid-rzZr3lzcON .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rzZr3lzcON .row-element,
.cid-rzZr3lzcON .image-element {
  padding: 0;
}
.cid-rzZr3lzcON .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rzZr3lzcON .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rzZr3lzcON .text-content {
  padding: 3rem;
}
.cid-rzZr3lzcON .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-rzZr3lzcON .text-content {
    padding: 2rem 1rem;
  }
  .cid-rzZr3lzcON .mbr-title,
  .cid-rzZr3lzcON .mbr-text,
  .cid-rzZr3lzcON .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rzZr3lzcON .mbr-text,
.cid-rzZr3lzcON .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-rzZr3lzcON .mbr-title {
  color: #ffffff;
  text-align: center;
}
.cid-rzZYmRtDO6 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rzZYmRtDO6 .row {
  position: relative;
}
.cid-rzZYmRtDO6 .container {
  max-width: 1500px;
}
@media (min-width: 767px) {
  .cid-rzZYmRtDO6 .row {
    margin: 0 2rem;
  }
}
.cid-rzZYmRtDO6 h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 2rem;
  top: 1rem;
}
.cid-rzZYmRtDO6 .content-wrapper {
  max-width: 600px;
}
.cid-rzZYmRtDO6 H1 {
  color: #4501a4;
}
.cid-rzZYmRtDO6 .mbr-text,
.cid-rzZYmRtDO6 .mbr-section-btn {
  color: #4501a4;
}
.cid-rzZYmRtDO6 H3 {
  color: #333333;
}
@media (max-width: 767px) {
  .cid-rzZYmRtDO6 h4 {
    left: 3rem;
  }
}
.cid-rzZYmRtDO6 H4 {
  color: #ffffff;
  text-align: left;
}
.cid-rzZPj54nYY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-rzZPj54nYY .mbr-section-subtitle {
  color: #767676;
}
.cid-rzZPj54nYY H2 {
  color: #ffffff;
}
.cid-rzZPlCTEch {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3a65c6;
}
.cid-rzZPlCTEch .mbr-section-subtitle {
  color: #767676;
}
.cid-rzZPlCTEch H2 {
  color: #ffffff;
}
.cid-rzZGUtjhRE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #21038c;
}
.cid-rzZGUtjhRE h2 {
  text-align: left;
}
.cid-rzZGUtjhRE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rzZGUtjhRE p {
  color: #767676;
  text-align: left;
}
.cid-rzZGUtjhRE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rzZGUtjhRE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rzZGUtjhRE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rzZGUtjhRE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rzZGUtjhRE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rzZGUtjhRE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rzZGUtjhRE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rzZGUtjhRE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rzZGUtjhRE .card-img span {
    font-size: 40px !important;
  }
}
.cid-rzZGUtjhRE .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-rzZGUtjhRE H2 {
  color: #ffffff;
  text-align: center;
}
.cid-rzZGUtjhRE P {
  color: #ffffff;
}
.cid-rzZGUtjhRE H4 {
  color: #ffffff;
  text-align: center;
}
.cid-rA02FXVgnQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-rA02FXVgnQ .mbr-section-subtitle {
  color: #767676;
}
.cid-rA02FXVgnQ H2 {
  color: #ffffff;
}
.cid-rzZPk6Wxqt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #4501a4;
}
.cid-rzZPk6Wxqt .mbr-section-subtitle {
  color: #767676;
}
.cid-rzZPk6Wxqt H2 {
  color: #ffffff;
}
.cid-rzZI6RjHhZ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #3a65c6;
}
.cid-rzZI6RjHhZ h2 {
  text-align: left;
}
.cid-rzZI6RjHhZ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rzZI6RjHhZ p {
  color: #767676;
  text-align: left;
}
.cid-rzZI6RjHhZ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rzZI6RjHhZ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rzZI6RjHhZ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rzZI6RjHhZ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rzZI6RjHhZ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rzZI6RjHhZ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rzZI6RjHhZ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rzZI6RjHhZ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rzZI6RjHhZ .card-img span {
    font-size: 40px !important;
  }
}
.cid-rzZI6RjHhZ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-rzZI6RjHhZ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-rzZI6RjHhZ P {
  color: #ffffff;
}
.cid-rzZI6RjHhZ H4 {
  color: #ffffff;
  text-align: center;
}
.cid-rA02GTABs6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-rA02GTABs6 .mbr-section-subtitle {
  color: #767676;
}
.cid-rA02GTABs6 H2 {
  color: #ffffff;
}
.cid-rzZPkA6qqJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #21038c;
}
.cid-rzZPkA6qqJ .mbr-section-subtitle {
  color: #767676;
}
.cid-rzZPkA6qqJ H2 {
  color: #ffffff;
}
.cid-rzZOQJRqeK {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #4501a4;
}
.cid-rzZOQJRqeK h2 {
  text-align: left;
}
.cid-rzZOQJRqeK h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rzZOQJRqeK p {
  color: #767676;
  text-align: left;
}
.cid-rzZOQJRqeK .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rzZOQJRqeK .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rzZOQJRqeK .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rzZOQJRqeK .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rzZOQJRqeK .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rzZOQJRqeK .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rzZOQJRqeK .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rzZOQJRqeK .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rzZOQJRqeK .card-img span {
    font-size: 40px !important;
  }
}
.cid-rzZOQJRqeK .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-rzZOQJRqeK H2 {
  color: #ffffff;
  text-align: center;
}
.cid-rzZOQJRqeK P {
  color: #ffffff;
}
.cid-rzZOQJRqeK H4 {
  color: #ffffff;
  text-align: center;
}
.cid-sIE9czQtNZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-sIE9czQtNZ .mbr-section-subtitle {
  color: #767676;
}
.cid-sIE9czQtNZ H2 {
  color: #ffffff;
}
.cid-sIEdCI2o4L {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3a65c6;
}
.cid-sIEdCI2o4L .mbr-section-subtitle {
  color: #767676;
}
.cid-sIEdCI2o4L H2 {
  color: #ffffff;
}
.cid-sIPALlPNKn {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #21038c;
}
.cid-sIPALlPNKn .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-sIPALlPNKn .container {
  max-width: 1500px;
}
.cid-sIPALlPNKn .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sIPALlPNKn .container {
    padding: 0 4rem;
  }
}
.cid-sIPALlPNKn .mbr-text,
.cid-sIPALlPNKn .mbr-section-btn {
  color: #efeeee;
}
.cid-sIPALlPNKn .btn {
  width: -webkit-fill-available;
  margin: 0.4rem!important;
}
.cid-sIPALlPNKn .pt-5 {
  padding-top: 4rem!important;
}
@media (max-width: 922px) {
  .cid-sIPALlPNKn .align-left {
    text-align: center;
  }
  .cid-sIPALlPNKn .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-sSgLfAalXx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sSgLfAalXx .mbr-section-subtitle {
  color: #767676;
}
.cid-sSgLfAalXx H2 {
  color: #ffffff;
}
.cid-sIPAOJ63hs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #7f1933;
}
.cid-sIPAOJ63hs .mbr-section-subtitle {
  color: #767676;
}
.cid-sIPAOJ63hs H2 {
  color: #ffffff;
}
.cid-sSgLbXvdwV {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #cc2952;
}
.cid-sSgLbXvdwV .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-sSgLbXvdwV .container {
  max-width: 1500px;
}
.cid-sSgLbXvdwV .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sSgLbXvdwV .container {
    padding: 0 4rem;
  }
}
.cid-sSgLbXvdwV .mbr-text,
.cid-sSgLbXvdwV .mbr-section-btn {
  color: #efeeee;
}
.cid-sSgLbXvdwV .btn {
  width: -webkit-fill-available;
  margin: 0.4rem!important;
}
.cid-sSgLbXvdwV .pt-5 {
  padding-top: 4rem!important;
}
@media (max-width: 922px) {
  .cid-sSgLbXvdwV .align-left {
    text-align: center;
  }
  .cid-sSgLbXvdwV .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-sSgLXWjM74 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sSgLXWjM74 .mbr-section-subtitle {
  color: #767676;
}
.cid-sSgLXWjM74 H2 {
  color: #ffffff;
}
.cid-rA03vZOvwS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3a65c6;
}
.cid-rA03vZOvwS .content-block {
  max-width: 350px;
  padding: 4rem 3rem;
  z-index: 5;
  position: relative;
}
.cid-rA03vZOvwS .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/dsc05385-2000x1123.jpg");
  background-position: center;
  background-size: cover;
  z-index: 3;
}
.cid-rA03vZOvwS .block2 {
  background-image: url("../../../assets/images/dsc05385-2000x1123.jpg");
}
.cid-rA03vZOvwS .block2:hover .block2-over {
  opacity: 0;
}
.cid-rA03vZOvwS .block1 {
  background-image: url("../../../assets/images/dsc05385-2000x1123.jpg");
}
.cid-rA03vZOvwS .block1:hover .block1-over {
  opacity: 0;
}
.cid-rA03vZOvwS .block1-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #5c88ec;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-rA03vZOvwS .block2-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #21038c;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-rA03vZOvwS .overlay {
  position: absolute;
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0%;
  background: #4501a4;
  z-index: 2;
  opacity: 1;
}
.cid-rA03vZOvwS .overlay-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 50%;
  transition-delay: 0.3s;
  top: 0;
  z-index: 4;
}
.cid-rA03vZOvwS .col {
  padding: 0;
  display: flex;
  position: relative;
  min-height: 400px;
  justify-content: flex-end;
}
.cid-rA03vZOvwS .col:hover .overlay-wrapper {
  width: 100%;
  right: 0;
  transition-delay: 0s;
}
.cid-rA03vZOvwS .col:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-rA03vZOvwS .col:hover .img-content {
  opacity: 1;
  width: 100%;
  transition-delay: 0.3s;
}
.cid-rA03vZOvwS .col:hover .box-title2,
.cid-rA03vZOvwS .col:hover .box-text2 {
  color: #ffffff;
  transition-delay: 0.3s;
}
.cid-rA03vZOvwS .box-title2,
.cid-rA03vZOvwS .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-rA03vZOvwS .box-content {
  width: 50%;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #4501a4;
}
.cid-rA03vZOvwS .content1 {
  z-index: 5;
  max-width: 450px;
  position: relative;
  transition: all 0.3s;
  transition-delay: 0.3s;
  padding: 4rem 3rem;
}
.cid-rA03vZOvwS .content2 {
  z-index: 2;
  max-width: 450px;
  margin-bottom: -1rem;
  position: relative;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0s;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-rA03vZOvwS .img-content {
    opacity: 1;
  }
  .cid-rA03vZOvwS .overlay-wrapper {
    width: 100%;
    right: 0;
  }
  .cid-rA03vZOvwS .box-content {
    width: 100%;
  }
  .cid-rA03vZOvwS .box-title2,
  .cid-rA03vZOvwS .box-text2 {
    color: #ffffff !important;
  }
  .cid-rA03vZOvwS .content-block,
  .cid-rA03vZOvwS .content1 {
    padding: 3rem 1rem;
  }
}
.cid-rA03vZOvwS .box-text1 {
  color: #333333;
}
.cid-rA03vZOvwS .box-title2 {
  color: #cccccc;
}
.cid-rA03vZOvwS .block1-text,
.cid-rA03vZOvwS .mbr-section-btn {
  color: #ffffff;
}
.cid-rA03vZOvwS .block2-text,
.cid-rA03vZOvwS .mbr-section-btn {
  color: #ffffff;
}
.cid-rA03vZOvwS .block2-title {
  color: #333333;
}
.cid-rA03vZOvwS .block2-subtitle {
  color: #ffffff;
}
.cid-rA03vZOvwS .block1-subtitle {
  color: #ffffff;
}
.cid-tJlJGrcrmE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #cc2952;
}
.cid-tJlJGrcrmE h2 {
  text-align: left;
}
.cid-tJlJGrcrmE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tJlJGrcrmE p {
  color: #767676;
  text-align: left;
}
.cid-tJlJGrcrmE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tJlJGrcrmE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tJlJGrcrmE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tJlJGrcrmE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tJlJGrcrmE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tJlJGrcrmE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tJlJGrcrmE .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-tJlJGrcrmE .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-tJlJGrcrmE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-tJlJGrcrmE .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-tJlJGrcrmE .card-img span {
    font-size: 40px !important;
  }
}
.cid-tJlJGrcrmE .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tJlJGrcrmE H2 {
  color: #ffffff;
  text-align: center;
}
.cid-tJlJGrcrmE P {
  color: #ffffff;
  text-align: center;
}
.cid-tJlJGrcrmE H4 {
  color: #ffffff;
  text-align: left;
}
.cid-tJlJGrcrmE DIV {
  text-align: left;
}
.cid-rpSfRqtWyh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-rpSfRqtWyh .media-container-row .mbr-text {
  color: #4501a4;
}
.cid-tJlGdWiXkQ.popup-builder {
  background-color: #ffffff;
}
.cid-tJlGdWiXkQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tJlGdWiXkQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tJlGdWiXkQ .modal-content,
.cid-tJlGdWiXkQ .modal-dialog {
  height: auto;
}
.cid-tJlGdWiXkQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tJlGdWiXkQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tJlGdWiXkQ .form-wrapper .mbr-form .form-group,
  .cid-tJlGdWiXkQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tJlGdWiXkQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tJlGdWiXkQ .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-tJlGdWiXkQ .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tJlGdWiXkQ .pt-0 {
  padding-top: 0 !important;
}
.cid-tJlGdWiXkQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tJlGdWiXkQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tJlGdWiXkQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tJlGdWiXkQ .modal-open {
  overflow: hidden;
}
.cid-tJlGdWiXkQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tJlGdWiXkQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tJlGdWiXkQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tJlGdWiXkQ .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-tJlGdWiXkQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tJlGdWiXkQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tJlGdWiXkQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tJlGdWiXkQ .modal-content {
  background: #cc2952;
  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-tJlGdWiXkQ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tJlGdWiXkQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tJlGdWiXkQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-tJlGdWiXkQ .modal-backdrop.show {
  opacity: .5;
}
.cid-tJlGdWiXkQ .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-tJlGdWiXkQ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tJlGdWiXkQ .modal-header {
    padding: 1rem;
  }
}
.cid-tJlGdWiXkQ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tJlGdWiXkQ .modal-header .close svg {
  fill: #7f1933;
}
.cid-tJlGdWiXkQ .modal-header .close:hover {
  opacity: 1;
}
.cid-tJlGdWiXkQ .modal-header .close:focus {
  outline: none;
}
.cid-tJlGdWiXkQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tJlGdWiXkQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tJlGdWiXkQ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJlGdWiXkQ .modal-body {
    padding: 1rem;
  }
}
.cid-tJlGdWiXkQ .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-tJlGdWiXkQ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJlGdWiXkQ .modal-footer {
    padding: 1rem;
  }
}
.cid-tJlGdWiXkQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tJlGdWiXkQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tJlGdWiXkQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tJlGdWiXkQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tJlGdWiXkQ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tJlGdWiXkQ .modal-lg,
  .cid-tJlGdWiXkQ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tJlGdWiXkQ .modal-xl {
    max-width: 1140px;
  }
}
.cid-tJlGdWiXkQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tJlGdWiXkQ .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-tJlGdWiXkQ .form-group {
  margin-bottom: 1rem;
}
.cid-tJlGdWiXkQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tJlGdWiXkQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tJlGdWiXkQ .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-tJlGdWiXkQ .mbr-section-btn {
  margin: 0;
}
.cid-tJlGdWiXkQ .mbr-section-btn .btn {
  margin: 0;
}
.cid-rIQRBc7gf4 .navbar {
  background: #4501a4;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rIQRBc7gf4 .navbar-dropdown.bg-color.transparent.opened {
  background: #4501a4;
}
.cid-rIQRBc7gf4 a {
  font-style: normal;
}
.cid-rIQRBc7gf4 .show {
  overflow: visible;
}
.cid-rIQRBc7gf4 .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-rIQRBc7gf4 .dropdown-item:active {
  background-color: transparent;
}
.cid-rIQRBc7gf4 .nav-link {
  font-weight: 600!important;
}
.cid-rIQRBc7gf4 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rIQRBc7gf4 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-rIQRBc7gf4 .nav-item:focus,
.cid-rIQRBc7gf4 .nav-link:focus {
  outline: none;
}
.cid-rIQRBc7gf4 .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rIQRBc7gf4 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rIQRBc7gf4 .menu-logo {
  margin-right: auto;
}
.cid-rIQRBc7gf4 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rIQRBc7gf4 .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-rIQRBc7gf4 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600!important;
  padding-right: 2rem;
}
.cid-rIQRBc7gf4 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rIQRBc7gf4 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rIQRBc7gf4 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rIQRBc7gf4 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rIQRBc7gf4 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-rIQRBc7gf4 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rIQRBc7gf4 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rIQRBc7gf4 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rIQRBc7gf4 .dropdown .dropdown-menu {
  background: #efeeee;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rIQRBc7gf4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #465052 !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-rIQRBc7gf4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rIQRBc7gf4 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rIQRBc7gf4 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rIQRBc7gf4 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rIQRBc7gf4 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rIQRBc7gf4 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rIQRBc7gf4 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rIQRBc7gf4 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rIQRBc7gf4 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rIQRBc7gf4 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rIQRBc7gf4 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rIQRBc7gf4 button.navbar-toggler:focus {
  outline: none;
}
.cid-rIQRBc7gf4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rIQRBc7gf4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rIQRBc7gf4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rIQRBc7gf4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rIQRBc7gf4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rIQRBc7gf4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rIQRBc7gf4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rIQRBc7gf4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rIQRBc7gf4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rIQRBc7gf4 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rIQRBc7gf4 .collapsed .btn {
  display: -webkit-flex;
}
.cid-rIQRBc7gf4 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rIQRBc7gf4 .collapsed .navbar-collapse.collapsing,
.cid-rIQRBc7gf4 .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-rIQRBc7gf4 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rIQRBc7gf4 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rIQRBc7gf4 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rIQRBc7gf4 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rIQRBc7gf4 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rIQRBc7gf4 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rIQRBc7gf4 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rIQRBc7gf4 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rIQRBc7gf4 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-rIQRBc7gf4 .collapsed button.navbar-toggler {
  display: block;
}
.cid-rIQRBc7gf4 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rIQRBc7gf4 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rIQRBc7gf4 .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-rIQRBc7gf4 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rIQRBc7gf4 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rIQRBc7gf4 .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;
}
@media (max-width: 991px) {
  .cid-rIQRBc7gf4.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rIQRBc7gf4 img {
    height: 3.8rem !important;
  }
  .cid-rIQRBc7gf4 .btn {
    display: -webkit-flex;
  }
  .cid-rIQRBc7gf4 button.navbar-toggler {
    display: block;
  }
  .cid-rIQRBc7gf4 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rIQRBc7gf4 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rIQRBc7gf4 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rIQRBc7gf4 .navbar-collapse.collapsing,
  .cid-rIQRBc7gf4 .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-rIQRBc7gf4 .navbar-collapse.collapsing .navbar-nav,
  .cid-rIQRBc7gf4 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rIQRBc7gf4 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rIQRBc7gf4 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rIQRBc7gf4 .navbar-collapse.collapsing .navbar-buttons,
  .cid-rIQRBc7gf4 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rIQRBc7gf4 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rIQRBc7gf4 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rIQRBc7gf4 .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-rIQRBc7gf4 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rIQRBc7gf4 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rIQRBc7gf4 .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;
  }
}
@media (max-width: 767px) {
  .cid-rIQRBc7gf4 .nav-link {
    justify-content: start!important;
  }
  .cid-rIQRBc7gf4 .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-rIQRBc7gf4 .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-rIQRBc7gf4 .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-rIQRBc7gf4 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rIQRBc7gf4 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rIQRBc7gf4 .nav-link:hover,
.cid-rIQRBc7gf4 .dropdown-item:hover {
  color: #8cadf8 !important;
}
@media (min-width: 1500px) {
  .cid-rIQRBc7gf4 .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-rIQRBc7gf4 .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-rIQRB2t1Rg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #3a65c6;
}
.cid-rIQRB2t1Rg .mbr-section-subtitle {
  color: #767676;
}
.cid-rIQRB2t1Rg H2 {
  color: #ffffff;
}
.cid-rIQRB2W3C5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #5c88ec;
}
.cid-rIQRB2W3C5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rIQRB2W3C5 H2 {
  color: #ffffff;
}
.cid-rIQRB3mXgT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rIQRB3mXgT .row-element,
.cid-rIQRB3mXgT .image-element {
  padding: 0;
}
.cid-rIQRB3mXgT .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rIQRB3mXgT .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rIQRB3mXgT .text-content {
  padding: 3rem;
}
.cid-rIQRB3mXgT .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-rIQRB3mXgT .text-content {
    padding: 2rem 1rem;
  }
  .cid-rIQRB3mXgT .mbr-title,
  .cid-rIQRB3mXgT .mbr-text,
  .cid-rIQRB3mXgT .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rIQRB3mXgT .mbr-text,
.cid-rIQRB3mXgT .mbr-section-btn {
  text-align: left;
  color: #282124;
}
.cid-rIQRB3mXgT .mbr-title {
  color: #ffffff;
  text-align: left;
}
.cid-rIQRB5cxee {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #5c88ec;
}
.cid-rIQRB5cxee .mbr-section-subtitle {
  color: #767676;
}
.cid-rIQRB5cxee H2 {
  color: #ffffff;
}
.cid-rIQRB4G2uD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #3a65c6;
}
.cid-rIQRB4G2uD .mbr-section-subtitle {
  color: #767676;
}
.cid-rIQRB4G2uD H2 {
  color: #ffffff;
}
.cid-tdtqxKQoBl {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-tdtqxKQoBl .card-wrapper {
  position: relative;
  margin: 0.5rem;
}
.cid-tdtqxKQoBl .card-wrapper:hover img {
  transform: scale(1.1);
}
@media (min-width: 767px) {
  .cid-tdtqxKQoBl .row {
    padding: 0 4rem;
  }
}
@media (max-width: 1400px) {
  .cid-tdtqxKQoBl .card-wrapper {
    margin: 0rem;
  }
}
.cid-tdtqxKQoBl .card {
  height: fit-content;
}
.cid-tdtqxKQoBl .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-tdtqxKQoBl .text-wrap {
  max-width: 400px;
}
.cid-tdtqxKQoBl .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  transition: 0.3s;
  background: #3a65c6;
}
.cid-tdtqxKQoBl .icon:hover {
  padding-right: 1rem;
  padding-left: 2rem;
}
.cid-tdtqxKQoBl .card-box {
  background-color: #5c88ec;
  padding: 4rem 4rem 6rem 4rem;
  width: 100%;
}
.cid-tdtqxKQoBl img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
}
.cid-tdtqxKQoBl .img-wrap {
  max-height: 250px;
  overflow: hidden;
}
.cid-tdtqxKQoBl .container {
  max-width: 1500px;
}
.cid-tdtqxKQoBl .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tdtqxKQoBl .mbr-iconfont {
  font-size: 1.3rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
}
.cid-tdtqxKQoBl P {
  color: #c1c1c1;
}
@media (max-width: 1200px) {
  .cid-tdtqxKQoBl .img-wrap {
    max-height: 230px;
  }
  .cid-tdtqxKQoBl .text-wrap {
    padding: 0rem;
  }
}
@media (max-width: 992px) {
  .cid-tdtqxKQoBl .card-box {
    margin: 0rem;
    padding: 2rem 2rem 6rem 2rem;
  }
  .cid-tdtqxKQoBl .text-wrap {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-tdtqxKQoBl .card-box {
    padding: 2rem 1rem 5rem 1rem;
  }
  .cid-tdtqxKQoBl .number {
    margin: auto;
  }
}
.cid-tdtqxKQoBl .mbr-text {
  color: #5c88ec;
}
.cid-tdtqxKQoBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tdtqxKQoBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tdtqxKQoBl H1 {
  color: #3a65c6;
}
.cid-tdtqxKQoBl .card-text {
  color: #ffffff;
}
.cid-tdtqxKQoBl .card-title {
  text-align: center;
}
.cid-tdtqxKQoBl H2 {
  color: #3a65c6;
}
.cid-sJHouXN5ep {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #21396f;
}
.cid-sJHouXN5ep .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-sJHouXN5ep .container {
  max-width: 1500px;
}
.cid-sJHouXN5ep .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sJHouXN5ep .container {
    padding: 0 4rem;
  }
}
.cid-sJHouXN5ep .mbr-text,
.cid-sJHouXN5ep .mbr-section-btn {
  color: #efeeee;
}
.cid-sJHouXN5ep .btn {
  width: -webkit-fill-available;
  margin: 0.4rem !important;
}
.cid-sJHouXN5ep .pt-5 {
  padding-top: 4rem !important;
}
@media (max-width: 922px) {
  .cid-sJHouXN5ep .align-left {
    text-align: center;
  }
  .cid-sJHouXN5ep .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-sIDJdIWVRh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3a65c6;
}
.cid-sIDJdIWVRh .mbr-section-subtitle {
  color: #767676;
}
.cid-sIDJdIWVRh H2 {
  color: #ffffff;
}
.cid-sIDJh1Y3Sd {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #5c88ec;
}
.cid-sIDJh1Y3Sd .mbr-section-subtitle {
  color: #767676;
}
.cid-sIDJh1Y3Sd H2 {
  color: #ffffff;
}
.cid-sIDCKOkDNM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #efeeee;
}
.cid-sIDCKOkDNM .column-wrapper {
  padding-left: 1.5rem;
}
.cid-sIDCKOkDNM .row {
  flex-direction: row-reverse;
}
.cid-sIDCKOkDNM .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-sIDCKOkDNM .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-sIDCKOkDNM .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-sIDCKOkDNM .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #3a65c6;
}
.cid-sIDCKOkDNM .mbr-text,
.cid-sIDCKOkDNM .mbr-section-btn {
  text-align: left;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sIDCKOkDNM .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sIDSAaLdnQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #21396f;
}
.cid-sIDSAaLdnQ .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-sIDSAaLdnQ .container {
  max-width: 1500px;
}
.cid-sIDSAaLdnQ .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sIDSAaLdnQ .container {
    padding: 0 4rem;
  }
}
.cid-sIDSAaLdnQ .mbr-text,
.cid-sIDSAaLdnQ .mbr-section-btn {
  color: #efeeee;
}
.cid-sIDSAaLdnQ .btn {
  width: -webkit-fill-available;
  margin: 0.4rem !important;
}
.cid-sIDSAaLdnQ .pt-5 {
  padding-top: 4rem !important;
}
@media (max-width: 922px) {
  .cid-sIDSAaLdnQ .align-left {
    text-align: center;
  }
  .cid-sIDSAaLdnQ .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-rIQRB8tCEm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3a65c6;
}
.cid-rIQRB8tCEm .mbr-section-subtitle {
  color: #767676;
}
.cid-rIQRB8tCEm H2 {
  color: #ffffff;
}
.cid-rIRpIe8g6G {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-rIRpIe8g6G .mbr-section-subtitle {
  color: #767676;
}
.cid-rIRpIe8g6G H2 {
  color: #ffffff;
}
.cid-rIQRBb4kl8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3a65c6;
}
.cid-rIQRBb4kl8 .content-block {
  max-width: 350px;
  padding: 4rem 3rem;
  z-index: 5;
  position: relative;
}
.cid-rIQRBb4kl8 .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/dsc05385-2000x1123.jpg");
  background-position: center;
  background-size: cover;
  z-index: 3;
}
.cid-rIQRBb4kl8 .block2 {
  background-image: url("../../../assets/images/dsc05385-2000x1123.jpg");
}
.cid-rIQRBb4kl8 .block2:hover .block2-over {
  opacity: 0;
}
.cid-rIQRBb4kl8 .block1 {
  background-image: url("../../../assets/images/dsc05385-2000x1123.jpg");
}
.cid-rIQRBb4kl8 .block1:hover .block1-over {
  opacity: 0;
}
.cid-rIQRBb4kl8 .block1-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #5c88ec;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-rIQRBb4kl8 .block2-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #21038c;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-rIQRBb4kl8 .overlay {
  position: absolute;
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0%;
  background: #4501a4;
  z-index: 2;
  opacity: 1;
}
.cid-rIQRBb4kl8 .overlay-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 50%;
  transition-delay: 0.3s;
  top: 0;
  z-index: 4;
}
.cid-rIQRBb4kl8 .col {
  padding: 0;
  display: flex;
  position: relative;
  min-height: 400px;
  justify-content: flex-end;
}
.cid-rIQRBb4kl8 .col:hover .overlay-wrapper {
  width: 100%;
  right: 0;
  transition-delay: 0s;
}
.cid-rIQRBb4kl8 .col:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-rIQRBb4kl8 .col:hover .img-content {
  opacity: 1;
  width: 100%;
  transition-delay: 0.3s;
}
.cid-rIQRBb4kl8 .col:hover .box-title2,
.cid-rIQRBb4kl8 .col:hover .box-text2 {
  color: #ffffff;
  transition-delay: 0.3s;
}
.cid-rIQRBb4kl8 .box-title2,
.cid-rIQRBb4kl8 .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-rIQRBb4kl8 .box-content {
  width: 50%;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #4501a4;
}
.cid-rIQRBb4kl8 .content1 {
  z-index: 5;
  max-width: 450px;
  position: relative;
  transition: all 0.3s;
  transition-delay: 0.3s;
  padding: 4rem 3rem;
}
.cid-rIQRBb4kl8 .content2 {
  z-index: 2;
  max-width: 450px;
  margin-bottom: -1rem;
  position: relative;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0s;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-rIQRBb4kl8 .img-content {
    opacity: 1;
  }
  .cid-rIQRBb4kl8 .overlay-wrapper {
    width: 100%;
    right: 0;
  }
  .cid-rIQRBb4kl8 .box-content {
    width: 100%;
  }
  .cid-rIQRBb4kl8 .box-title2,
  .cid-rIQRBb4kl8 .box-text2 {
    color: #ffffff !important;
  }
  .cid-rIQRBb4kl8 .content-block,
  .cid-rIQRBb4kl8 .content1 {
    padding: 3rem 1rem;
  }
}
.cid-rIQRBb4kl8 .box-text1 {
  color: #333333;
}
.cid-rIQRBb4kl8 .box-title2 {
  color: #cccccc;
}
.cid-rIQRBb4kl8 .block1-text,
.cid-rIQRBb4kl8 .mbr-section-btn {
  color: #ffffff;
}
.cid-rIQRBb4kl8 .block2-text,
.cid-rIQRBb4kl8 .mbr-section-btn {
  color: #ffffff;
}
.cid-rIQRBb4kl8 .block2-title {
  color: #333333;
}
.cid-rIQRBb4kl8 .block2-subtitle {
  color: #ffffff;
}
.cid-rIQRBb4kl8 .block1-subtitle {
  color: #ffffff;
}
.cid-tJlLqxxTDK {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #cc2952;
}
.cid-tJlLqxxTDK h2 {
  text-align: left;
}
.cid-tJlLqxxTDK h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tJlLqxxTDK p {
  color: #767676;
  text-align: left;
}
.cid-tJlLqxxTDK .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tJlLqxxTDK .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tJlLqxxTDK .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tJlLqxxTDK .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tJlLqxxTDK .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tJlLqxxTDK .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tJlLqxxTDK .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-tJlLqxxTDK .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-tJlLqxxTDK .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-tJlLqxxTDK .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-tJlLqxxTDK .card-img span {
    font-size: 40px !important;
  }
}
.cid-tJlLqxxTDK .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tJlLqxxTDK H2 {
  color: #ffffff;
  text-align: center;
}
.cid-tJlLqxxTDK P {
  color: #ffffff;
  text-align: center;
}
.cid-tJlLqxxTDK H4 {
  color: #ffffff;
  text-align: left;
}
.cid-tJlLqxxTDK DIV {
  text-align: left;
}
.cid-rIQRBbJG17 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-rIQRBbJG17 .media-container-row .mbr-text {
  color: #4501a4;
}
.cid-tJlLGtzujU.popup-builder {
  background-color: #ffffff;
}
.cid-tJlLGtzujU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tJlLGtzujU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tJlLGtzujU .modal-content,
.cid-tJlLGtzujU .modal-dialog {
  height: auto;
}
.cid-tJlLGtzujU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tJlLGtzujU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tJlLGtzujU .form-wrapper .mbr-form .form-group,
  .cid-tJlLGtzujU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tJlLGtzujU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tJlLGtzujU .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-tJlLGtzujU .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tJlLGtzujU .pt-0 {
  padding-top: 0 !important;
}
.cid-tJlLGtzujU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tJlLGtzujU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tJlLGtzujU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tJlLGtzujU .modal-open {
  overflow: hidden;
}
.cid-tJlLGtzujU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tJlLGtzujU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tJlLGtzujU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tJlLGtzujU .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-tJlLGtzujU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tJlLGtzujU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tJlLGtzujU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tJlLGtzujU .modal-content {
  background: #cc2952;
  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-tJlLGtzujU .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tJlLGtzujU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tJlLGtzujU .modal-backdrop.fade {
  opacity: 0;
}
.cid-tJlLGtzujU .modal-backdrop.show {
  opacity: .5;
}
.cid-tJlLGtzujU .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-tJlLGtzujU .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tJlLGtzujU .modal-header {
    padding: 1rem;
  }
}
.cid-tJlLGtzujU .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tJlLGtzujU .modal-header .close svg {
  fill: #7f1933;
}
.cid-tJlLGtzujU .modal-header .close:hover {
  opacity: 1;
}
.cid-tJlLGtzujU .modal-header .close:focus {
  outline: none;
}
.cid-tJlLGtzujU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tJlLGtzujU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tJlLGtzujU .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJlLGtzujU .modal-body {
    padding: 1rem;
  }
}
.cid-tJlLGtzujU .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-tJlLGtzujU .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJlLGtzujU .modal-footer {
    padding: 1rem;
  }
}
.cid-tJlLGtzujU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tJlLGtzujU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tJlLGtzujU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tJlLGtzujU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tJlLGtzujU .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tJlLGtzujU .modal-lg,
  .cid-tJlLGtzujU .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tJlLGtzujU .modal-xl {
    max-width: 1140px;
  }
}
.cid-tJlLGtzujU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tJlLGtzujU .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-tJlLGtzujU .form-group {
  margin-bottom: 1rem;
}
.cid-tJlLGtzujU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tJlLGtzujU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tJlLGtzujU .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-tJlLGtzujU .mbr-section-btn {
  margin: 0;
}
.cid-tJlLGtzujU .mbr-section-btn .btn {
  margin: 0;
}
.cid-rA0b3EAQij .navbar {
  background: #4501a4;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rA0b3EAQij .navbar-dropdown.bg-color.transparent.opened {
  background: #4501a4;
}
.cid-rA0b3EAQij a {
  font-style: normal;
}
.cid-rA0b3EAQij .show {
  overflow: visible;
}
.cid-rA0b3EAQij .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-rA0b3EAQij .dropdown-item:active {
  background-color: transparent;
}
.cid-rA0b3EAQij .nav-link {
  font-weight: 600!important;
}
.cid-rA0b3EAQij .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rA0b3EAQij .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-rA0b3EAQij .nav-item:focus,
.cid-rA0b3EAQij .nav-link:focus {
  outline: none;
}
.cid-rA0b3EAQij .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rA0b3EAQij .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rA0b3EAQij .menu-logo {
  margin-right: auto;
}
.cid-rA0b3EAQij .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rA0b3EAQij .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-rA0b3EAQij .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600!important;
  padding-right: 2rem;
}
.cid-rA0b3EAQij .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rA0b3EAQij .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rA0b3EAQij .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rA0b3EAQij .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rA0b3EAQij .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-rA0b3EAQij .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rA0b3EAQij .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rA0b3EAQij .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rA0b3EAQij .dropdown .dropdown-menu {
  background: #efeeee;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rA0b3EAQij .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #465052 !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-rA0b3EAQij .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rA0b3EAQij .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rA0b3EAQij .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rA0b3EAQij .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rA0b3EAQij .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rA0b3EAQij .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rA0b3EAQij .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rA0b3EAQij .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rA0b3EAQij .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rA0b3EAQij .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rA0b3EAQij button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rA0b3EAQij button.navbar-toggler:focus {
  outline: none;
}
.cid-rA0b3EAQij button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rA0b3EAQij button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rA0b3EAQij button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rA0b3EAQij button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rA0b3EAQij button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rA0b3EAQij nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rA0b3EAQij nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rA0b3EAQij nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rA0b3EAQij nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rA0b3EAQij .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rA0b3EAQij .collapsed .btn {
  display: -webkit-flex;
}
.cid-rA0b3EAQij .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rA0b3EAQij .collapsed .navbar-collapse.collapsing,
.cid-rA0b3EAQij .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-rA0b3EAQij .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rA0b3EAQij .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rA0b3EAQij .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rA0b3EAQij .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rA0b3EAQij .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rA0b3EAQij .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rA0b3EAQij .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rA0b3EAQij .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rA0b3EAQij .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-rA0b3EAQij .collapsed button.navbar-toggler {
  display: block;
}
.cid-rA0b3EAQij .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rA0b3EAQij .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rA0b3EAQij .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-rA0b3EAQij .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rA0b3EAQij .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rA0b3EAQij .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;
}
@media (max-width: 991px) {
  .cid-rA0b3EAQij.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rA0b3EAQij img {
    height: 3.8rem !important;
  }
  .cid-rA0b3EAQij .btn {
    display: -webkit-flex;
  }
  .cid-rA0b3EAQij button.navbar-toggler {
    display: block;
  }
  .cid-rA0b3EAQij .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rA0b3EAQij .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rA0b3EAQij .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rA0b3EAQij .navbar-collapse.collapsing,
  .cid-rA0b3EAQij .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-rA0b3EAQij .navbar-collapse.collapsing .navbar-nav,
  .cid-rA0b3EAQij .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rA0b3EAQij .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rA0b3EAQij .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rA0b3EAQij .navbar-collapse.collapsing .navbar-buttons,
  .cid-rA0b3EAQij .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rA0b3EAQij .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rA0b3EAQij .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rA0b3EAQij .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-rA0b3EAQij .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rA0b3EAQij .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rA0b3EAQij .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;
  }
}
@media (max-width: 767px) {
  .cid-rA0b3EAQij .nav-link {
    justify-content: start!important;
  }
  .cid-rA0b3EAQij .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-rA0b3EAQij .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-rA0b3EAQij .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-rA0b3EAQij .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rA0b3EAQij .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rA0b3EAQij .nav-link:hover,
.cid-rA0b3EAQij .dropdown-item:hover {
  color: #8cadf8 !important;
}
@media (min-width: 1500px) {
  .cid-rA0b3EAQij .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-rA0b3EAQij .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-rA0cMPRCEL {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #3a65c6;
}
.cid-rA0cMPRCEL .mbr-section-subtitle {
  color: #767676;
}
.cid-rA0cMPRCEL H2 {
  color: #ffffff;
}
.cid-rA0b3rMkbR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #5c88ec;
}
.cid-rA0b3rMkbR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rA0b3rMkbR H2 {
  color: #ffffff;
}
.cid-rA0dGOjekX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rA0dGOjekX .row-element,
.cid-rA0dGOjekX .image-element {
  padding: 0;
}
.cid-rA0dGOjekX .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rA0dGOjekX .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rA0dGOjekX .text-content {
  padding: 3rem;
}
.cid-rA0dGOjekX .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-rA0dGOjekX .text-content {
    padding: 2rem 1rem;
  }
  .cid-rA0dGOjekX .mbr-title,
  .cid-rA0dGOjekX .mbr-text,
  .cid-rA0dGOjekX .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rA0dGOjekX .mbr-text,
.cid-rA0dGOjekX .mbr-section-btn {
  text-align: left;
  color: #282124;
}
.cid-rA0dGOjekX .mbr-title {
  color: #ffffff;
  text-align: left;
}
.cid-rA0glIN1bl {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rA0glIN1bl .mbr-text,
.cid-rA0glIN1bl blockquote {
  color: #767676;
}
.cid-rA0glIN1bl .mbr-text {
  color: #282124;
}
.cid-rA0b3twH0P {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-rA0b3twH0P .mbr-section-subtitle {
  color: #767676;
}
.cid-rA0b3twH0P H2 {
  color: #ffffff;
}
.cid-rA0b3wJuZS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3a65c6;
}
.cid-rA0b3wJuZS .mbr-section-subtitle {
  color: #767676;
}
.cid-rA0b3wJuZS H2 {
  color: #ffffff;
}
.cid-rA0b3xhClh {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #21038c;
}
.cid-rA0b3xhClh h2 {
  text-align: left;
}
.cid-rA0b3xhClh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rA0b3xhClh p {
  color: #767676;
  text-align: left;
}
.cid-rA0b3xhClh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rA0b3xhClh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rA0b3xhClh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rA0b3xhClh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rA0b3xhClh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rA0b3xhClh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rA0b3xhClh .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rA0b3xhClh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rA0b3xhClh .card-img span {
    font-size: 40px !important;
  }
}
.cid-rA0b3xhClh .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-rA0b3xhClh H2 {
  color: #ffffff;
  text-align: center;
}
.cid-rA0b3xhClh P {
  color: #ffffff;
}
.cid-rA0b3xhClh H4 {
  color: #ffffff;
  text-align: center;
}
.cid-rA0b3y5HlY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-rA0b3y5HlY .mbr-section-subtitle {
  color: #767676;
}
.cid-rA0b3y5HlY H2 {
  color: #ffffff;
}
.cid-rA0b3yFWtz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #4501a4;
}
.cid-rA0b3yFWtz .mbr-section-subtitle {
  color: #767676;
}
.cid-rA0b3yFWtz H2 {
  color: #ffffff;
}
.cid-rA0b3zi9iY {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #3a65c6;
}
.cid-rA0b3zi9iY h2 {
  text-align: left;
}
.cid-rA0b3zi9iY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rA0b3zi9iY p {
  color: #767676;
  text-align: left;
}
.cid-rA0b3zi9iY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rA0b3zi9iY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rA0b3zi9iY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rA0b3zi9iY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rA0b3zi9iY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rA0b3zi9iY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rA0b3zi9iY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rA0b3zi9iY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rA0b3zi9iY .card-img span {
    font-size: 40px !important;
  }
}
.cid-rA0b3zi9iY .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-rA0b3zi9iY H2 {
  color: #ffffff;
  text-align: center;
}
.cid-rA0b3zi9iY P {
  color: #ffffff;
}
.cid-rA0b3zi9iY H4 {
  color: #ffffff;
  text-align: center;
}
.cid-rA0b3A1mez {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-rA0b3A1mez .mbr-section-subtitle {
  color: #767676;
}
.cid-rA0b3A1mez H2 {
  color: #ffffff;
}
.cid-rA0b3ApMqg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #21038c;
}
.cid-rA0b3ApMqg .mbr-section-subtitle {
  color: #767676;
}
.cid-rA0b3ApMqg H2 {
  color: #ffffff;
}
.cid-rA0b3AMTaZ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #4501a4;
}
.cid-rA0b3AMTaZ h2 {
  text-align: left;
}
.cid-rA0b3AMTaZ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rA0b3AMTaZ p {
  color: #767676;
  text-align: left;
}
.cid-rA0b3AMTaZ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rA0b3AMTaZ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rA0b3AMTaZ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rA0b3AMTaZ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rA0b3AMTaZ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rA0b3AMTaZ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rA0b3AMTaZ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rA0b3AMTaZ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rA0b3AMTaZ .card-img span {
    font-size: 40px !important;
  }
}
.cid-rA0b3AMTaZ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-rA0b3AMTaZ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-rA0b3AMTaZ P {
  color: #ffffff;
}
.cid-rA0b3AMTaZ H4 {
  color: #ffffff;
  text-align: center;
}
.cid-rA0b3BBAzz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-rA0b3BBAzz .mbr-section-subtitle {
  color: #767676;
}
.cid-rA0b3BBAzz H2 {
  color: #ffffff;
}
.cid-rA0b3BZrGa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3a65c6;
}
.cid-rA0b3BZrGa .mbr-section-subtitle {
  color: #767676;
}
.cid-rA0b3BZrGa H2 {
  color: #ffffff;
}
.cid-rA0b3CmKK1 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #21038c;
}
.cid-rA0b3CmKK1 .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-rA0b3CmKK1 .container {
  max-width: 1500px;
}
.cid-rA0b3CmKK1 .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-rA0b3CmKK1 .container {
    padding: 0 4rem;
  }
}
.cid-rA0b3CmKK1 .mbr-text,
.cid-rA0b3CmKK1 .mbr-section-btn {
  color: #efeeee;
}
.cid-rA0b3CmKK1 .btn {
  width: -webkit-fill-available;
  margin: 0.4rem!important;
}
.cid-rA0b3CmKK1 .pt-5 {
  padding-top: 4rem!important;
}
@media (max-width: 922px) {
  .cid-rA0b3CmKK1 .align-left {
    text-align: center;
  }
  .cid-rA0b3CmKK1 .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-rA0b3CWmhg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-rA0b3CWmhg .mbr-section-subtitle {
  color: #767676;
}
.cid-rA0b3CWmhg H2 {
  color: #ffffff;
}
.cid-rA0b3Dkwx4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3a65c6;
}
.cid-rA0b3Dkwx4 .content-block {
  max-width: 350px;
  padding: 4rem 3rem;
  z-index: 5;
  position: relative;
}
.cid-rA0b3Dkwx4 .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/dsc05385-2000x1123.jpg");
  background-position: center;
  background-size: cover;
  z-index: 3;
}
.cid-rA0b3Dkwx4 .block2 {
  background-image: url("../../../assets/images/dsc05385-2000x1123.jpg");
}
.cid-rA0b3Dkwx4 .block2:hover .block2-over {
  opacity: 0;
}
.cid-rA0b3Dkwx4 .block1 {
  background-image: url("../../../assets/images/dsc05385-2000x1123.jpg");
}
.cid-rA0b3Dkwx4 .block1:hover .block1-over {
  opacity: 0;
}
.cid-rA0b3Dkwx4 .block1-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #5c88ec;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-rA0b3Dkwx4 .block2-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #21038c;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-rA0b3Dkwx4 .overlay {
  position: absolute;
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0%;
  background: #4501a4;
  z-index: 2;
  opacity: 1;
}
.cid-rA0b3Dkwx4 .overlay-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 50%;
  transition-delay: 0.3s;
  top: 0;
  z-index: 4;
}
.cid-rA0b3Dkwx4 .col {
  padding: 0;
  display: flex;
  position: relative;
  min-height: 400px;
  justify-content: flex-end;
}
.cid-rA0b3Dkwx4 .col:hover .overlay-wrapper {
  width: 100%;
  right: 0;
  transition-delay: 0s;
}
.cid-rA0b3Dkwx4 .col:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-rA0b3Dkwx4 .col:hover .img-content {
  opacity: 1;
  width: 100%;
  transition-delay: 0.3s;
}
.cid-rA0b3Dkwx4 .col:hover .box-title2,
.cid-rA0b3Dkwx4 .col:hover .box-text2 {
  color: #ffffff;
  transition-delay: 0.3s;
}
.cid-rA0b3Dkwx4 .box-title2,
.cid-rA0b3Dkwx4 .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-rA0b3Dkwx4 .box-content {
  width: 50%;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #4501a4;
}
.cid-rA0b3Dkwx4 .content1 {
  z-index: 5;
  max-width: 450px;
  position: relative;
  transition: all 0.3s;
  transition-delay: 0.3s;
  padding: 4rem 3rem;
}
.cid-rA0b3Dkwx4 .content2 {
  z-index: 2;
  max-width: 450px;
  margin-bottom: -1rem;
  position: relative;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0s;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-rA0b3Dkwx4 .img-content {
    opacity: 1;
  }
  .cid-rA0b3Dkwx4 .overlay-wrapper {
    width: 100%;
    right: 0;
  }
  .cid-rA0b3Dkwx4 .box-content {
    width: 100%;
  }
  .cid-rA0b3Dkwx4 .box-title2,
  .cid-rA0b3Dkwx4 .box-text2 {
    color: #ffffff !important;
  }
  .cid-rA0b3Dkwx4 .content-block,
  .cid-rA0b3Dkwx4 .content1 {
    padding: 3rem 1rem;
  }
}
.cid-rA0b3Dkwx4 .box-text1 {
  color: #333333;
}
.cid-rA0b3Dkwx4 .box-title2 {
  color: #cccccc;
}
.cid-rA0b3Dkwx4 .block1-text,
.cid-rA0b3Dkwx4 .mbr-section-btn {
  color: #ffffff;
}
.cid-rA0b3Dkwx4 .block2-text,
.cid-rA0b3Dkwx4 .mbr-section-btn {
  color: #ffffff;
}
.cid-rA0b3Dkwx4 .block2-title {
  color: #333333;
}
.cid-rA0b3Dkwx4 .block2-subtitle {
  color: #ffffff;
}
.cid-rA0b3Dkwx4 .block1-subtitle {
  color: #ffffff;
}
.cid-tJlLof9O8L {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #cc2952;
}
.cid-tJlLof9O8L h2 {
  text-align: left;
}
.cid-tJlLof9O8L h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tJlLof9O8L p {
  color: #767676;
  text-align: left;
}
.cid-tJlLof9O8L .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tJlLof9O8L .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tJlLof9O8L .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tJlLof9O8L .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tJlLof9O8L .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tJlLof9O8L .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tJlLof9O8L .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-tJlLof9O8L .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-tJlLof9O8L .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-tJlLof9O8L .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-tJlLof9O8L .card-img span {
    font-size: 40px !important;
  }
}
.cid-tJlLof9O8L .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tJlLof9O8L H2 {
  color: #ffffff;
  text-align: center;
}
.cid-tJlLof9O8L P {
  color: #ffffff;
  text-align: center;
}
.cid-tJlLof9O8L H4 {
  color: #ffffff;
  text-align: left;
}
.cid-tJlLof9O8L DIV {
  text-align: left;
}
.cid-rA0b3E88Gr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-rA0b3E88Gr .media-container-row .mbr-text {
  color: #4501a4;
}
.cid-tJlLGsoyBb.popup-builder {
  background-color: #ffffff;
}
.cid-tJlLGsoyBb.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tJlLGsoyBb.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tJlLGsoyBb .modal-content,
.cid-tJlLGsoyBb .modal-dialog {
  height: auto;
}
.cid-tJlLGsoyBb .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tJlLGsoyBb .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tJlLGsoyBb .form-wrapper .mbr-form .form-group,
  .cid-tJlLGsoyBb .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tJlLGsoyBb .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tJlLGsoyBb .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-tJlLGsoyBb .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tJlLGsoyBb .pt-0 {
  padding-top: 0 !important;
}
.cid-tJlLGsoyBb .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tJlLGsoyBb .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tJlLGsoyBb .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tJlLGsoyBb .modal-open {
  overflow: hidden;
}
.cid-tJlLGsoyBb .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tJlLGsoyBb .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tJlLGsoyBb .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tJlLGsoyBb .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-tJlLGsoyBb .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tJlLGsoyBb .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tJlLGsoyBb .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tJlLGsoyBb .modal-content {
  background: #cc2952;
  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-tJlLGsoyBb .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tJlLGsoyBb .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tJlLGsoyBb .modal-backdrop.fade {
  opacity: 0;
}
.cid-tJlLGsoyBb .modal-backdrop.show {
  opacity: .5;
}
.cid-tJlLGsoyBb .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-tJlLGsoyBb .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tJlLGsoyBb .modal-header {
    padding: 1rem;
  }
}
.cid-tJlLGsoyBb .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tJlLGsoyBb .modal-header .close svg {
  fill: #7f1933;
}
.cid-tJlLGsoyBb .modal-header .close:hover {
  opacity: 1;
}
.cid-tJlLGsoyBb .modal-header .close:focus {
  outline: none;
}
.cid-tJlLGsoyBb .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tJlLGsoyBb .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tJlLGsoyBb .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJlLGsoyBb .modal-body {
    padding: 1rem;
  }
}
.cid-tJlLGsoyBb .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-tJlLGsoyBb .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJlLGsoyBb .modal-footer {
    padding: 1rem;
  }
}
.cid-tJlLGsoyBb .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tJlLGsoyBb .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tJlLGsoyBb .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tJlLGsoyBb .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tJlLGsoyBb .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tJlLGsoyBb .modal-lg,
  .cid-tJlLGsoyBb .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tJlLGsoyBb .modal-xl {
    max-width: 1140px;
  }
}
.cid-tJlLGsoyBb .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tJlLGsoyBb .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-tJlLGsoyBb .form-group {
  margin-bottom: 1rem;
}
.cid-tJlLGsoyBb .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tJlLGsoyBb .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tJlLGsoyBb .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-tJlLGsoyBb .mbr-section-btn {
  margin: 0;
}
.cid-tJlLGsoyBb .mbr-section-btn .btn {
  margin: 0;
}
.cid-sIDNF62hXn .navbar {
  background: #4501a4;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sIDNF62hXn .navbar-dropdown.bg-color.transparent.opened {
  background: #4501a4;
}
.cid-sIDNF62hXn a {
  font-style: normal;
}
.cid-sIDNF62hXn .show {
  overflow: visible;
}
.cid-sIDNF62hXn .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sIDNF62hXn .dropdown-item:active {
  background-color: transparent;
}
.cid-sIDNF62hXn .nav-link {
  font-weight: 600!important;
}
.cid-sIDNF62hXn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sIDNF62hXn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-sIDNF62hXn .nav-item:focus,
.cid-sIDNF62hXn .nav-link:focus {
  outline: none;
}
.cid-sIDNF62hXn .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sIDNF62hXn .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sIDNF62hXn .menu-logo {
  margin-right: auto;
}
.cid-sIDNF62hXn .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sIDNF62hXn .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-sIDNF62hXn .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600!important;
  padding-right: 2rem;
}
.cid-sIDNF62hXn .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sIDNF62hXn .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sIDNF62hXn .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sIDNF62hXn .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sIDNF62hXn .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sIDNF62hXn .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sIDNF62hXn .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sIDNF62hXn .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sIDNF62hXn .dropdown .dropdown-menu {
  background: #efeeee;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sIDNF62hXn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #465052 !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-sIDNF62hXn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIDNF62hXn .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sIDNF62hXn .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIDNF62hXn .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sIDNF62hXn .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sIDNF62hXn .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sIDNF62hXn .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sIDNF62hXn .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sIDNF62hXn .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sIDNF62hXn .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sIDNF62hXn button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sIDNF62hXn button.navbar-toggler:focus {
  outline: none;
}
.cid-sIDNF62hXn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sIDNF62hXn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sIDNF62hXn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sIDNF62hXn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sIDNF62hXn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sIDNF62hXn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sIDNF62hXn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sIDNF62hXn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sIDNF62hXn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sIDNF62hXn .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sIDNF62hXn .collapsed .btn {
  display: -webkit-flex;
}
.cid-sIDNF62hXn .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sIDNF62hXn .collapsed .navbar-collapse.collapsing,
.cid-sIDNF62hXn .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sIDNF62hXn .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sIDNF62hXn .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sIDNF62hXn .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sIDNF62hXn .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sIDNF62hXn .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sIDNF62hXn .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sIDNF62hXn .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sIDNF62hXn .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sIDNF62hXn .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-sIDNF62hXn .collapsed button.navbar-toggler {
  display: block;
}
.cid-sIDNF62hXn .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sIDNF62hXn .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sIDNF62hXn .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-sIDNF62hXn .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sIDNF62hXn .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sIDNF62hXn .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;
}
@media (max-width: 991px) {
  .cid-sIDNF62hXn.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sIDNF62hXn img {
    height: 3.8rem !important;
  }
  .cid-sIDNF62hXn .btn {
    display: -webkit-flex;
  }
  .cid-sIDNF62hXn button.navbar-toggler {
    display: block;
  }
  .cid-sIDNF62hXn .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sIDNF62hXn .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sIDNF62hXn .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sIDNF62hXn .navbar-collapse.collapsing,
  .cid-sIDNF62hXn .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sIDNF62hXn .navbar-collapse.collapsing .navbar-nav,
  .cid-sIDNF62hXn .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sIDNF62hXn .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sIDNF62hXn .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sIDNF62hXn .navbar-collapse.collapsing .navbar-buttons,
  .cid-sIDNF62hXn .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sIDNF62hXn .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sIDNF62hXn .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sIDNF62hXn .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-sIDNF62hXn .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sIDNF62hXn .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sIDNF62hXn .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;
  }
}
@media (max-width: 767px) {
  .cid-sIDNF62hXn .nav-link {
    justify-content: start!important;
  }
  .cid-sIDNF62hXn .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sIDNF62hXn .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-sIDNF62hXn .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sIDNF62hXn .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sIDNF62hXn .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sIDNF62hXn .nav-link:hover,
.cid-sIDNF62hXn .dropdown-item:hover {
  color: #8cadf8 !important;
}
@media (min-width: 1500px) {
  .cid-sIDNF62hXn .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-sIDNF62hXn .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sIDNETiUBU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #3a65c6;
}
.cid-sIDNETiUBU .mbr-section-subtitle {
  color: #767676;
}
.cid-sIDNETiUBU H2 {
  color: #ffffff;
}
.cid-sIDNEV0zVT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #5c88ec;
}
.cid-sIDNEV0zVT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sIDNEV0zVT H2 {
  color: #ffffff;
}
.cid-sIDNEVAFnF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sIDNEVAFnF .row-element,
.cid-sIDNEVAFnF .image-element {
  padding: 0;
}
.cid-sIDNEVAFnF .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sIDNEVAFnF .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sIDNEVAFnF .text-content {
  padding: 3rem;
}
.cid-sIDNEVAFnF .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-sIDNEVAFnF .text-content {
    padding: 2rem 1rem;
  }
  .cid-sIDNEVAFnF .mbr-title,
  .cid-sIDNEVAFnF .mbr-text,
  .cid-sIDNEVAFnF .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sIDNEVAFnF .mbr-text,
.cid-sIDNEVAFnF .mbr-section-btn {
  text-align: left;
  color: #282124;
}
.cid-sIDNEVAFnF .mbr-title {
  color: #ffffff;
  text-align: left;
}
.cid-sIDNEZyBLE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #efeeee;
}
.cid-sIDNEZyBLE .column-wrapper {
  padding-left: 1.5rem;
}
.cid-sIDNEZyBLE .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-sIDNEZyBLE .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-sIDNEZyBLE .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #40bcad;
}
.cid-sIDNEZyBLE .mbr-text,
.cid-sIDNEZyBLE .mbr-section-btn {
  text-align: left;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sIDNEZyBLE .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sIE88ovtKm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #21396f;
}
.cid-sIE88ovtKm .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-sIE88ovtKm .container {
  max-width: 1500px;
}
.cid-sIE88ovtKm .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sIE88ovtKm .container {
    padding: 0 4rem;
  }
}
.cid-sIE88ovtKm .mbr-text,
.cid-sIE88ovtKm .mbr-section-btn {
  color: #efeeee;
}
.cid-sIE88ovtKm .btn {
  width: -webkit-fill-available;
  margin: 0.4rem !important;
}
.cid-sIE88ovtKm .pt-5 {
  padding-top: 4rem !important;
}
@media (max-width: 922px) {
  .cid-sIE88ovtKm .align-left {
    text-align: center;
  }
  .cid-sIE88ovtKm .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-sIDNF3KnmN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIDNF3KnmN .mbr-section-subtitle {
  color: #767676;
}
.cid-sIDNF3KnmN H2 {
  color: #ffffff;
}
.cid-sIDNF4kFqQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-sIDNF4kFqQ .mbr-section-subtitle {
  color: #767676;
}
.cid-sIDNF4kFqQ H2 {
  color: #ffffff;
}
.cid-sIDNF4PKaj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3a65c6;
}
.cid-sIDNF4PKaj .content-block {
  max-width: 350px;
  padding: 4rem 3rem;
  z-index: 5;
  position: relative;
}
.cid-sIDNF4PKaj .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/dsc05385-2000x1123.jpg");
  background-position: center;
  background-size: cover;
  z-index: 3;
}
.cid-sIDNF4PKaj .block2 {
  background-image: url("../../../assets/images/dsc05385-2000x1123.jpg");
}
.cid-sIDNF4PKaj .block2:hover .block2-over {
  opacity: 0;
}
.cid-sIDNF4PKaj .block1 {
  background-image: url("../../../assets/images/dsc05385-2000x1123.jpg");
}
.cid-sIDNF4PKaj .block1:hover .block1-over {
  opacity: 0;
}
.cid-sIDNF4PKaj .block1-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #5c88ec;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-sIDNF4PKaj .block2-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #21038c;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-sIDNF4PKaj .overlay {
  position: absolute;
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0%;
  background: #4501a4;
  z-index: 2;
  opacity: 1;
}
.cid-sIDNF4PKaj .overlay-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 50%;
  transition-delay: 0.3s;
  top: 0;
  z-index: 4;
}
.cid-sIDNF4PKaj .col {
  padding: 0;
  display: flex;
  position: relative;
  min-height: 400px;
  justify-content: flex-end;
}
.cid-sIDNF4PKaj .col:hover .overlay-wrapper {
  width: 100%;
  right: 0;
  transition-delay: 0s;
}
.cid-sIDNF4PKaj .col:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-sIDNF4PKaj .col:hover .img-content {
  opacity: 1;
  width: 100%;
  transition-delay: 0.3s;
}
.cid-sIDNF4PKaj .col:hover .box-title2,
.cid-sIDNF4PKaj .col:hover .box-text2 {
  color: #ffffff;
  transition-delay: 0.3s;
}
.cid-sIDNF4PKaj .box-title2,
.cid-sIDNF4PKaj .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-sIDNF4PKaj .box-content {
  width: 50%;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #4501a4;
}
.cid-sIDNF4PKaj .content1 {
  z-index: 5;
  max-width: 450px;
  position: relative;
  transition: all 0.3s;
  transition-delay: 0.3s;
  padding: 4rem 3rem;
}
.cid-sIDNF4PKaj .content2 {
  z-index: 2;
  max-width: 450px;
  margin-bottom: -1rem;
  position: relative;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0s;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sIDNF4PKaj .img-content {
    opacity: 1;
  }
  .cid-sIDNF4PKaj .overlay-wrapper {
    width: 100%;
    right: 0;
  }
  .cid-sIDNF4PKaj .box-content {
    width: 100%;
  }
  .cid-sIDNF4PKaj .box-title2,
  .cid-sIDNF4PKaj .box-text2 {
    color: #ffffff !important;
  }
  .cid-sIDNF4PKaj .content-block,
  .cid-sIDNF4PKaj .content1 {
    padding: 3rem 1rem;
  }
}
.cid-sIDNF4PKaj .box-text1 {
  color: #333333;
}
.cid-sIDNF4PKaj .box-title2 {
  color: #cccccc;
}
.cid-sIDNF4PKaj .block1-text,
.cid-sIDNF4PKaj .mbr-section-btn {
  color: #ffffff;
}
.cid-sIDNF4PKaj .block2-text,
.cid-sIDNF4PKaj .mbr-section-btn {
  color: #ffffff;
}
.cid-sIDNF4PKaj .block2-title {
  color: #333333;
}
.cid-sIDNF4PKaj .block2-subtitle {
  color: #ffffff;
}
.cid-sIDNF4PKaj .block1-subtitle {
  color: #ffffff;
}
.cid-tJlLwO9Vf6 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #cc2952;
}
.cid-tJlLwO9Vf6 h2 {
  text-align: left;
}
.cid-tJlLwO9Vf6 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tJlLwO9Vf6 p {
  color: #767676;
  text-align: left;
}
.cid-tJlLwO9Vf6 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tJlLwO9Vf6 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tJlLwO9Vf6 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tJlLwO9Vf6 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tJlLwO9Vf6 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tJlLwO9Vf6 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tJlLwO9Vf6 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-tJlLwO9Vf6 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-tJlLwO9Vf6 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-tJlLwO9Vf6 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-tJlLwO9Vf6 .card-img span {
    font-size: 40px !important;
  }
}
.cid-tJlLwO9Vf6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tJlLwO9Vf6 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-tJlLwO9Vf6 P {
  color: #ffffff;
  text-align: center;
}
.cid-tJlLwO9Vf6 H4 {
  color: #ffffff;
  text-align: left;
}
.cid-tJlLwO9Vf6 DIV {
  text-align: left;
}
.cid-sIDNF5wi5Q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-sIDNF5wi5Q .media-container-row .mbr-text {
  color: #4501a4;
}
.cid-tJlLGvX5gj.popup-builder {
  background-color: #ffffff;
}
.cid-tJlLGvX5gj.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tJlLGvX5gj.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tJlLGvX5gj .modal-content,
.cid-tJlLGvX5gj .modal-dialog {
  height: auto;
}
.cid-tJlLGvX5gj .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tJlLGvX5gj .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tJlLGvX5gj .form-wrapper .mbr-form .form-group,
  .cid-tJlLGvX5gj .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tJlLGvX5gj .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tJlLGvX5gj .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-tJlLGvX5gj .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tJlLGvX5gj .pt-0 {
  padding-top: 0 !important;
}
.cid-tJlLGvX5gj .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tJlLGvX5gj .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tJlLGvX5gj .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tJlLGvX5gj .modal-open {
  overflow: hidden;
}
.cid-tJlLGvX5gj .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tJlLGvX5gj .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tJlLGvX5gj .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tJlLGvX5gj .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-tJlLGvX5gj .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tJlLGvX5gj .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tJlLGvX5gj .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tJlLGvX5gj .modal-content {
  background: #cc2952;
  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-tJlLGvX5gj .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tJlLGvX5gj .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tJlLGvX5gj .modal-backdrop.fade {
  opacity: 0;
}
.cid-tJlLGvX5gj .modal-backdrop.show {
  opacity: .5;
}
.cid-tJlLGvX5gj .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-tJlLGvX5gj .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tJlLGvX5gj .modal-header {
    padding: 1rem;
  }
}
.cid-tJlLGvX5gj .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tJlLGvX5gj .modal-header .close svg {
  fill: #7f1933;
}
.cid-tJlLGvX5gj .modal-header .close:hover {
  opacity: 1;
}
.cid-tJlLGvX5gj .modal-header .close:focus {
  outline: none;
}
.cid-tJlLGvX5gj .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tJlLGvX5gj .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tJlLGvX5gj .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJlLGvX5gj .modal-body {
    padding: 1rem;
  }
}
.cid-tJlLGvX5gj .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-tJlLGvX5gj .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJlLGvX5gj .modal-footer {
    padding: 1rem;
  }
}
.cid-tJlLGvX5gj .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tJlLGvX5gj .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tJlLGvX5gj .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tJlLGvX5gj .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tJlLGvX5gj .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tJlLGvX5gj .modal-lg,
  .cid-tJlLGvX5gj .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tJlLGvX5gj .modal-xl {
    max-width: 1140px;
  }
}
.cid-tJlLGvX5gj .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tJlLGvX5gj .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-tJlLGvX5gj .form-group {
  margin-bottom: 1rem;
}
.cid-tJlLGvX5gj .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tJlLGvX5gj .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tJlLGvX5gj .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-tJlLGvX5gj .mbr-section-btn {
  margin: 0;
}
.cid-tJlLGvX5gj .mbr-section-btn .btn {
  margin: 0;
}
.cid-sIE2b0mJUT .navbar {
  background: #4501a4;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sIE2b0mJUT .navbar-dropdown.bg-color.transparent.opened {
  background: #4501a4;
}
.cid-sIE2b0mJUT a {
  font-style: normal;
}
.cid-sIE2b0mJUT .show {
  overflow: visible;
}
.cid-sIE2b0mJUT .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sIE2b0mJUT .dropdown-item:active {
  background-color: transparent;
}
.cid-sIE2b0mJUT .nav-link {
  font-weight: 600!important;
}
.cid-sIE2b0mJUT .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sIE2b0mJUT .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-sIE2b0mJUT .nav-item:focus,
.cid-sIE2b0mJUT .nav-link:focus {
  outline: none;
}
.cid-sIE2b0mJUT .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sIE2b0mJUT .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sIE2b0mJUT .menu-logo {
  margin-right: auto;
}
.cid-sIE2b0mJUT .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sIE2b0mJUT .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-sIE2b0mJUT .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600!important;
  padding-right: 2rem;
}
.cid-sIE2b0mJUT .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sIE2b0mJUT .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sIE2b0mJUT .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sIE2b0mJUT .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sIE2b0mJUT .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sIE2b0mJUT .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sIE2b0mJUT .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sIE2b0mJUT .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sIE2b0mJUT .dropdown .dropdown-menu {
  background: #efeeee;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sIE2b0mJUT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #465052 !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-sIE2b0mJUT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIE2b0mJUT .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sIE2b0mJUT .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIE2b0mJUT .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sIE2b0mJUT .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sIE2b0mJUT .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sIE2b0mJUT .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sIE2b0mJUT .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sIE2b0mJUT .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sIE2b0mJUT .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sIE2b0mJUT button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sIE2b0mJUT button.navbar-toggler:focus {
  outline: none;
}
.cid-sIE2b0mJUT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sIE2b0mJUT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sIE2b0mJUT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sIE2b0mJUT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sIE2b0mJUT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sIE2b0mJUT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sIE2b0mJUT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sIE2b0mJUT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sIE2b0mJUT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sIE2b0mJUT .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sIE2b0mJUT .collapsed .btn {
  display: -webkit-flex;
}
.cid-sIE2b0mJUT .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sIE2b0mJUT .collapsed .navbar-collapse.collapsing,
.cid-sIE2b0mJUT .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sIE2b0mJUT .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sIE2b0mJUT .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sIE2b0mJUT .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sIE2b0mJUT .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sIE2b0mJUT .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sIE2b0mJUT .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sIE2b0mJUT .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sIE2b0mJUT .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sIE2b0mJUT .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-sIE2b0mJUT .collapsed button.navbar-toggler {
  display: block;
}
.cid-sIE2b0mJUT .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sIE2b0mJUT .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sIE2b0mJUT .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-sIE2b0mJUT .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sIE2b0mJUT .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sIE2b0mJUT .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;
}
@media (max-width: 991px) {
  .cid-sIE2b0mJUT.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sIE2b0mJUT img {
    height: 3.8rem !important;
  }
  .cid-sIE2b0mJUT .btn {
    display: -webkit-flex;
  }
  .cid-sIE2b0mJUT button.navbar-toggler {
    display: block;
  }
  .cid-sIE2b0mJUT .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sIE2b0mJUT .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sIE2b0mJUT .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sIE2b0mJUT .navbar-collapse.collapsing,
  .cid-sIE2b0mJUT .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sIE2b0mJUT .navbar-collapse.collapsing .navbar-nav,
  .cid-sIE2b0mJUT .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sIE2b0mJUT .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sIE2b0mJUT .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sIE2b0mJUT .navbar-collapse.collapsing .navbar-buttons,
  .cid-sIE2b0mJUT .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sIE2b0mJUT .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sIE2b0mJUT .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sIE2b0mJUT .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-sIE2b0mJUT .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sIE2b0mJUT .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sIE2b0mJUT .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;
  }
}
@media (max-width: 767px) {
  .cid-sIE2b0mJUT .nav-link {
    justify-content: start!important;
  }
  .cid-sIE2b0mJUT .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sIE2b0mJUT .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-sIE2b0mJUT .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sIE2b0mJUT .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sIE2b0mJUT .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sIE2b0mJUT .nav-link:hover,
.cid-sIE2b0mJUT .dropdown-item:hover {
  color: #8cadf8 !important;
}
@media (min-width: 1500px) {
  .cid-sIE2b0mJUT .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-sIE2b0mJUT .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sIE2aJXj2k {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #3a65c6;
}
.cid-sIE2aJXj2k .mbr-section-subtitle {
  color: #767676;
}
.cid-sIE2aJXj2k H2 {
  color: #ffffff;
}
.cid-sIE2aMRAoV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #5c88ec;
}
.cid-sIE2aMRAoV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sIE2aMRAoV H2 {
  color: #ffffff;
}
.cid-sIE2aNkZ1b {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sIE2aNkZ1b .row-element,
.cid-sIE2aNkZ1b .image-element {
  padding: 0;
}
.cid-sIE2aNkZ1b .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sIE2aNkZ1b .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sIE2aNkZ1b .text-content {
  padding: 3rem;
}
.cid-sIE2aNkZ1b .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-sIE2aNkZ1b .text-content {
    padding: 2rem 1rem;
  }
  .cid-sIE2aNkZ1b .mbr-title,
  .cid-sIE2aNkZ1b .mbr-text,
  .cid-sIE2aNkZ1b .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sIE2aNkZ1b .mbr-text,
.cid-sIE2aNkZ1b .mbr-section-btn {
  text-align: left;
  color: #282124;
}
.cid-sIE2aNkZ1b .mbr-title {
  color: #ffffff;
  text-align: left;
}
.cid-sIE2aNVrBX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #5c88ec;
}
.cid-sIE2aNVrBX .mbr-section-subtitle {
  color: #767676;
}
.cid-sIE2aNVrBX H2 {
  color: #ffffff;
}
.cid-sIE2aOlvnS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #3a65c6;
}
.cid-sIE2aOlvnS .mbr-section-subtitle {
  color: #767676;
}
.cid-sIE2aOlvnS H2 {
  color: #ffffff;
}
#custom-html-66 div {
  background-color: #ffffff;
}
.cid-sIE2aXLoYG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIE2aXLoYG .mbr-section-subtitle {
  color: #767676;
}
.cid-sIE2aXLoYG H2 {
  color: #ffffff;
}
.cid-sIE81OTf8U {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #21396f;
}
.cid-sIE81OTf8U .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-sIE81OTf8U .container {
  max-width: 1500px;
}
.cid-sIE81OTf8U .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sIE81OTf8U .container {
    padding: 0 4rem;
  }
}
.cid-sIE81OTf8U .mbr-text,
.cid-sIE81OTf8U .mbr-section-btn {
  color: #efeeee;
}
.cid-sIE81OTf8U .btn {
  width: -webkit-fill-available;
  margin: 0.4rem !important;
}
.cid-sIE81OTf8U .pt-5 {
  padding-top: 4rem !important;
}
@media (max-width: 922px) {
  .cid-sIE81OTf8U .align-left {
    text-align: center;
  }
  .cid-sIE81OTf8U .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-sIE2aYm66n {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-sIE2aYm66n .mbr-section-subtitle {
  color: #767676;
}
.cid-sIE2aYm66n H2 {
  color: #ffffff;
}
.cid-sIE2aZ9Bxm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3a65c6;
}
.cid-sIE2aZ9Bxm .content-block {
  max-width: 350px;
  padding: 4rem 3rem;
  z-index: 5;
  position: relative;
}
.cid-sIE2aZ9Bxm .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/dsc05385-2000x1123.jpg");
  background-position: center;
  background-size: cover;
  z-index: 3;
}
.cid-sIE2aZ9Bxm .block2 {
  background-image: url("../../../assets/images/dsc05385-2000x1123.jpg");
}
.cid-sIE2aZ9Bxm .block2:hover .block2-over {
  opacity: 0;
}
.cid-sIE2aZ9Bxm .block1 {
  background-image: url("../../../assets/images/dsc05385-2000x1123.jpg");
}
.cid-sIE2aZ9Bxm .block1:hover .block1-over {
  opacity: 0;
}
.cid-sIE2aZ9Bxm .block1-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #5c88ec;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-sIE2aZ9Bxm .block2-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #21038c;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-sIE2aZ9Bxm .overlay {
  position: absolute;
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0%;
  background: #4501a4;
  z-index: 2;
  opacity: 1;
}
.cid-sIE2aZ9Bxm .overlay-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 50%;
  transition-delay: 0.3s;
  top: 0;
  z-index: 4;
}
.cid-sIE2aZ9Bxm .col {
  padding: 0;
  display: flex;
  position: relative;
  min-height: 400px;
  justify-content: flex-end;
}
.cid-sIE2aZ9Bxm .col:hover .overlay-wrapper {
  width: 100%;
  right: 0;
  transition-delay: 0s;
}
.cid-sIE2aZ9Bxm .col:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-sIE2aZ9Bxm .col:hover .img-content {
  opacity: 1;
  width: 100%;
  transition-delay: 0.3s;
}
.cid-sIE2aZ9Bxm .col:hover .box-title2,
.cid-sIE2aZ9Bxm .col:hover .box-text2 {
  color: #ffffff;
  transition-delay: 0.3s;
}
.cid-sIE2aZ9Bxm .box-title2,
.cid-sIE2aZ9Bxm .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-sIE2aZ9Bxm .box-content {
  width: 50%;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #4501a4;
}
.cid-sIE2aZ9Bxm .content1 {
  z-index: 5;
  max-width: 450px;
  position: relative;
  transition: all 0.3s;
  transition-delay: 0.3s;
  padding: 4rem 3rem;
}
.cid-sIE2aZ9Bxm .content2 {
  z-index: 2;
  max-width: 450px;
  margin-bottom: -1rem;
  position: relative;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0s;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sIE2aZ9Bxm .img-content {
    opacity: 1;
  }
  .cid-sIE2aZ9Bxm .overlay-wrapper {
    width: 100%;
    right: 0;
  }
  .cid-sIE2aZ9Bxm .box-content {
    width: 100%;
  }
  .cid-sIE2aZ9Bxm .box-title2,
  .cid-sIE2aZ9Bxm .box-text2 {
    color: #ffffff !important;
  }
  .cid-sIE2aZ9Bxm .content-block,
  .cid-sIE2aZ9Bxm .content1 {
    padding: 3rem 1rem;
  }
}
.cid-sIE2aZ9Bxm .box-text1 {
  color: #333333;
}
.cid-sIE2aZ9Bxm .box-title2 {
  color: #cccccc;
}
.cid-sIE2aZ9Bxm .block1-text,
.cid-sIE2aZ9Bxm .mbr-section-btn {
  color: #ffffff;
}
.cid-sIE2aZ9Bxm .block2-text,
.cid-sIE2aZ9Bxm .mbr-section-btn {
  color: #ffffff;
}
.cid-sIE2aZ9Bxm .block2-title {
  color: #333333;
}
.cid-sIE2aZ9Bxm .block2-subtitle {
  color: #ffffff;
}
.cid-sIE2aZ9Bxm .block1-subtitle {
  color: #ffffff;
}
.cid-tJlLu0jEWz {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #cc2952;
}
.cid-tJlLu0jEWz h2 {
  text-align: left;
}
.cid-tJlLu0jEWz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tJlLu0jEWz p {
  color: #767676;
  text-align: left;
}
.cid-tJlLu0jEWz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tJlLu0jEWz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tJlLu0jEWz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tJlLu0jEWz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tJlLu0jEWz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tJlLu0jEWz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tJlLu0jEWz .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-tJlLu0jEWz .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-tJlLu0jEWz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-tJlLu0jEWz .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-tJlLu0jEWz .card-img span {
    font-size: 40px !important;
  }
}
.cid-tJlLu0jEWz .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tJlLu0jEWz H2 {
  color: #ffffff;
  text-align: center;
}
.cid-tJlLu0jEWz P {
  color: #ffffff;
  text-align: center;
}
.cid-tJlLu0jEWz H4 {
  color: #ffffff;
  text-align: left;
}
.cid-tJlLu0jEWz DIV {
  text-align: left;
}
.cid-sIE2aZS61S {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-sIE2aZS61S .media-container-row .mbr-text {
  color: #4501a4;
}
.cid-tJlLGuMwRk.popup-builder {
  background-color: #ffffff;
}
.cid-tJlLGuMwRk.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tJlLGuMwRk.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tJlLGuMwRk .modal-content,
.cid-tJlLGuMwRk .modal-dialog {
  height: auto;
}
.cid-tJlLGuMwRk .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tJlLGuMwRk .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tJlLGuMwRk .form-wrapper .mbr-form .form-group,
  .cid-tJlLGuMwRk .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tJlLGuMwRk .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tJlLGuMwRk .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-tJlLGuMwRk .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tJlLGuMwRk .pt-0 {
  padding-top: 0 !important;
}
.cid-tJlLGuMwRk .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tJlLGuMwRk .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tJlLGuMwRk .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tJlLGuMwRk .modal-open {
  overflow: hidden;
}
.cid-tJlLGuMwRk .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tJlLGuMwRk .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tJlLGuMwRk .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tJlLGuMwRk .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-tJlLGuMwRk .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tJlLGuMwRk .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tJlLGuMwRk .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tJlLGuMwRk .modal-content {
  background: #cc2952;
  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-tJlLGuMwRk .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tJlLGuMwRk .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tJlLGuMwRk .modal-backdrop.fade {
  opacity: 0;
}
.cid-tJlLGuMwRk .modal-backdrop.show {
  opacity: .5;
}
.cid-tJlLGuMwRk .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-tJlLGuMwRk .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tJlLGuMwRk .modal-header {
    padding: 1rem;
  }
}
.cid-tJlLGuMwRk .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tJlLGuMwRk .modal-header .close svg {
  fill: #7f1933;
}
.cid-tJlLGuMwRk .modal-header .close:hover {
  opacity: 1;
}
.cid-tJlLGuMwRk .modal-header .close:focus {
  outline: none;
}
.cid-tJlLGuMwRk .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tJlLGuMwRk .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tJlLGuMwRk .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJlLGuMwRk .modal-body {
    padding: 1rem;
  }
}
.cid-tJlLGuMwRk .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-tJlLGuMwRk .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJlLGuMwRk .modal-footer {
    padding: 1rem;
  }
}
.cid-tJlLGuMwRk .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tJlLGuMwRk .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tJlLGuMwRk .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tJlLGuMwRk .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tJlLGuMwRk .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tJlLGuMwRk .modal-lg,
  .cid-tJlLGuMwRk .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tJlLGuMwRk .modal-xl {
    max-width: 1140px;
  }
}
.cid-tJlLGuMwRk .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tJlLGuMwRk .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-tJlLGuMwRk .form-group {
  margin-bottom: 1rem;
}
.cid-tJlLGuMwRk .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tJlLGuMwRk .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tJlLGuMwRk .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-tJlLGuMwRk .mbr-section-btn {
  margin: 0;
}
.cid-tJlLGuMwRk .mbr-section-btn .btn {
  margin: 0;
}
