body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
}
.display-4 > .mbr-iconfont {
  font-size: 0.96rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.48rem;
    font-size: calc( 0.86rem + (0.6 - 0.86) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.86rem + (0.6 - 0.86) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #2bdc9d !important;
}
.bg-success {
  background-color: #c1c1c1 !important;
}
.bg-info {
  background-color: #3b67d9 !important;
}
.bg-warning {
  background-color: #24d194 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ffb649 !important;
  border-color: #ffb649 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #fb9700 !important;
  border-color: #fb9700 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #fb9700 !important;
  border-color: #fb9700 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #3b67d9 !important;
  border-color: #3b67d9 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #2046a7 !important;
  border-color: #2046a7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2046a7 !important;
  border-color: #2046a7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #24d194 !important;
  border-color: #24d194 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #199066 !important;
  border-color: #199066 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #199066 !important;
  border-color: #199066 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #178a61 !important;
  color: #178a61 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #e28700 !important;
  color: #e28700 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ffb649 !important;
  border-color: #ffb649 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb649 !important;
  border-color: #ffb649 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #1c3d92 !important;
  color: #1c3d92 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #3b67d9 !important;
  border-color: #3b67d9 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #3b67d9 !important;
  border-color: #3b67d9 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #157a56 !important;
  color: #157a56 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #24d194 !important;
  border-color: #24d194 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #24d194 !important;
  border-color: #24d194 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #2bdc9d !important;
}
.text-secondary {
  color: #ffb649 !important;
}
.text-success {
  color: #c1c1c1 !important;
}
.text-info {
  color: #3b67d9 !important;
}
.text-warning {
  color: #24d194 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #178a61 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e28700 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #8e8e8e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #1c3d92 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #157a56 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #c1c1c1;
}
.alert-info {
  background-color: #3b67d9;
}
.alert-warning {
  background-color: #24d194;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn {
  border-radius: 100px;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  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: #2bdc9d;
  border-color: #2bdc9d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #2bdc9d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #daf9ee;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #e6ecfa;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #cbf6e7;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #2bdc9d;
}
/* 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;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #2bdc9d;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #2bdc9d;
}
.btn-social + .btn {
  margin-left: .1rem;
}
@media (min-width: 768px) {
  .rounded-left {
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
  }
  .rounded-left {
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #2bdc9d;
  color: #ffffff;
}
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #2bdc9d;
  border-bottom-color: #2bdc9d;
}
.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: #2bdc9d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffb649 !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='%232bdc9d' %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-ssn7ohIzCG {
  background-image: url("../../../assets/images/xmenu-logo-00-942x942.png");
}
@media (min-width: 992px) {
  .cid-ssn7ohIzCG .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ssn7ohIzCG .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-ssn7ohIzCG .mbr-text {
    text-align: center;
  }
}
.cid-ssnEF7Kl3Q {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ssnEF7Kl3Q .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-gGWz4STXJn .mbr-section {
  text-align: center;
  color: #fff;
}
.cid-gGWz4STXJn p {
  display: inline;
  font-size: 26px;
  color: #fff;
}
.cid-gGWz4STXJn .marquee-rtl {
  width: 31%;
  max-width: 100%;
  overflow: hidden;
}
.cid-gGWz4STXJn .marquee-rtl > :first-child {
  display: inline-block;
  padding-right: 2em;
  padding-left: 100%;
  white-space: nowrap;
  animation: defilement-rtl 36s infinite linear;
  animation-iteration-count: 100;
}
.cid-gGWz4STXJn .marquee-rtl:hover :first-child {
  animation-play-state: paused;
}
@keyframes defilement-rtl {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-gGWz4STXJn .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-gGWz4STXJn .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-gGWz4STXJn .navbar-fixed-top {
  padding-top: 0;
}
.cid-gGWz4STXJn .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-gGWz4STXJn .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-gGWz4STXJn .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-gGWz4STXJn .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-gGWz4STXJn .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-gGWz4STXJn .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-gGWz4STXJn .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-gGWz4STXJn .menu-content-top {
  background: #012659;
  display: none;
  max-width: 100%;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-gGWz4STXJn .dropdown-item {
  padding: 0;
}
.cid-gGWz4STXJn .dropdown-item,
.cid-gGWz4STXJn .nav-link,
.cid-gGWz4STXJn .brand-name {
  font-style: normal;
}
.cid-gGWz4STXJn .dropdown-item:hover,
.cid-gGWz4STXJn .nav-link:hover,
.cid-gGWz4STXJn .brand-name:hover {
  color: #2bdc9d !important;
}
.cid-gGWz4STXJn .dropdown-menu {
  background-color: #0a1c44;
}
.cid-gGWz4STXJn .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-gGWz4STXJn .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-gGWz4STXJn .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-gGWz4STXJn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-gGWz4STXJn .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-gGWz4STXJn .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-gGWz4STXJn .content-text {
  margin-bottom: 0;
}
.cid-gGWz4STXJn .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-gGWz4STXJn .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #2bdc9d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-gGWz4STXJn .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-gGWz4STXJn .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-gGWz4STXJn .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-gGWz4STXJn .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-gGWz4STXJn .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-gGWz4STXJn .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-gGWz4STXJn .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-gGWz4STXJn .nav-dropdown .link {
  font-weight: 400;
}
.cid-gGWz4STXJn .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-gGWz4STXJn .content-right-side {
  text-align: center;
}
.cid-gGWz4STXJn .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-gGWz4STXJn .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-gGWz4STXJn .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-gGWz4STXJn .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-gGWz4STXJn .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-gGWz4STXJn .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-gGWz4STXJn .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-gGWz4STXJn .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-gGWz4STXJn .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-gGWz4STXJn .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-gGWz4STXJn .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-gGWz4STXJn .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-gGWz4STXJn .menu-content-top {
    padding-top: 0px;
    padding-bottom: 0px;
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-gGWz4STXJn .navbar {
    display: block;
    padding: 0;
  }
  .cid-gGWz4STXJn .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-gGWz4STXJn .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-gGWz4STXJn .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-gGWz4STXJn .navbar-toggler {
    display: none;
  }
  .cid-gGWz4STXJn .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-gGWz4STXJn .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-gGWz4STXJn .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-gGWz4STXJn .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-gGWz4STXJn .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-gGWz4STXJn .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-gGWz4STXJn .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-gGWz4STXJn .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-gGWz4STXJn .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-gGWz4STXJn .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-gGWz4STXJn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-gGWz4STXJn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-gGWz4STXJn .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-gGWz4STXJn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-gGWz4STXJn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-gGWz4STXJn .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-gGWz4STXJn .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-gGWz4STXJn .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-gGWz4STXJn .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-gGWz4STXJn .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-gGWz4STXJn .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-gGWz4STXJn .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-gGWz4STXJn .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-gGWz4STXJn button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-gGWz4STXJn button.navbar-toggler:focus {
  outline: none;
}
.cid-gGWz4STXJn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #51aafa;
}
.cid-gGWz4STXJn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-gGWz4STXJn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-gGWz4STXJn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-gGWz4STXJn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-gGWz4STXJn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-gGWz4STXJn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-gGWz4STXJn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-gGWz4STXJn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-gGWz4STXJn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-gGWz4STXJn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-gGWz4STXJn .collapsed .btn {
  display: flex;
}
.cid-gGWz4STXJn .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-gGWz4STXJn .collapsed .navbar-collapse.collapsing,
.cid-gGWz4STXJn .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-gGWz4STXJn .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-gGWz4STXJn .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-gGWz4STXJn .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-gGWz4STXJn .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-gGWz4STXJn .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-gGWz4STXJn .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-gGWz4STXJn .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-gGWz4STXJn .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-gGWz4STXJn .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-gGWz4STXJn .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-gGWz4STXJn .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-gGWz4STXJn .collapsed button.navbar-toggler {
  display: block;
}
.cid-gGWz4STXJn .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-gGWz4STXJn .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-gGWz4STXJn .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-gGWz4STXJn .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-gGWz4STXJn .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-gGWz4STXJn .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-gGWz4STXJn .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-gGWz4STXJn .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-gGWz4STXJn .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-gGWz4STXJn .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-gGWz4STXJn .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-gGWz4STXJn .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-gGWz4STXJn .navbar-collapse.collapsing,
  .cid-gGWz4STXJn .navbar-collapse.show {
    display: block !important;
  }
  .cid-gGWz4STXJn .navbar-collapse.collapsing .navbar-nav,
  .cid-gGWz4STXJn .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-gGWz4STXJn .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-gGWz4STXJn .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-gGWz4STXJn .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-gGWz4STXJn .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-gGWz4STXJn .navbar-collapse.collapsing .navbar-buttons,
  .cid-gGWz4STXJn .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-gGWz4STXJn .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-gGWz4STXJn .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-gGWz4STXJn img {
    height: 3.8rem !important;
  }
  .cid-gGWz4STXJn .btn {
    display: flex;
  }
  .cid-gGWz4STXJn button.navbar-toggler {
    display: block;
  }
  .cid-gGWz4STXJn .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-gGWz4STXJn .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-gGWz4STXJn .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-gGWz4STXJn .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-gGWz4STXJn .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-gGWz4STXJn .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-gGWz4STXJn .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-gGWz4STXJn .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-gGWz4STXJn .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-gGWz4STXJn .nav-link:focus {
  outline: none;
}
.cid-gGWz4STXJn .navbar-toggler {
  position: relative;
}
.cid-gGWz4STXJn .dropdown-item.active,
.cid-gGWz4STXJn .dropdown-item:active {
  color: initial;
}
.cid-gGWz4STXJn .widget-title,
.cid-gGWz4STXJn .widget-icon {
  color: #e9e9e9;
}
.cid-gGWz4STXJn .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-gGWz4STXJn .menu-logo {
    display: none;
  }
  .cid-gGWz4STXJn .navbar {
    padding: 0;
  }
  .cid-gGWz4STXJn .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-gGWz4STXJn button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-gGWz4STXJn .media-container-row .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-gGWz4STXJn .icon-bar {
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-gGWz4STXJn .icon-bar a:hover {
  background-color: #ff0040;
  width: 100px;
}
.cid-gGWz4STXJn .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 2px;
  border-radius: 17px;
}
.cid-gGWz4STXJn .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-gGWz4STXJn .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-gGWz4STXJn .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-gGWz4STXJn .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-gGWz4STXJn .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-gGWz4STXJn .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-gGWz4STXJn .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-gGWz4STXJn .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-gGWz4STXJn .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-gGWz4STXJn .corner-ribbon {
  z-index: 10000;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-gGWz4STXJn .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-gGWz4STXJn P {
  color: #232323;
  text-align: center;
}
.cid-gGWz4STXJn DIV {
  color: #ffffff;
}
.cid-ssnEtiCnrA {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #012659;
}
.cid-ssnEtiCnrA .container-fluid {
  padding: 0 5rem;
}
.cid-ssnEtiCnrA .animated-element {
  color: #efefef;
}
.cid-ssnEtiCnrA .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-ssnEtiCnrA .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-ssnEtiCnrA .container-fluid {
    padding: 0 1rem;
  }
}
.cid-ssnEtiCnrA .mbr-section-subtitle,
.cid-ssnEtiCnrA .mbr-section-btn {
  text-align: center;
}
.cid-ssnEtiCnrA .mbr-section-title {
  text-align: center;
}
.cid-ssnEtm5vSC {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #012659;
}
.cid-ssozifyi8S {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #012659;
}
.cid-ssozifyi8S .container-fluid {
  padding: 0 5rem;
}
.cid-ssozifyi8S .animated-element {
  color: #efefef;
}
.cid-ssozifyi8S .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-ssozifyi8S .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-ssozifyi8S .container-fluid {
    padding: 0 1rem;
  }
}
.cid-ssozifyi8S .mbr-section-subtitle,
.cid-ssozifyi8S .mbr-section-btn {
  text-align: center;
}
.cid-ssozifyi8S .mbr-section-title {
  text-align: center;
}
.cid-ssozihHhAi {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ssozihHhAi .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-sstGhBTew2 {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #012659;
}
.cid-sstGhBTew2 .container-fluid {
  padding: 0 5rem;
}
.cid-sstGhBTew2 .animated-element {
  color: #efefef;
}
.cid-sstGhBTew2 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-sstGhBTew2 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sstGhBTew2 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sstGhBTew2 .mbr-section-subtitle,
.cid-sstGhBTew2 .mbr-section-btn {
  text-align: center;
}
.cid-sstGhBTew2 .mbr-section-title {
  text-align: center;
}
.cid-sstGhDHWIC {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #012659;
}
.cid-sstGhEv35f {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sstGhEv35f .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-ssLNpZDyGk {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/xmenu-bg-hp-001c-1728x3072.png");
}
.cid-ssLNpZDyGk .container-fluid {
  padding: 0 5rem;
}
.cid-ssLNpZDyGk .animated-element {
  color: #ffffff;
}
.cid-ssLNpZDyGk .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-ssLNpZDyGk .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-ssLNpZDyGk .container-fluid {
    padding: 0 1rem;
  }
}
.cid-ssLNpZDyGk .mbr-section-subtitle,
.cid-ssLNpZDyGk .mbr-section-btn {
  text-align: center;
  color: #cccccc;
}
.cid-ssLNpZDyGk .mbr-section-title {
  text-align: center;
  color: #ffb649;
}
.cid-ssLNq0XDWC {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ssLNq0XDWC .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-stC4gETIwx {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #012659;
}
.cid-stC4gETIwx .container-fluid {
  padding: 0 5rem;
}
.cid-stC4gETIwx .animated-element {
  color: #efefef;
}
.cid-stC4gETIwx .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-stC4gETIwx .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-stC4gETIwx .container-fluid {
    padding: 0 1rem;
  }
}
.cid-stC4gETIwx .mbr-section-subtitle,
.cid-stC4gETIwx .mbr-section-btn {
  text-align: center;
}
.cid-stC4gETIwx .mbr-section-title {
  text-align: center;
}
.cid-stC4gGO3wz {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #012659;
}
.cid-stC4gHBXfL {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-stC4gHBXfL .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-stC4aWCTbT {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #012659;
}
.cid-stC4aWCTbT .container-fluid {
  padding: 0 5rem;
}
.cid-stC4aWCTbT .animated-element {
  color: #efefef;
}
.cid-stC4aWCTbT .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-stC4aWCTbT .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-stC4aWCTbT .container-fluid {
    padding: 0 1rem;
  }
}
.cid-stC4aWCTbT .mbr-section-subtitle,
.cid-stC4aWCTbT .mbr-section-btn {
  text-align: center;
}
.cid-stC4aWCTbT .mbr-section-title {
  text-align: center;
}
.cid-stC4aYMAbf {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #012659;
}
.cid-stC6acJWIs {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-stC6acJWIs .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-stXMTTSDuw {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #012659;
}
.cid-stXMTTSDuw .container-fluid {
  padding: 0 5rem;
}
.cid-stXMTTSDuw .animated-element {
  color: #efefef;
}
.cid-stXMTTSDuw .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-stXMTTSDuw .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-stXMTTSDuw .container-fluid {
    padding: 0 1rem;
  }
}
.cid-stXMTTSDuw .mbr-section-subtitle,
.cid-stXMTTSDuw .mbr-section-btn {
  text-align: center;
}
.cid-stXMTTSDuw .mbr-section-title {
  text-align: center;
}
.cid-stXMTWLg2j {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #012659;
}
.cid-t42ndIyKGG.popup-builder {
  background-color: #ffffff;
}
.cid-t42ndIyKGG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t42ndIyKGG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t42ndIyKGG .modal-content,
.cid-t42ndIyKGG .modal-dialog {
  height: auto;
}
.cid-t42ndIyKGG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t42ndIyKGG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t42ndIyKGG .form-wrapper .mbr-form .form-group,
  .cid-t42ndIyKGG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t42ndIyKGG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t42ndIyKGG .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-t42ndIyKGG .mbr-text {
  text-align: center;
}
.cid-t42ndIyKGG .pt-0 {
  padding-top: 0 !important;
}
.cid-t42ndIyKGG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t42ndIyKGG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t42ndIyKGG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t42ndIyKGG .modal-open {
  overflow: hidden;
}
.cid-t42ndIyKGG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t42ndIyKGG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t42ndIyKGG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t42ndIyKGG .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-t42ndIyKGG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t42ndIyKGG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t42ndIyKGG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t42ndIyKGG .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t42ndIyKGG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t42ndIyKGG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t42ndIyKGG .modal-backdrop.fade {
  opacity: 0;
}
.cid-t42ndIyKGG .modal-backdrop.show {
  opacity: .5;
}
.cid-t42ndIyKGG .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-t42ndIyKGG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t42ndIyKGG .modal-header {
    padding: 1rem;
  }
}
.cid-t42ndIyKGG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t42ndIyKGG .modal-header .close svg {
  fill: #08579f;
}
.cid-t42ndIyKGG .modal-header .close:hover {
  opacity: 1;
}
.cid-t42ndIyKGG .modal-header .close:focus {
  outline: none;
}
.cid-t42ndIyKGG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #012659;
}
.cid-t42ndIyKGG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t42ndIyKGG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t42ndIyKGG .modal-body {
    padding: 1rem;
  }
}
.cid-t42ndIyKGG .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-t42ndIyKGG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t42ndIyKGG .modal-footer {
    padding: 1rem;
  }
}
.cid-t42ndIyKGG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t42ndIyKGG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t42ndIyKGG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t42ndIyKGG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t42ndIyKGG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t42ndIyKGG .modal-lg,
  .cid-t42ndIyKGG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t42ndIyKGG .modal-xl {
    max-width: 1140px;
  }
}
.cid-t42ndIyKGG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t42ndIyKGG .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-t42ndIyKGG .form-group {
  margin-bottom: 1rem;
}
.cid-t42ndIyKGG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t42ndIyKGG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t42ndIyKGG .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-t42ndIyKGG .mbr-section-btn {
  margin: 0;
}
.cid-t42ndIyKGG .mbr-section-btn .btn {
  margin: 0;
}
.cid-stXMQhbdyf {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #012659;
}
.cid-stXMQhbdyf .container-fluid {
  padding: 0 5rem;
}
.cid-stXMQhbdyf .animated-element {
  color: #efefef;
}
.cid-stXMQhbdyf .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-stXMQhbdyf .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-stXMQhbdyf .container-fluid {
    padding: 0 1rem;
  }
}
.cid-stXMQhbdyf .mbr-section-subtitle,
.cid-stXMQhbdyf .mbr-section-btn {
  text-align: center;
}
.cid-stXMQhbdyf .mbr-section-title {
  text-align: center;
}
.cid-stXMQkvpFi {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #012659;
}
.cid-stXPLwdWzy {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #012659;
}
.cid-stXPLwdWzy .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stXPLwdWzy .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-stXPLwdWzy .btn {
  margin-bottom: 2rem;
}
.cid-stXPLwdWzy .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-stXPLwdWzy .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-stXPLwdWzy .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-stXPLwdWzy .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-stXPLwdWzy .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-stXPLwdWzy .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-stXPLwdWzy .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-stXPLwdWzy .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-stXPLwdWzy .links {
  color: #ffffff;
  text-align: center;
}
.cid-sU82FcSGGL.popup-builder {
  background-color: #ffffff;
}
.cid-sU82FcSGGL.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sU82FcSGGL.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sU82FcSGGL .modal-content,
.cid-sU82FcSGGL .modal-dialog {
  height: auto;
}
.cid-sU82FcSGGL .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sU82FcSGGL .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sU82FcSGGL .form-wrapper .mbr-form .form-group,
  .cid-sU82FcSGGL .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sU82FcSGGL .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sU82FcSGGL .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-sU82FcSGGL .mbr-text {
  text-align: left;
}
.cid-sU82FcSGGL .pt-0 {
  padding-top: 0 !important;
}
.cid-sU82FcSGGL .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sU82FcSGGL .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sU82FcSGGL .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sU82FcSGGL .modal-open {
  overflow: hidden;
}
.cid-sU82FcSGGL .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sU82FcSGGL .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sU82FcSGGL .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sU82FcSGGL .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-sU82FcSGGL .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sU82FcSGGL .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sU82FcSGGL .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sU82FcSGGL .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sU82FcSGGL .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sU82FcSGGL .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sU82FcSGGL .modal-backdrop.fade {
  opacity: 0;
}
.cid-sU82FcSGGL .modal-backdrop.show {
  opacity: .5;
}
.cid-sU82FcSGGL .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-sU82FcSGGL .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sU82FcSGGL .modal-header {
    padding: 1rem;
  }
}
.cid-sU82FcSGGL .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sU82FcSGGL .modal-header .close svg {
  fill: #08579f;
}
.cid-sU82FcSGGL .modal-header .close:hover {
  opacity: 1;
}
.cid-sU82FcSGGL .modal-header .close:focus {
  outline: none;
}
.cid-sU82FcSGGL .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #012659;
}
.cid-sU82FcSGGL .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sU82FcSGGL .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sU82FcSGGL .modal-body {
    padding: 1rem;
  }
}
.cid-sU82FcSGGL .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-sU82FcSGGL .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sU82FcSGGL .modal-footer {
    padding: 1rem;
  }
}
.cid-sU82FcSGGL .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sU82FcSGGL .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sU82FcSGGL .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sU82FcSGGL .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sU82FcSGGL .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sU82FcSGGL .modal-lg,
  .cid-sU82FcSGGL .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sU82FcSGGL .modal-xl {
    max-width: 1140px;
  }
}
.cid-sU82FcSGGL .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sU82FcSGGL .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-sU82FcSGGL .form-group {
  margin-bottom: 1rem;
}
.cid-sU82FcSGGL .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sU82FcSGGL .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sU82FcSGGL .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-sU82FcSGGL .mbr-section-btn {
  margin: 0;
}
.cid-sU82FcSGGL .mbr-section-btn .btn {
  margin: 0;
}
.cid-sulUbQSCKI {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/xmenu-bg-hp-001c-1728x3072.png");
}
.cid-sulUbQSCKI .container-fluid {
  padding: 0 5rem;
}
.cid-sulUbQSCKI .animated-element {
  color: #c1c1c1;
}
.cid-sulUbQSCKI .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-sulUbQSCKI .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sulUbQSCKI .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sulUbQSCKI .mbr-section-subtitle,
.cid-sulUbQSCKI .mbr-section-btn {
  text-align: center;
  color: #f4f8fa;
}
.cid-sulUbQSCKI .mbr-section-title {
  text-align: center;
  color: #ffb649;
}
.cid-sulUbQSCKI .mbr-section-subtitle,
.cid-sulUbQSCKI .mbr-section-btn DIV {
  text-align: center;
}
.cid-sulUbSrKbu {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sulUbSrKbu .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-ssoIxPRGut {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #232323;
}
.cid-ssoIxPRGut .container-fluid {
  padding: 0 5rem;
}
.cid-ssoIxPRGut .animated-element {
  color: #efefef;
}
.cid-ssoIxPRGut .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-ssoIxPRGut .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-ssoIxPRGut .container-fluid {
    padding: 0 1rem;
  }
}
.cid-ssoIxPRGut .mbr-section-subtitle,
.cid-ssoIxPRGut .mbr-section-btn {
  text-align: center;
}
.cid-ssoIxPRGut .mbr-section-title {
  text-align: center;
}
.cid-ssoIxSAB70 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ssoIxSAB70 .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-svgy96qcOJ {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #012659;
}
.cid-svgy96qcOJ .container-fluid {
  padding: 0 5rem;
}
.cid-svgy96qcOJ .animated-element {
  color: #efefef;
}
.cid-svgy96qcOJ .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-svgy96qcOJ .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-svgy96qcOJ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-svgy96qcOJ .mbr-section-subtitle,
.cid-svgy96qcOJ .mbr-section-btn {
  text-align: center;
}
.cid-svgy96qcOJ .mbr-section-title {
  text-align: center;
}
.cid-svgy98uplo {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #012659;
}
.cid-svgy99cCH8 {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #012659;
}
.cid-svgy99cCH8 .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-svgy99cCH8 .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-svgy99cCH8 .btn {
  margin-bottom: 2rem;
}
.cid-svgy99cCH8 .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-svgy99cCH8 .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svgy99cCH8 .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-svgy99cCH8 .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-svgy99cCH8 .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-svgy99cCH8 .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-svgy99cCH8 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-svgy99cCH8 .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-svgy99cCH8 .links {
  color: #ffffff;
  text-align: center;
}
.cid-sPBzPIfqEq {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #012659;
}
.cid-sPBzPIfqEq .container-fluid {
  padding: 0 5rem;
}
.cid-sPBzPIfqEq .animated-element {
  color: #efefef;
}
.cid-sPBzPIfqEq .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-sPBzPIfqEq .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sPBzPIfqEq .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sPBzPIfqEq .mbr-section-subtitle,
.cid-sPBzPIfqEq .mbr-section-btn {
  text-align: center;
}
.cid-sPBzPIfqEq .mbr-section-title {
  text-align: center;
}
.cid-sPBzPJ5O0j {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #012659;
}
.cid-sPBzPJlOd6 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sPBzPJlOd6 .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-sPBzNeZoxP {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #012659;
}
.cid-sPBzNeZoxP .container-fluid {
  padding: 0 5rem;
}
.cid-sPBzNeZoxP .animated-element {
  color: #efefef;
}
.cid-sPBzNeZoxP .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-sPBzNeZoxP .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sPBzNeZoxP .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sPBzNeZoxP .mbr-section-subtitle,
.cid-sPBzNeZoxP .mbr-section-btn {
  text-align: center;
}
.cid-sPBzNeZoxP .mbr-section-title {
  text-align: center;
}
.cid-sPBzNfw6ye {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #012659;
}
.cid-sPHfGlizaE {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #012659;
}
.cid-sPHfGlizaE .container-fluid {
  padding: 0 5rem;
}
.cid-sPHfGlizaE .animated-element {
  color: #efefef;
}
.cid-sPHfGlizaE .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-sPHfGlizaE .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sPHfGlizaE .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sPHfGlizaE .mbr-section-subtitle,
.cid-sPHfGlizaE .mbr-section-btn {
  text-align: center;
}
.cid-sPHfGlizaE .mbr-section-title {
  text-align: center;
}
.cid-sPHfGmkly5 {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #012659;
}
.cid-sPHioPnPlb {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sPHioPnPlb .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-t42mVkclyA {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #012659;
}
.cid-t42mVkclyA .container-fluid {
  padding: 0 5rem;
}
.cid-t42mVkclyA .animated-element {
  color: #efefef;
}
.cid-t42mVkclyA .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-t42mVkclyA .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-t42mVkclyA .container-fluid {
    padding: 0 1rem;
  }
}
.cid-t42mVkclyA .mbr-section-subtitle,
.cid-t42mVkclyA .mbr-section-btn {
  text-align: center;
}
.cid-t42mVkclyA .mbr-section-title {
  text-align: center;
}
.cid-t42mVltIu0 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #012659;
}
.cid-t6LWFVGiAR {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #012659;
}
.cid-t6LWFVGiAR .container-fluid {
  padding: 0 5rem;
}
.cid-t6LWFVGiAR .animated-element {
  color: #efefef;
}
.cid-t6LWFVGiAR .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-t6LWFVGiAR .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-t6LWFVGiAR .container-fluid {
    padding: 0 1rem;
  }
}
.cid-t6LWFVGiAR .mbr-section-subtitle,
.cid-t6LWFVGiAR .mbr-section-btn {
  text-align: center;
}
.cid-t6LWFVGiAR .mbr-section-title {
  text-align: center;
}
.cid-t6LWFWjcp4 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #012659;
}
.cid-t6M3L1DO7w {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #012659;
}
.cid-t6M3L1DO7w P {
  color: #767676;
}
.cid-t6M3L1DO7w hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-t6LWFWtZpG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #012659;
}
.cid-t6LWFWtZpG .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t6LWFWtZpG .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-t6LWFWtZpG .btn {
  margin-bottom: 2rem;
}
.cid-t6LWFWtZpG .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-t6LWFWtZpG .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t6LWFWtZpG .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-t6LWFWtZpG .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t6LWFWtZpG .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t6LWFWtZpG .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-t6LWFWtZpG .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-t6LWFWtZpG .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-t6LWFWtZpG .links {
  color: #ffffff;
  text-align: center;
}
.cid-t6MaFoJ8OF {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t6MaFoJ8OF .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-t6UEvf97xD {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #012659;
}
.cid-t6UEvf97xD .container-fluid {
  padding: 0 5rem;
}
.cid-t6UEvf97xD .animated-element {
  color: #efefef;
}
.cid-t6UEvf97xD .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-t6UEvf97xD .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-t6UEvf97xD .container-fluid {
    padding: 0 1rem;
  }
}
.cid-t6UEvf97xD .mbr-section-subtitle,
.cid-t6UEvf97xD .mbr-section-btn {
  text-align: center;
  color: #efefef;
}
.cid-t6UEvf97xD .mbr-section-title {
  text-align: center;
}
.cid-t6UEvfFLuc {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #012659;
}
.cid-t6UEvg75W3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #012659;
}
.cid-t6UEvg75W3 .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t6UEvg75W3 .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-t6UEvg75W3 .btn {
  margin-bottom: 2rem;
}
.cid-t6UEvg75W3 .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-t6UEvg75W3 .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t6UEvg75W3 .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-t6UEvg75W3 .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t6UEvg75W3 .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t6UEvg75W3 .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-t6UEvg75W3 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-t6UEvg75W3 .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-t6UEvg75W3 .links {
  color: #ffffff;
  text-align: center;
}
.cid-t6UEvgtmFO {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t6UEvgtmFO .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-t7TJ63cjR0 {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #012659;
}
.cid-t7TJ63cjR0 .container-fluid {
  padding: 0 5rem;
}
.cid-t7TJ63cjR0 .animated-element {
  color: #efefef;
}
.cid-t7TJ63cjR0 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-t7TJ63cjR0 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-t7TJ63cjR0 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-t7TJ63cjR0 .mbr-section-subtitle,
.cid-t7TJ63cjR0 .mbr-section-btn {
  text-align: center;
  color: #ffb649;
}
.cid-t7TJ63cjR0 .mbr-section-title {
  text-align: center;
}
.cid-t7TJ63O5RJ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #012659;
}
.cid-t7TJ641Bbp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #012659;
}
.cid-t7TJ641Bbp P {
  color: #767676;
}
.cid-t7TJ641Bbp hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-t7TJ64kXZ8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #012659;
}
.cid-t7TJ64kXZ8 .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t7TJ64kXZ8 .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-t7TJ64kXZ8 .btn {
  margin-bottom: 2rem;
}
.cid-t7TJ64kXZ8 .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-t7TJ64kXZ8 .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t7TJ64kXZ8 .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-t7TJ64kXZ8 .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t7TJ64kXZ8 .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t7TJ64kXZ8 .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-t7TJ64kXZ8 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-t7TJ64kXZ8 .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-t7TJ64kXZ8 .links {
  color: #ffffff;
  text-align: center;
}
.cid-t7TJ64Pm6R {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t7TJ64Pm6R .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-t7XVQK2agR {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-t7XVQK2agR .container-fluid {
  padding: 0 5rem;
}
.cid-t7XVQK2agR .animated-element {
  color: #efefef;
}
.cid-t7XVQK2agR .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-t7XVQK2agR .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-t7XVQK2agR .container-fluid {
    padding: 0 1rem;
  }
}
.cid-t7XVQK2agR .mbr-section-subtitle,
.cid-t7XVQK2agR .mbr-section-btn {
  text-align: center;
  color: #ffb649;
}
.cid-t7XVQK2agR .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-t7XVQKUsIN {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-t7XVQL7VyW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-t7XVQL7VyW P {
  color: #767676;
}
.cid-t7XVQL7VyW hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-t7XVQLoGdV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-t7XVQLoGdV .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t7XVQLoGdV .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-t7XVQLoGdV .btn {
  margin-bottom: 2rem;
}
.cid-t7XVQLoGdV .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-t7XVQLoGdV .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t7XVQLoGdV .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-t7XVQLoGdV .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t7XVQLoGdV .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t7XVQLoGdV .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-t7XVQLoGdV .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-t7XVQLoGdV .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-t7XVQLoGdV .links {
  color: #ffffff;
  text-align: center;
}
.cid-t7XVQLM9aW {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t7XVQLM9aW .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-tblM3Tmvi4 {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #001c42;
}
.cid-tblM3Tmvi4 .container-fluid {
  padding: 0 5rem;
}
.cid-tblM3Tmvi4 .animated-element {
  color: #efefef;
}
.cid-tblM3Tmvi4 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tblM3Tmvi4 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tblM3Tmvi4 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tblM3Tmvi4 .mbr-section-subtitle,
.cid-tblM3Tmvi4 .mbr-section-btn {
  text-align: center;
}
.cid-tblM3Tmvi4 .mbr-section-title {
  text-align: center;
}
.cid-tblM3Ua7OF {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #001c42;
}
.cid-tblM3UMtkc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #001c42;
}
.cid-tblM3UMtkc .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tblM3UMtkc .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-tblM3UMtkc .btn {
  margin-bottom: 2rem;
}
.cid-tblM3UMtkc .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-tblM3UMtkc .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tblM3UMtkc .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-tblM3UMtkc .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tblM3UMtkc .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tblM3UMtkc .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-tblM3UMtkc .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-tblM3UMtkc .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-tblM3UMtkc .links {
  color: #ffffff;
  text-align: center;
}
.cid-tblM3VfVPK {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tblM3VfVPK .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-tcNuPeaque.popup-builder {
  background-color: #ffffff;
}
.cid-tcNuPeaque.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tcNuPeaque.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tcNuPeaque .modal-content,
.cid-tcNuPeaque .modal-dialog {
  height: auto;
}
.cid-tcNuPeaque .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tcNuPeaque .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tcNuPeaque .form-wrapper .mbr-form .form-group,
  .cid-tcNuPeaque .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tcNuPeaque .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tcNuPeaque .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-tcNuPeaque .mbr-text {
  text-align: center;
}
.cid-tcNuPeaque .pt-0 {
  padding-top: 0 !important;
}
.cid-tcNuPeaque .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tcNuPeaque .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tcNuPeaque .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tcNuPeaque .modal-open {
  overflow: hidden;
}
.cid-tcNuPeaque .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tcNuPeaque .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tcNuPeaque .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tcNuPeaque .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-tcNuPeaque .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tcNuPeaque .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tcNuPeaque .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tcNuPeaque .modal-content {
  background: #000000;
  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-tcNuPeaque .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tcNuPeaque .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tcNuPeaque .modal-backdrop.fade {
  opacity: 0;
}
.cid-tcNuPeaque .modal-backdrop.show {
  opacity: .5;
}
.cid-tcNuPeaque .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-tcNuPeaque .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tcNuPeaque .modal-header {
    padding: 1rem;
  }
}
.cid-tcNuPeaque .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tcNuPeaque .modal-header .close svg {
  fill: #ffb649;
}
.cid-tcNuPeaque .modal-header .close:hover {
  opacity: 1;
}
.cid-tcNuPeaque .modal-header .close:focus {
  outline: none;
}
.cid-tcNuPeaque .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tcNuPeaque .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tcNuPeaque .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tcNuPeaque .modal-body {
    padding: 1rem;
  }
}
.cid-tcNuPeaque .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-tcNuPeaque .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tcNuPeaque .modal-footer {
    padding: 1rem;
  }
}
.cid-tcNuPeaque .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tcNuPeaque .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tcNuPeaque .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tcNuPeaque .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tcNuPeaque .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tcNuPeaque .modal-lg,
  .cid-tcNuPeaque .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tcNuPeaque .modal-xl {
    max-width: 1140px;
  }
}
.cid-tcNuPeaque .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tcNuPeaque .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-tcNuPeaque .form-group {
  margin-bottom: 1rem;
}
.cid-tcNuPeaque .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tcNuPeaque .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tcNuPeaque .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-tcNuPeaque .mbr-section-btn {
  margin: 0;
}
.cid-tcNuPeaque .mbr-section-btn .btn {
  margin: 0;
}
.cid-tgzHlG5FCY {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tgzHlG5FCY .container-fluid {
  padding: 0 5rem;
}
.cid-tgzHlG5FCY .animated-element {
  color: #efefef;
}
.cid-tgzHlG5FCY .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tgzHlG5FCY .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tgzHlG5FCY .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tgzHlG5FCY .mbr-section-subtitle,
.cid-tgzHlG5FCY .mbr-section-btn {
  text-align: center;
  color: #444444;
}
.cid-tgzHlG5FCY .mbr-section-title {
  text-align: center;
  color: #444444;
}
.cid-tgzHlHet1C {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tgzHlHq4Oi {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tgzHlHq4Oi .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tgzHlHq4Oi .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-tgzHlHq4Oi .btn {
  margin-bottom: 2rem;
}
.cid-tgzHlHq4Oi .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-tgzHlHq4Oi .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tgzHlHq4Oi .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-tgzHlHq4Oi .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tgzHlHq4Oi .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tgzHlHq4Oi .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-tgzHlHq4Oi .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-tgzHlHq4Oi .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-tgzHlHq4Oi .links {
  color: #ffffff;
  text-align: center;
}
.cid-tjYysY6vE3 {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tjYysY6vE3 .container-fluid {
  padding: 0 5rem;
}
.cid-tjYysY6vE3 .animated-element {
  color: #efefef;
}
.cid-tjYysY6vE3 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tjYysY6vE3 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tjYysY6vE3 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tjYysY6vE3 .mbr-section-subtitle,
.cid-tjYysY6vE3 .mbr-section-btn {
  text-align: center;
  color: #444444;
}
.cid-tjYysY6vE3 .mbr-section-title {
  text-align: center;
  color: #04367c;
}
.cid-tjYysYZqJN {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tjYysZb8L1 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tjYysZb8L1 .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tjYysZb8L1 .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-tjYysZb8L1 .btn {
  margin-bottom: 2rem;
}
.cid-tjYysZb8L1 .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-tjYysZb8L1 .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tjYysZb8L1 .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-tjYysZb8L1 .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tjYysZb8L1 .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tjYysZb8L1 .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-tjYysZb8L1 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-tjYysZb8L1 .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-tjYysZb8L1 .links {
  color: #ffffff;
  text-align: center;
}
.cid-tpIvSlhIR6 {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tpIvSlhIR6 .container-fluid {
  padding: 0 5rem;
}
.cid-tpIvSlhIR6 .animated-element {
  color: #efefef;
}
.cid-tpIvSlhIR6 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tpIvSlhIR6 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tpIvSlhIR6 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tpIvSlhIR6 .mbr-section-subtitle,
.cid-tpIvSlhIR6 .mbr-section-btn {
  text-align: center;
  color: #444444;
}
.cid-tpIvSlhIR6 .mbr-section-title {
  text-align: center;
  color: #444444;
}
.cid-tpIvSmhUf4 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tpIvSmzanO {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tpIvSmzanO .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tpIvSmzanO .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-tpIvSmzanO .btn {
  margin-bottom: 2rem;
}
.cid-tpIvSmzanO .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-tpIvSmzanO .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tpIvSmzanO .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-tpIvSmzanO .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tpIvSmzanO .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tpIvSmzanO .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-tpIvSmzanO .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-tpIvSmzanO .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-tpIvSmzanO .links {
  color: #ffffff;
  text-align: center;
}
.cid-tpIwrKe2ES {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tpIwrKe2ES .container-fluid {
  padding: 0 5rem;
}
.cid-tpIwrKe2ES .animated-element {
  color: #efefef;
}
.cid-tpIwrKe2ES .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tpIwrKe2ES .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tpIwrKe2ES .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tpIwrKe2ES .mbr-section-subtitle,
.cid-tpIwrKe2ES .mbr-section-btn {
  text-align: center;
  color: #444444;
}
.cid-tpIwrKe2ES .mbr-section-title {
  text-align: center;
  color: #444444;
}
.cid-tpIwrKS9Sj {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tpIwrL5nzd {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tpIwrL5nzd .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tpIwrL5nzd .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-tpIwrL5nzd .btn {
  margin-bottom: 2rem;
}
.cid-tpIwrL5nzd .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-tpIwrL5nzd .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tpIwrL5nzd .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-tpIwrL5nzd .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tpIwrL5nzd .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tpIwrL5nzd .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-tpIwrL5nzd .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-tpIwrL5nzd .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-tpIwrL5nzd .links {
  color: #ffffff;
  text-align: center;
}
.cid-tpIwPF8z8B {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tpIwPF8z8B .container-fluid {
  padding: 0 5rem;
}
.cid-tpIwPF8z8B .animated-element {
  color: #efefef;
}
.cid-tpIwPF8z8B .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tpIwPF8z8B .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tpIwPF8z8B .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tpIwPF8z8B .mbr-section-subtitle,
.cid-tpIwPF8z8B .mbr-section-btn {
  text-align: center;
  color: #444444;
}
.cid-tpIwPF8z8B .mbr-section-title {
  text-align: center;
  color: #444444;
}
.cid-tpIwPFHaS6 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tpIwPFV650 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tpIwPFV650 .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tpIwPFV650 .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-tpIwPFV650 .btn {
  margin-bottom: 2rem;
}
.cid-tpIwPFV650 .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-tpIwPFV650 .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tpIwPFV650 .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-tpIwPFV650 .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tpIwPFV650 .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tpIwPFV650 .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-tpIwPFV650 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-tpIwPFV650 .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-tpIwPFV650 .links {
  color: #ffffff;
  text-align: center;
}
.cid-tpIOd2yo7M .icon-bar {
  z-index: 100002;
  left: 0.8%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tpIOd2yo7M .icon-bar a:hover {
  background-color: #41a582;
  width: 100px;
}
.cid-tpIOd2yo7M .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 3px;
  border-radius: 25px;
}
.cid-tpIOd2yo7M .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tpIOd2yo7M .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tpIOd2yo7M .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tpIOd2yo7M .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tpIOd2yo7M .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tpIOd2yo7M .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tpIOd2yo7M .custom1 {
  background: #5dbb57;
  color: white;
  width: 50px;
}
.cid-tpIOd2yo7M .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tpIOd2yo7M .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tpIOd2yo7M .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tpIOd2yo7M .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tpIOd2yo7M .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tpIOd2yo7M P {
  color: #232323;
}
.cid-tpIOd2yo7M DIV {
  color: #ffffff;
}
.cid-tpIOd2yo7M H10 {
  color: #767676;
}
.cid-tpIOd2yo7M .hidden {
  display: none;
}
.cid-tDhTPNxjsC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDhTPNxjsC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDhTPNxjsC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDhTPNxjsC .content-wrapper {
  background: #ecf2f6;
}
@media (max-width: 991px) {
  .cid-tDhTPNxjsC .content-wrapper .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDhTPNxjsC .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDhTPNxjsC .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tDhTPNxjsC .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tDhTPNxjsC .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tDhTPNxjsC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDhTPNxjsC .card-title {
  text-align: center;
  color: #04367c;
}
.cid-tDhTPNxjsC .mbr-text,
.cid-tDhTPNxjsC .mbr-section-btn {
  text-align: center;
}
.cid-tDibQqJyQ5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tDibQqJyQ5 .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #08579f;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #f3f7f9 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tDibQqJyQ5 .mbr-iconfont {
  align-items: center;
}
.cid-tDibQqJyQ5 .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-tDibQqJyQ5 .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tDibQqJyQ5 .icon-transition span:hover {
  background-color: #08579f;
  color: #f3f7f9;
}
.cid-tDibQqJyQ5 .social-media {
  padding: 0;
}
.cid-tDibQqJyQ5 .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tDibQqJyQ5 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tDibQqJyQ5 .mbr-list,
.cid-tDibQqJyQ5 .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tDibQqJyQ5 .social-list {
    text-align: center !important;
  }
}
.cid-tblM3VfVPK {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tblM3VfVPK .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cid-GOGkrFfLdJ {
    background-image: url("../../../assets/images/bpkmahsa-maya-tutorial-daftar-ahli-hp-03-567x1165.png");
    background-position-x: 50%;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .cid-GOGkrFfLdJ {
    background-image: url("../../../assets/images/bpkmahsa-maya-tutorial-daftar-ahli-03c-1996x1123.png");
    background-position-x: 50%;
  }
}
@media screen and (min-width: 992px) {
  .cid-GOGkrFfLdJ {
    background-image: url("../../../assets/images/bpkmahsa-maya-tutorial-daftar-ahli-03c-1996x1123.png");
    background-position-x: 50%;
  }
}
.cid-GOGkrFfLdJ .mbr-text,
.cid-GOGkrFfLdJ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-GOGkrFfLdJ .seen-desk,
.cid-GOGkrFfLdJ .seen-mob,
.cid-GOGkrFfLdJ .seen-tab {
  display: none;
}
@media (min-width: 1px) and (max-width: 768px) {
  .cid-GOGkrFfLdJ .seen-mob {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .cid-GOGkrFfLdJ .seen-tab {
    display: block;
  }
}
@media (min-width: 992px) {
  .cid-GOGkrFfLdJ .seen-desk {
    display: block;
  }
}
.cid-GOGkrFfLdJ H1 {
  color: #efefef;
}
.cid-GOGkrFfLdJ H3 {
  color: #c4bc3b;
}
.cid-tblM3VfVPK {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tblM3VfVPK .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-tDid2zgFxQ {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tDid2zgFxQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDid2zgFxQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDid2zgFxQ .content-wrapper {
  background: #ecf2f6;
}
@media (max-width: 991px) {
  .cid-tDid2zgFxQ .content-wrapper .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDid2zgFxQ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDid2zgFxQ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDid2zgFxQ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tDid2zgFxQ .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tDid2zgFxQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDid2zgFxQ .card-title {
  text-align: center;
}
.cid-tDid2zgFxQ .mbr-text,
.cid-tDid2zgFxQ .mbr-section-btn {
  text-align: center;
}
.cid-tDid2AijBn {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tDid2AijBn .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-tE2gPXrMVg {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE2gPXrMVg .container-fluid {
  padding: 0 5rem;
}
.cid-tE2gPXrMVg .animated-element {
  color: #efefef;
}
.cid-tE2gPXrMVg .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tE2gPXrMVg .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tE2gPXrMVg .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tE2gPXrMVg .mbr-section-subtitle,
.cid-tE2gPXrMVg .mbr-section-btn {
  text-align: center;
  color: #444444;
}
.cid-tE2gPXrMVg .mbr-section-title {
  text-align: center;
  color: #04367c;
}
.cid-tE2gPXSQXw {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tE2mxxlTrD.popup-builder {
  background-color: #ffffff;
}
.cid-tE2mxxlTrD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tE2mxxlTrD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tE2mxxlTrD .modal-content,
.cid-tE2mxxlTrD .modal-dialog {
  height: auto;
}
.cid-tE2mxxlTrD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tE2mxxlTrD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tE2mxxlTrD .form-wrapper .mbr-form .form-group,
  .cid-tE2mxxlTrD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tE2mxxlTrD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tE2mxxlTrD .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-tE2mxxlTrD .mbr-text {
  text-align: left;
}
.cid-tE2mxxlTrD .pt-0 {
  padding-top: 0 !important;
}
.cid-tE2mxxlTrD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tE2mxxlTrD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tE2mxxlTrD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tE2mxxlTrD .modal-open {
  overflow: hidden;
}
.cid-tE2mxxlTrD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tE2mxxlTrD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tE2mxxlTrD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tE2mxxlTrD .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-tE2mxxlTrD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tE2mxxlTrD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tE2mxxlTrD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tE2mxxlTrD .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tE2mxxlTrD .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tE2mxxlTrD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tE2mxxlTrD .modal-backdrop.fade {
  opacity: 0;
}
.cid-tE2mxxlTrD .modal-backdrop.show {
  opacity: .5;
}
.cid-tE2mxxlTrD .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-tE2mxxlTrD .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tE2mxxlTrD .modal-header {
    padding: 1rem;
  }
}
.cid-tE2mxxlTrD .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tE2mxxlTrD .modal-header .close svg {
  fill: #353535;
}
.cid-tE2mxxlTrD .modal-header .close:hover {
  opacity: 1;
}
.cid-tE2mxxlTrD .modal-header .close:focus {
  outline: none;
}
.cid-tE2mxxlTrD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #03224d;
}
.cid-tE2mxxlTrD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tE2mxxlTrD .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tE2mxxlTrD .modal-body {
    padding: 1rem;
  }
}
.cid-tE2mxxlTrD .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-tE2mxxlTrD .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tE2mxxlTrD .modal-footer {
    padding: 1rem;
  }
}
.cid-tE2mxxlTrD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tE2mxxlTrD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tE2mxxlTrD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tE2mxxlTrD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tE2mxxlTrD .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tE2mxxlTrD .modal-lg,
  .cid-tE2mxxlTrD .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tE2mxxlTrD .modal-xl {
    max-width: 1140px;
  }
}
.cid-tE2mxxlTrD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tE2mxxlTrD .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-tE2mxxlTrD .form-group {
  margin-bottom: 1rem;
}
.cid-tE2mxxlTrD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tE2mxxlTrD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tE2mxxlTrD .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-tE2mxxlTrD .mbr-section-btn {
  margin: 0;
}
.cid-tE2mxxlTrD .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBPlO09UsJ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBPlO09UsJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBPlO09UsJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBPlO09UsJ .content-wrapper {
  background: #ecf2f6;
}
@media (max-width: 991px) {
  .cid-uBPlO09UsJ .content-wrapper .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uBPlO09UsJ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uBPlO09UsJ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBPlO09UsJ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uBPlO09UsJ .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uBPlO09UsJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBPlO09UsJ .card-title {
  text-align: center;
  color: #04367c;
}
.cid-uBPlO09UsJ .mbr-text,
.cid-uBPlO09UsJ .mbr-section-btn {
  text-align: center;
  color: #444444;
}
.cid-uBPlO0xnik {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uBPlO0xnik .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #08579f;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #f3f7f9 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uBPlO0xnik .mbr-iconfont {
  align-items: center;
}
.cid-uBPlO0xnik .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-uBPlO0xnik .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uBPlO0xnik .icon-transition span:hover {
  background-color: #08579f;
  color: #f3f7f9;
}
.cid-uBPlO0xnik .social-media {
  padding: 0;
}
.cid-uBPlO0xnik .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uBPlO0xnik .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uBPlO0xnik .mbr-list,
.cid-uBPlO0xnik .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uBPlO0xnik .social-list {
    text-align: center !important;
  }
}
.cid-uBPlO0Mbf3 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uBPlO0Mbf3 .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-uBWYAzPuCD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f4f7f9;
}
.cid-uBWYAzPuCD .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-uBWYAzPuCD .mbr-text,
.cid-uBWYAzPuCD .mbr-section-btn {
  text-align: center;
  color: #188ef4;
}
.cid-uBWYAzPuCD .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-uBWZCZz9Ds {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #54aeff;
}
.cid-uBWZCZz9Ds .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-uBWZCZz9Ds .mbr-text,
.cid-uBWZCZz9Ds .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-uBWZCZz9Ds .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
@media screen and (max-width: 768px) {
  .cid-9djuIE0CSR {
    background-image: url("../../../assets/images/kobpm-maya-tutorial-daftarahli-hp-03-567x1165.png");
    background-position-x: 50%;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .cid-9djuIE0CSR {
    background-image: url("../../../assets/images/kobpm-maya-tutorial-daftarahli-001-ls-1996x1123.png");
    background-position-x: 50%;
  }
}
@media screen and (min-width: 992px) {
  .cid-9djuIE0CSR {
    background-image: url("../../../assets/images/kobpm-maya-tutorial-daftarahli-001-ls-1996x1123.png");
    background-position-x: 50%;
  }
}
.cid-9djuIE0CSR .mbr-text,
.cid-9djuIE0CSR .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-9djuIE0CSR .seen-desk,
.cid-9djuIE0CSR .seen-mob,
.cid-9djuIE0CSR .seen-tab {
  display: none;
}
@media (min-width: 1px) and (max-width: 768px) {
  .cid-9djuIE0CSR .seen-mob {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .cid-9djuIE0CSR .seen-tab {
    display: block;
  }
}
@media (min-width: 992px) {
  .cid-9djuIE0CSR .seen-desk {
    display: block;
  }
}
.cid-9djuIE0CSR H1 {
  color: #efefef;
}
.cid-9djuIE0CSR H3 {
  color: #c4bc3b;
}
.cid-uBUcUQagMl {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uBUcUQagMl .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-uBV0IWoePE {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBV0IWoePE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBV0IWoePE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBV0IWoePE .content-wrapper {
  background: #ecf2f6;
}
@media (max-width: 991px) {
  .cid-uBV0IWoePE .content-wrapper .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uBV0IWoePE .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uBV0IWoePE .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uBV0IWoePE .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uBV0IWoePE .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uBV0IWoePE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBV0IWoePE .card-title {
  text-align: center;
  color: #08579f;
}
.cid-uBV0IWoePE .mbr-text,
.cid-uBV0IWoePE .mbr-section-btn {
  text-align: center;
  color: #444444;
}
.cid-uBV0IWIZ1E {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uBV0IWIZ1E .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #08579f;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #f3f7f9 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uBV0IWIZ1E .mbr-iconfont {
  align-items: center;
}
.cid-uBV0IWIZ1E .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-uBV0IWIZ1E .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uBV0IWIZ1E .icon-transition span:hover {
  background-color: #08579f;
  color: #f3f7f9;
}
.cid-uBV0IWIZ1E .social-media {
  padding: 0;
}
.cid-uBV0IWIZ1E .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uBV0IWIZ1E .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uBV0IWIZ1E .mbr-list,
.cid-uBV0IWIZ1E .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uBV0IWIZ1E .social-list {
    text-align: center !important;
  }
}
.cid-uBV0IWY1sA {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uBV0IWY1sA .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-uEXtg9G9zf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uEXtg9G9zf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEXtg9G9zf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEXtg9G9zf .content-wrapper {
  background: #ecf2f6;
}
@media (max-width: 991px) {
  .cid-uEXtg9G9zf .content-wrapper .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uEXtg9G9zf .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uEXtg9G9zf .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uEXtg9G9zf .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uEXtg9G9zf .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uEXtg9G9zf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uEXtg9G9zf .card-title {
  text-align: center;
  color: #0e8f61;
}
.cid-uEXtg9G9zf .mbr-text,
.cid-uEXtg9G9zf .mbr-section-btn {
  text-align: center;
}
.cid-uEXtga0Hc8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uEXtga0Hc8 .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #08579f;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #f3f7f9 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uEXtga0Hc8 .mbr-iconfont {
  align-items: center;
}
.cid-uEXtga0Hc8 .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-uEXtga0Hc8 .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uEXtga0Hc8 .icon-transition span:hover {
  background-color: #08579f;
  color: #f3f7f9;
}
.cid-uEXtga0Hc8 .social-media {
  padding: 0;
}
.cid-uEXtga0Hc8 .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uEXtga0Hc8 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uEXtga0Hc8 .mbr-list,
.cid-uEXtga0Hc8 .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uEXtga0Hc8 .social-list {
    text-align: center !important;
  }
}
.cid-uEXtgaeZC8 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uEXtgaeZC8 .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-uEXxb5y57E.popup-builder {
  background-color: #ffffff;
}
.cid-uEXxb5y57E.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uEXxb5y57E.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uEXxb5y57E .modal-content,
.cid-uEXxb5y57E .modal-dialog {
  height: auto;
}
.cid-uEXxb5y57E .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uEXxb5y57E .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uEXxb5y57E .form-wrapper .mbr-form .form-group,
  .cid-uEXxb5y57E .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uEXxb5y57E .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uEXxb5y57E .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-uEXxb5y57E .mbr-text {
  text-align: center;
}
.cid-uEXxb5y57E .pt-0 {
  padding-top: 0 !important;
}
.cid-uEXxb5y57E .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uEXxb5y57E .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uEXxb5y57E .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uEXxb5y57E .modal-open {
  overflow: hidden;
}
.cid-uEXxb5y57E .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uEXxb5y57E .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uEXxb5y57E .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uEXxb5y57E .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-uEXxb5y57E .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uEXxb5y57E .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uEXxb5y57E .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uEXxb5y57E .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uEXxb5y57E .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uEXxb5y57E .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uEXxb5y57E .modal-backdrop.fade {
  opacity: 0;
}
.cid-uEXxb5y57E .modal-backdrop.show {
  opacity: .5;
}
.cid-uEXxb5y57E .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-uEXxb5y57E .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uEXxb5y57E .modal-header {
    padding: 1rem;
  }
}
.cid-uEXxb5y57E .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uEXxb5y57E .modal-header .close svg {
  fill: #353535;
}
.cid-uEXxb5y57E .modal-header .close:hover {
  opacity: 1;
}
.cid-uEXxb5y57E .modal-header .close:focus {
  outline: none;
}
.cid-uEXxb5y57E .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uEXxb5y57E .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uEXxb5y57E .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEXxb5y57E .modal-body {
    padding: 1rem;
  }
}
.cid-uEXxb5y57E .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-uEXxb5y57E .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEXxb5y57E .modal-footer {
    padding: 1rem;
  }
}
.cid-uEXxb5y57E .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uEXxb5y57E .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uEXxb5y57E .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uEXxb5y57E .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uEXxb5y57E .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uEXxb5y57E .modal-lg,
  .cid-uEXxb5y57E .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uEXxb5y57E .modal-xl {
    max-width: 1140px;
  }
}
.cid-uEXxb5y57E .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uEXxb5y57E .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-uEXxb5y57E .form-group {
  margin-bottom: 1rem;
}
.cid-uEXxb5y57E .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uEXxb5y57E .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uEXxb5y57E .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-uEXxb5y57E .mbr-section-btn {
  margin: 0;
}
.cid-uEXxb5y57E .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFIcSdPbr9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uFIcSdPbr9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFIcSdPbr9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFIcSdPbr9 .content-wrapper {
  background: #ecf2f6;
}
@media (max-width: 991px) {
  .cid-uFIcSdPbr9 .content-wrapper .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uFIcSdPbr9 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uFIcSdPbr9 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uFIcSdPbr9 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uFIcSdPbr9 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uFIcSdPbr9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uFIcSdPbr9 .card-title {
  text-align: center;
  color: #08579f;
}
.cid-uFIcSdPbr9 .mbr-text,
.cid-uFIcSdPbr9 .mbr-section-btn {
  text-align: center;
}
.cid-uFIcSeapdT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uFIcSeapdT .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #08579f;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #f3f7f9 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uFIcSeapdT .mbr-iconfont {
  align-items: center;
}
.cid-uFIcSeapdT .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-uFIcSeapdT .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uFIcSeapdT .icon-transition span:hover {
  background-color: #08579f;
  color: #f3f7f9;
}
.cid-uFIcSeapdT .social-media {
  padding: 0;
}
.cid-uFIcSeapdT .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uFIcSeapdT .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uFIcSeapdT .mbr-list,
.cid-uFIcSeapdT .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uFIcSeapdT .social-list {
    text-align: center !important;
  }
}
.cid-uFIcSepmUl {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uFIcSepmUl .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-uHL8vwwT2G.popup-builder {
  background-color: #ffffff;
}
.cid-uHL8vwwT2G.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uHL8vwwT2G.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uHL8vwwT2G .modal-content,
.cid-uHL8vwwT2G .modal-dialog {
  height: auto;
}
.cid-uHL8vwwT2G .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uHL8vwwT2G .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uHL8vwwT2G .form-wrapper .mbr-form .form-group,
  .cid-uHL8vwwT2G .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uHL8vwwT2G .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uHL8vwwT2G .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-uHL8vwwT2G .mbr-text {
  text-align: center;
}
.cid-uHL8vwwT2G .pt-0 {
  padding-top: 0 !important;
}
.cid-uHL8vwwT2G .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uHL8vwwT2G .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uHL8vwwT2G .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uHL8vwwT2G .modal-open {
  overflow: hidden;
}
.cid-uHL8vwwT2G .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uHL8vwwT2G .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uHL8vwwT2G .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uHL8vwwT2G .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-uHL8vwwT2G .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uHL8vwwT2G .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uHL8vwwT2G .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uHL8vwwT2G .modal-content {
  background: #394157;
  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-uHL8vwwT2G .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uHL8vwwT2G .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uHL8vwwT2G .modal-backdrop.fade {
  opacity: 0;
}
.cid-uHL8vwwT2G .modal-backdrop.show {
  opacity: .5;
}
.cid-uHL8vwwT2G .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-uHL8vwwT2G .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uHL8vwwT2G .modal-header {
    padding: 1rem;
  }
}
.cid-uHL8vwwT2G .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uHL8vwwT2G .modal-header .close svg {
  fill: #f4f8fa;
}
.cid-uHL8vwwT2G .modal-header .close:hover {
  opacity: 1;
}
.cid-uHL8vwwT2G .modal-header .close:focus {
  outline: none;
}
.cid-uHL8vwwT2G .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uHL8vwwT2G .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uHL8vwwT2G .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHL8vwwT2G .modal-body {
    padding: 1rem;
  }
}
.cid-uHL8vwwT2G .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-uHL8vwwT2G .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHL8vwwT2G .modal-footer {
    padding: 1rem;
  }
}
.cid-uHL8vwwT2G .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uHL8vwwT2G .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uHL8vwwT2G .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uHL8vwwT2G .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uHL8vwwT2G .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uHL8vwwT2G .modal-lg,
  .cid-uHL8vwwT2G .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uHL8vwwT2G .modal-xl {
    max-width: 1140px;
  }
}
.cid-uHL8vwwT2G .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uHL8vwwT2G .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-uHL8vwwT2G .form-group {
  margin-bottom: 1rem;
}
.cid-uHL8vwwT2G .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uHL8vwwT2G .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uHL8vwwT2G .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-uHL8vwwT2G .mbr-section-btn {
  margin: 0;
}
.cid-uHL8vwwT2G .mbr-section-btn .btn {
  margin: 0;
}
.cid-uNxfC6jP5w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uNxfC6jP5w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNxfC6jP5w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNxfC6jP5w .content-wrapper {
  background: #ecf2f6;
}
@media (max-width: 991px) {
  .cid-uNxfC6jP5w .content-wrapper .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uNxfC6jP5w .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uNxfC6jP5w .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uNxfC6jP5w .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uNxfC6jP5w .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uNxfC6jP5w .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uNxfC6jP5w .card-title {
  text-align: center;
  color: #08579f;
}
.cid-uNxfC6jP5w .mbr-text,
.cid-uNxfC6jP5w .mbr-section-btn {
  text-align: center;
  color: #04367c;
}
.cid-uNxfC6Hakr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uNxfC6Hakr .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #08579f;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #f3f7f9 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uNxfC6Hakr .mbr-iconfont {
  align-items: center;
}
.cid-uNxfC6Hakr .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-uNxfC6Hakr .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uNxfC6Hakr .icon-transition span:hover {
  background-color: #08579f;
  color: #f3f7f9;
}
.cid-uNxfC6Hakr .social-media {
  padding: 0;
}
.cid-uNxfC6Hakr .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uNxfC6Hakr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNxfC6Hakr .mbr-list,
.cid-uNxfC6Hakr .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uNxfC6Hakr .social-list {
    text-align: center !important;
  }
}
.cid-uNxfC6XJQw {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uNxfC6XJQw .media-container-row .mbr-text {
  color: #333333;
  text-align: center;
}
.cid-uNGESOSxUP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f4f7f9;
}
.cid-uNGESOSxUP .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-uNGESOSxUP .mbr-text,
.cid-uNGESOSxUP .mbr-section-btn {
  text-align: center;
  color: #188ef4;
}
.cid-uNGESOSxUP .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-uNGETqkScM {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #54aeff;
}
.cid-uNGETqkScM .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-uNGETqkScM .mbr-text,
.cid-uNGETqkScM .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-uNGETqkScM .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-uNxfC78Zt9.popup-builder {
  background-color: #ffffff;
}
.cid-uNxfC78Zt9.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uNxfC78Zt9.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uNxfC78Zt9 .modal-content,
.cid-uNxfC78Zt9 .modal-dialog {
  height: auto;
}
.cid-uNxfC78Zt9 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uNxfC78Zt9 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uNxfC78Zt9 .form-wrapper .mbr-form .form-group,
  .cid-uNxfC78Zt9 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uNxfC78Zt9 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uNxfC78Zt9 .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-uNxfC78Zt9 .mbr-text {
  text-align: center;
}
.cid-uNxfC78Zt9 .pt-0 {
  padding-top: 0 !important;
}
.cid-uNxfC78Zt9 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uNxfC78Zt9 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uNxfC78Zt9 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uNxfC78Zt9 .modal-open {
  overflow: hidden;
}
.cid-uNxfC78Zt9 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uNxfC78Zt9 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uNxfC78Zt9 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uNxfC78Zt9 .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-uNxfC78Zt9 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uNxfC78Zt9 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uNxfC78Zt9 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uNxfC78Zt9 .modal-content {
  background: #394157;
  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-uNxfC78Zt9 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uNxfC78Zt9 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uNxfC78Zt9 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uNxfC78Zt9 .modal-backdrop.show {
  opacity: .5;
}
.cid-uNxfC78Zt9 .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-uNxfC78Zt9 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNxfC78Zt9 .modal-header {
    padding: 1rem;
  }
}
.cid-uNxfC78Zt9 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uNxfC78Zt9 .modal-header .close svg {
  fill: #f4f8fa;
}
.cid-uNxfC78Zt9 .modal-header .close:hover {
  opacity: 1;
}
.cid-uNxfC78Zt9 .modal-header .close:focus {
  outline: none;
}
.cid-uNxfC78Zt9 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uNxfC78Zt9 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uNxfC78Zt9 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNxfC78Zt9 .modal-body {
    padding: 1rem;
  }
}
.cid-uNxfC78Zt9 .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-uNxfC78Zt9 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNxfC78Zt9 .modal-footer {
    padding: 1rem;
  }
}
.cid-uNxfC78Zt9 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uNxfC78Zt9 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uNxfC78Zt9 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uNxfC78Zt9 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uNxfC78Zt9 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uNxfC78Zt9 .modal-lg,
  .cid-uNxfC78Zt9 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uNxfC78Zt9 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uNxfC78Zt9 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uNxfC78Zt9 .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-uNxfC78Zt9 .form-group {
  margin-bottom: 1rem;
}
.cid-uNxfC78Zt9 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uNxfC78Zt9 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uNxfC78Zt9 .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-uNxfC78Zt9 .mbr-section-btn {
  margin: 0;
}
.cid-uNxfC78Zt9 .mbr-section-btn .btn {
  margin: 0;
}
