body {
  font-family: Open Sans;
}
.display-1 {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
}
.display-1 > .mbr-iconfont {
  font-size: 1.8rem;
}
.display-2 {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
}
.display-2 > .mbr-iconfont {
  font-size: 1.4rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
}
.display-4 > .mbr-iconfont {
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Merriweather', serif;
  font-size: 1.02rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.02rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.02rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.02rem;
}
/* ---- 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: 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-2 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.816rem;
    font-size: calc( 1.0070000000000001rem + (1.02 - 1.0070000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0070000000000001rem + (1.02 - 1.0070000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 6px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 6px;
}
.btn-md {
  padding: 15px 20px;
  border-radius: 6px;
}
.btn-lg {
  padding: 20px 25px;
  border-radius: 6px;
}
.bg-primary {
  background-color: #0087ab !important;
}
.bg-success {
  background-color: #344cf1 !important;
}
.bg-info {
  background-color: #a38547 !important;
}
.bg-warning {
  background-color: #e0b548 !important;
}
.bg-danger {
  background-color: #e9e9e9 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #0087ab !important;
  border-color: #0087ab !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #004b5e !important;
  border-color: #004b5e !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #004b5e !important;
  border-color: #004b5e !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #0a1c44 !important;
  border-color: #0a1c44 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #000101 !important;
  border-color: #000101 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000101 !important;
  border-color: #000101 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #a38547 !important;
  border-color: #a38547 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #6e5a30 !important;
  border-color: #6e5a30 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #6e5a30 !important;
  border-color: #6e5a30 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #344cf1 !important;
  border-color: #344cf1 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #0e26cb !important;
  border-color: #0e26cb !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0e26cb !important;
  border-color: #0e26cb !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #e0b548 !important;
  border-color: #e0b548 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #bc9020 !important;
  border-color: #bc9020 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #bc9020 !important;
  border-color: #bc9020 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #e9e9e9 !important;
  border-color: #e9e9e9 !important;
  color: #6a6a6a !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #6a6a6a !important;
  background-color: #c3c3c3 !important;
  border-color: #c3c3c3 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #6a6a6a !important;
  background-color: #c3c3c3 !important;
  border-color: #c3c3c3 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #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;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #003645;
  color: #003645;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #0087ab;
  border-color: #0087ab;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0087ab !important;
  border-color: #0087ab !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #0a1c44;
  border-color: #0a1c44;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0a1c44 !important;
  border-color: #0a1c44 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #5c4b28;
  color: #5c4b28;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #a38547;
  border-color: #a38547;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #a38547 !important;
  border-color: #a38547 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #0c21b3;
  color: #0c21b3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #344cf1;
  border-color: #344cf1;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #344cf1 !important;
  border-color: #344cf1 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #a67f1c;
  color: #a67f1c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #e0b548;
  border-color: #e0b548;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e0b548 !important;
  border-color: #e0b548 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #b6b6b6;
  color: #b6b6b6;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #6a6a6a;
  background-color: #e9e9e9;
  border-color: #e9e9e9;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #6a6a6a !important;
  background-color: #e9e9e9 !important;
  border-color: #e9e9e9 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #0087ab !important;
}
.text-secondary {
  color: #0a1c44 !important;
}
.text-success {
  color: #344cf1 !important;
}
.text-info {
  color: #a38547 !important;
}
.text-warning {
  color: #e0b548 !important;
}
.text-danger {
  color: #e9e9e9 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #003645 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #0c21b3 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #5c4b28 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a67f1c !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b6b6b6 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #a38547;
}
.alert-warning {
  background-color: #e0b548;
}
.alert-danger {
  background-color: #e9e9e9;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0087ab;
  border-color: #0087ab;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0087ab;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #2bd2ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f3f4fe;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d2bf98;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fefcf6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.02rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.02rem;
}
blockquote {
  border-color: #0087ab;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.btn-primary:hover {
  color: #0087ab !important;
  background: white !important;
  border-color: white !important;
}
.form-control,
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0087ab;
  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: #0087ab;
  border-bottom-color: #0087ab;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #0087ab !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #0a1c44 !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='%230087ab' %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-seJ0h2myWV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
.cid-seJ0h2myWV .container {
  bottom: -4rem;
  display: relative;
  max-width: 100%;
  height: 9rem;
  overflow: hidden;
}
.cid-seJ0h2myWV .box {
  height: 50%;
  background: #f4f8fa;
  width: 110%;
  position: relative;
  left: -20px;
  padding-left: 15px;
}
.cid-seJ0h2myWV .boxz {
  position: relative;
  height: 50%;
  background: transparent;
  width: 110%;
  left: -20px;
  padding-left: 15px;
}
.cid-seJ0h2myWV .schraege {
  z-index: 1;
  overflow: hidden;
  position: relative;
  height: 5rem;
  width: 130%;
  top: -7rem;
  left: -20px;
  padding-top: 40px;
  padding-left: 15px;
  background: linear-gradient(to bottom, #f4f8fa, #0087ab);
  -webkit-transform: rotate(-2deg);
}
.cid-rZgA4G5aDZ {
  background-image: url("../../../assets/images/mbr-21-1625x1280.jpg");
}
.cid-rZgA4G5aDZ .schrifter {
  display: none;
}
.cid-rZgA4G5aDZ .schrift {
  display: block;
}
.cid-rZgA4G5aDZ .mbr-section-subtitle {
  color: #0087ab;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-rZgA4G5aDZ .mbr-section-title {
  color: #0a1c44;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
}
.cid-rZgA4G5aDZ .mbr-section-title .accent-word {
  color: #0087ab;
}
.cid-rZgA4G5aDZ .mbr-text {
  color: #a38547;
}
.cid-rZgA4G5aDZ .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #0a1c44;
  margin-left: 0.6rem;
}
.cid-rZgA4G5aDZ .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #0087ab;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-rZgA4G5aDZ .mbr-section-btn {
  display: flex;
}
.cid-rZgA4G5aDZ .mbr-section-btn.display-4,
.cid-rZgA4G5aDZ .btn.display-4 {
  font-size: 12px !important;
}
.cid-rZgA4G5aDZ .video-wrap {
  cursor: pointer;
  margin-left: 14px;
  margin-right: 14px;
}
.cid-rZgA4G5aDZ .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-rZgA4G5aDZ .video-wrap .user_image_inner {
  width: 4em;
  height: 4em;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.cid-rZgA4G5aDZ .video-wrap .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0;
}
.cid-rZgA4G5aDZ .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #0087ab;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-rZgA4G5aDZ .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-rZgA4G5aDZ .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-rZgA4G5aDZ .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #0a1c44;
}
.cid-rZgA4G5aDZ .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-rZgA4G5aDZ .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rZgA4G5aDZ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rZgA4G5aDZ .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rZgA4G5aDZ a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #344cf1;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rZgA4G5aDZ a.close:hover {
  color: #344cf1;
}
@media (max-width: 991px) {
  .cid-rZgA4G5aDZ .separator,
  .cid-rZgA4G5aDZ .sep-holder,
  .cid-rZgA4G5aDZ .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-rZgA4G5aDZ .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-rZgA4G5aDZ .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
  .cid-rZgA4G5aDZ .schrift {
    display: none;
  }
  .cid-rZgA4G5aDZ .schrifter {
    display: block;
  }
}
.cid-rZgAaQcyM6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
@media (max-width: 768px) {
  .cid-rZgAaQcyM6 {
    display: none;
  }
  .cid-rZgAaQcyM6 .stats-item {
    -webkit-box-pack: center;
    justify-content: center;
    padding: 30px 25px;
  }
  .cid-rZgAaQcyM6 .stats-item:first-child {
    border-radius: 0;
  }
  .cid-rZgAaQcyM6 .stats-item:last-child {
    border-radius: 0;
  }
}
.cid-rZgAaQcyM6 .row {
  position: relative;
  box-sizing: border-box;
  padding-top: 20px;
  padding-bottom: 15px;
  background-color: #0087ab !important;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  overflow: hidden;
  background-image: url("") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.cid-rZgAaQcyM6 .row::before {
  background-color: #0087ab;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
  display: block;
  z-index: 0;
  opacity: 0.8;
}
.cid-rZgAaQcyM6 .stats-item {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-rZgAaQcyM6 .stats-item:first-child {
  border-radius: 10px 0 0 10px;
}
.cid-rZgAaQcyM6 .stats-item:last-child {
  border-radius: 0 10px 10px 0;
}
.cid-rZgAaQcyM6 .stats-item:after {
  content: "";
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.22);
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .cid-rZgAaQcyM6 .stats-item:after {
    display: none;
  }
}
.cid-rZgAaQcyM6 .stats-item > span {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cid-rZgAaQcyM6 .mbr-iconfont {
  font-size: 60px;
  align-self: center;
  margin-right: 20px;
}
.cid-rZgAaQcyM6 .heading {
  color: #344cf1;
}
.cid-rZgAaQcyM6 .container {
  min-width: 100%;
  padding: 0;
  margin: 0 auto;
}
.cid-rZgAaQcyM6 .counter {
  text-align: left;
  color: #ffffff;
  font-weight: 900;
}
.cid-rZgAaQcyM6 .counter.display-2 {
  line-height: 46px;
  letter-spacing: -0.5px;
}
.cid-rZgAaQcyM6 .mbr-card-title,
.cid-rZgAaQcyM6 .mbr-iconfont {
  text-align: center;
  color: #344cf1;
  display: block;
}
.cid-rZgAaQcyM6 .mbr-card-title.display-4 {
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 1px;
}
.cid-rZgAaQcyM6 .mbr-card-title,
.cid-rZgAaQcyM6 .mbr-iconfont {
  color: #ffffff;
}
.cid-s14s3zKsEq {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .cid-s14s3zKsEq {
    padding-top: 32px;
  }
}
.cid-s14s3zKsEq svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(3.5, 2.1);
}
.cid-s14s3zKsEq #e1_ellipse {
  fill: #e1e8ff !important;
}
.cid-s14s3zKsEq img {
  width: 70%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 576px) {
  .cid-s14s3zKsEq img {
    width: 100%;
    left: 0;
  }
}
.cid-s14s3zKsEq H1 {
  color: #0a1c44;
  font-size: 1.25rem;
}
.cid-s14s3zKsEq .mbr-text,
.cid-s14s3zKsEq .mbr-section-btn {
  color: #000000;
}
.cid-s14s3zKsEq .just {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-s14s3zKsEq .just {
    text-align: justify !important;
  }
}
.cid-s14s3zKsEq P {
  text-align: left;
}
.cid-rZgA6MwiTA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f4f8fa;
}
.cid-rZgA6MwiTA h2 {
  font-size: 1.25rem;
}
.cid-rZgA6MwiTA .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rZgA6MwiTA .wrap-block .contents {
  margin-bottom: 5px;
}
.cid-rZgA6MwiTA .mbr-subtitle {
  color: #0087ab;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-rZgA6MwiTA .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-rZgA6MwiTA .mbr-section-title {
  margin-bottom: 10px;
  color: #0a1c44;
  font-weight: 700;
}
.cid-rZgA6MwiTA .mbr-section-title.display-2 {
  font-size: 35px;
  line-height: 45px;
  letter-spacing: -0.5px;
}
.cid-rZgA6MwiTA .mbr-section-text {
  color: #a38547;
  line-height: 28px;
  margin-top: 0px;
}
.cid-rZgA6MwiTA .boldSubtitle {
  color: #0a1c44;
}
.cid-rZgA6MwiTA .info-widget {
  padding-top: 0.5rem;
}
.cid-rZgA6MwiTA .info-widget .widget-icon {
  display: inline-block;
  font-size: 1.75rem;
  color: #0087ab;
  margin-right: 15px;
}
.cid-rZgA6MwiTA .info-widget .signature {
  width: 35%;
  height: 50px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-rZgA6MwiTA .info-widget .signature {
    width: 55%;
    margin-right: 0px;
  }
}
.cid-rZgA6MwiTA .info-widget .widget-content {
  vertical-align: middle;
  display: inline-block;
}
.cid-rZgA6MwiTA .info-widget .widget-content .widget-title {
  color: #0a1c44;
  margin-bottom: 0;
  font-weight: 700;
}
.cid-rZgA6MwiTA .info-widget .widget-content .widget-title.display-7 {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.5px;
}
.cid-rZgA6MwiTA .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
  font-weight: 700;
}
.cid-rZgA6MwiTA .info-widget .widget-content .widget-text.display-4 {
  line-height: 24px;
  letter-spacing: -0.5px;
}
.cid-rZgA6MwiTA .info-widget--right {
  margin-top: 30px;
  padding-top: 0;
}
.cid-rZgA6MwiTA .info-widget--right .widget-content .widget-title {
  margin-bottom: 0 !important;
  color: #0a1c44;
  font-weight: 700;
}
.cid-rZgA6MwiTA .info-widget--right .widget-content .widget-title.display-7 {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
}
@media (max-width: 500px) {
  .cid-rZgA6MwiTA .wrap-block {
    padding: 1rem 1rem;
    text-align: center !important;
  }
}
.cid-rZgA6MwiTA .mbr-section-text,
.cid-rZgA6MwiTA .outer-wrap {
  color: #000000;
}
.cid-rZgA6MwiTA .wrap-block .mbr-subtitle,
.cid-rZgA6MwiTA .menu-content-right {
  color: #0087ab;
}
.cid-rZgA6MwiTA .info-widget .widget-content .widget-text {
  text-align: left;
}
.cid-rZgA6MwiTA P {
  color: #656565;
}
@media (max-width: 767px) {
  .cid-rZgA6MwiTA .mbr-section-subtitle,
  .cid-rZgA6MwiTA .mbr-text {
    text-align: justify !important;
  }
  .cid-rZgA6MwiTA h2 {
    text-align: center;
  }
  .cid-rZgA6MwiTA .Unterschrift {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
  }
}
.cid-s12roAIV4j {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #f4f8fa;
}
.cid-s12roAIV4j .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-s12roAIV4j .mbr-section-title {
  margin: 0;
  color: #0a1c44;
  padding-bottom: 1rem;
}
.cid-s12roAIV4j .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s12roAIV4j .card-img {
  text-align: inherit;
}
.cid-s12roAIV4j .card-img span {
  background: linear-gradient(90deg, #0087ab, #1dc9cb);
}
.cid-s12roAIV4j .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-s12roAIV4j .wrapper {
  border-radius: .25rem;
  padding: 1.5rem;
  padding-bottom: 0rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s12roAIV4j ol {
  padding-bottom: 1.5rem;
  padding-top: 1rem;
  padding-left: 0.6rem;
}
@media (max-width: 991px) {
  .cid-s12roAIV4j .wrapper {
    margin-bottom: 5rem;
  }
  .cid-s12roAIV4j .mbr-card-title {
    margin-top: -1.2rem;
  }
}
.cid-s12roAIV4j .mbr-card-title {
  text-align: center;
  color: #0a1c44;
  margin-top: -1.2rem;
}
.cid-s12roAIV4j h4 {
  font-size: 1.02rem;
}
.cid-rZljOHCfAF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f4f8fa;
}
.cid-rZljOHCfAF h4 {
  display: flex;
  color: #232323;
}
.cid-rZljOHCfAF .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0087ab 50%, #0a1c44 120%);
  display: inline-block;
}
.cid-rZljOHCfAF .panel-text {
  color: #000000;
  line-height: 1.7;
}
.cid-rZljOHCfAF .wrap {
  display: flex;
}
.cid-rZljOHCfAF .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-rZljOHCfAF .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-rZljOHCfAF .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rZljOHCfAF .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
.cid-rZljOHCfAF .icon {
  background: #0087ab;
  min-width: 33px;
  min-height: 33px;
  border-radius: 100%;
  color: white!important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.cid-rZljOHCfAF img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-rZljOHCfAF .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-rZljOHCfAF p {
  margin: 0;
}
.cid-rZljOHCfAF .card .card-header a.panel-title {
  background-color: none!important;
  margin-top: 0px!important;
}
.cid-rZljOHCfAF .mbr-section-subtitle {
  font-weight: 500;
  color: #767676;
  text-align: center;
}
.cid-rZljOHCfAF .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rZljOHCfAF .panel-group {
  width: 100%;
}
.cid-rZljOHCfAF .panel-title {
  border-bottom: 1px solid #f4f8fa;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-rZljOHCfAF .card {
  margin-bottom: .5rem;
}
.cid-rZljOHCfAF .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rZljOHCfAF .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #0087ab;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rZljOHCfAF .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-rZljOHCfAF .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rZljOHCfAF .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
}
.cid-rZljOHCfAF .card .panel-body {
  background: #f4f8fa;
}
.cid-rZljOHCfAF .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-rZljOHCfAF .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-rZljOHCfAF .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-rZljOHCfAF .header-text,
.cid-rZljOHCfAF .sign {
  color: #ffffff;
}
.cid-rZljOHCfAF .mbr-section-title,
.cid-rZljOHCfAF .underline {
  color: #0a1c44;
}
.cid-rZljOHCfAF .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-rZljOHCfAF .box-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 15px 0 15px;
  font-weight: 400;
  color: #000000;
}
.cid-rZljOHCfAF .box-list li:last-child {
  border-bottom: none;
}
.cid-rZljOHCfAF .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #000000;
}
.cid-rZljOHCfAF .box-list li.display-7 {
  font-size: 14px;
  line-height: 24px;
}
.cid-rZljOHCfAF .box-list ul.display-7 {
  font-size: 14px;
  line-height: 24px;
}
.cid-s18uvGQm6P {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
.cid-s18uvGQm6P .container {
  bottom: -4rem;
  display: relative;
  max-width: 100%;
  height: 9rem;
  overflow: hidden;
}
.cid-s18uvGQm6P .box {
  height: 50%;
  background: #f4f8fa;
  width: 110%;
  position: relative;
  left: -20px;
  padding-left: 15px;
}
.cid-s18uvGQm6P .boxz {
  position: relative;
  height: 50%;
  background: transparent;
  width: 110%;
  left: -20px;
  padding-left: 15px;
}
.cid-s18uvGQm6P .schraege {
  z-index: 1;
  overflow: hidden;
  position: relative;
  height: 5rem;
  width: 130%;
  top: -7.5rem;
  left: -20px;
  padding-left: 15px;
  background: linear-gradient(to bottom, #f4f8fa, #0087ab);
  -webkit-transform: rotate(-2deg);
}
.cid-rZgAhOQol8 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: transparent;
}
.cid-rZgAhOQol8 .container {
  overflow: hidden;
}
.cid-rZgAhOQol8 .container .carousel.slide {
  padding: 60px 30px 40px;
  overflow: hidden;
  margin-top: 50px;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-indicators {
  bottom: 80px;
  right: -40px;
  left: unset;
  margin-bottom: 0rem;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-indicators li {
  bottom: 0;
  width: 15px;
  height: 15px;
  margin: 3px;
  background: #ffffff;
  border: 1px solid #e5e8ef;
  border-radius: 50%;
  opacity: 1;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-indicators .active {
  border: 1px solid #e5e8ef;
  background: #0087ab;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-item {
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-item .user_text {
  position: relative;
  color: #a38547;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-item .user_text p.display-7 {
  font-size: 14px;
  line-height: 18px;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-item .user_image {
  overflow: hidden;
  display: flex;
  padding-top: 25px;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-item .user_image .user_image_inner {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-item .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-item .user_image .user_info {
  margin-left: 20px;
  align-self: center;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-item .user_image .user_info .user_name {
  text-align: left;
  color: #0a1c44;
  padding-bottom: 5px;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-item .user_image .user_info .user_name.display-7 {
  letter-spacing: -0.5px;
  line-height: 24px;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-item .user_image .user_info .user_desk {
  text-align: left;
  font-style: italic;
  font-weight: 300;
  color: #a38547;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-item .user_image .user_info .user_desk.display-4 {
  font-size: 13px;
  line-height: 1.5;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-item.active,
.cid-rZgAhOQol8 .container .carousel.slide .carousel-item-next,
.cid-rZgAhOQol8 .container .carousel.slide .carousel-item-prev {
  display: flex;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-controls a {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-controls a:hover span,
.cid-rZgAhOQol8 .container .carousel.slide .carousel-controls a:focus span {
  opacity: 1;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-controls .carousel-control-prev {
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-controls .carousel-control-next {
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-rZgAhOQol8 .ico1 {
  background-color: #ffffff;
  color: #0087ab;
  border-radius: 50%;
  padding: 22px;
  font-size: 2.5rem;
  position: absolute;
  z-index: 99;
  top: 10px;
  left: 70px;
  width: 85px;
  height: 85px;
  text-align: center;
  line-height: normal;
}
@media (min-width: 768px) {
  .cid-rZgAhOQol8 .mbr-section-title,
  .cid-rZgAhOQol8 .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-rZgAhOQol8 .user_text,
  .cid-rZgAhOQol8 .user_name,
  .cid-rZgAhOQol8 .user_desk {
    text-align: left !important;
  }
  .cid-rZgAhOQol8 .carousel-controls {
    display: none;
  }
  .cid-rZgAhOQol8 .carousel-indicators {
    bottom: 38px !important;
    margin-right: 20% !important;
  }
  .cid-rZgAhOQol8 .user_image {
    position: absolute;
    bottom: 0px !important;
    padding-left: 0px !important;
    padding-bottom: 20px !important;
    margin-left: 14px !important;
  }
  .cid-rZgAhOQol8 .user_info {
    margin-left: 0px !important;
  }
  .cid-rZgAhOQol8 .ico-line {
    padding-top: 25px !important;
  }
}
@media (min-width: 1200px) {
  .cid-rZgAhOQol8 .carousel-control-prev span {
    right: -1rem;
  }
  .cid-rZgAhOQol8 .carousel-control-next span {
    left: -1rem;
  }
  .cid-rZgAhOQol8 .user-text {
    padding-right: 2rem;
  }
  .cid-rZgAhOQol8 .carousel-control-prev,
  .cid-rZgAhOQol8 .carousel-control-next {
    -webkit-box-align: center;
    align-items: center;
  }
}
.cid-rZgAhOQol8 .ico-line {
  color: #ffaa01;
  display: flex;
}
.cid-rZgAhOQol8 .container .carousel.slide .carousel-item .user_text {
  color: #ffffff;
}
.cid-rZgAhOQol8 .radius {
  box-shadow: 2px 2px 8px #292929;
  border-radius: 4px;
  background-color: #0087ab;
}
.cid-s18DzNy4Zf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
.cid-s18DzNy4Zf .container {
  padding-top: 40px;
  top: -4rem;
  display: relative;
  max-width: 100%;
  height: 9rem;
  overflow: hidden;
}
.cid-s18DzNy4Zf .box {
  height: 50%;
  background: #f4f8fa;
  width: 110%;
  padding-top: 0px;
  position: relative;
  left: -20px;
  padding-left: 15px;
}
.cid-s18DzNy4Zf .boxz {
  position: relative;
  height: 50%;
  background: transparent;
  width: 110%;
  padding-bottom: 0px;
  left: -20px;
  padding-left: 15px;
}
.cid-s18DzNy4Zf .schraege {
  z-index: 1;
  overflow: hidden;
  position: relative;
  height: 5rem;
  width: 130%;
  top: -7.5rem;
  left: -20px;
  padding-top: 40px;
  padding-left: 15px;
  background: linear-gradient(to bottom, #f4f8fa, #0087ab);
  -webkit-transform: rotate(-2deg);
}
.cid-s2LHBIot2v {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #f4f8fa;
}
.cid-s2LHBIot2v H1 {
  color: #0a1c44;
  font-size: 1.25rem;
}
.cid-s2LHBIot2v .mbr-text,
.cid-s2LHBIot2v .mbr-section-btn {
  color: #000000;
}
.cid-s2LHBIot2v .img-box {
  position: relative;
}
.cid-s2LHBIot2v .card-ico span {
  font-size: 96px;
  color: #0087ab;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-s2LHBIot2v .card-ico .ico1 {
  background-color: #0087ab;
}
.cid-s2LHBIot2v .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 2.5rem !important;
}
.cid-s2LHBIot2v .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-s2LHBIot2v .img1 {
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: 1;
}
.cid-s2LHBIot2v .img2 {
  position: absolute;
  bottom: 0;
  right: 3rem;
  z-index: 2;
}
.cid-s2LHBIot2v img {
  width: 54%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(17, 46, 112, 0.35);
}
@media (max-width: 992px) {
  .cid-s2LHBIot2v .img-box {
    height: 500px;
  }
  .cid-s2LHBIot2v .img1 {
    left: 1rem;
  }
  .cid-s2LHBIot2v .img2 {
    right: 1rem;
  }
  .cid-s2LHBIot2v img {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .cid-s2LHBIot2v img {
    width: 60%;
  }
  .cid-s2LHBIot2v .img-box {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .cid-s2LHBIot2v .author-box {
    justify-content: center;
  }
  .cid-s2LHBIot2v .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-s2LHBIot2v .card .card-ico {
    margin-bottom: 2rem;
  }
  .cid-s2LHBIot2v .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-s2LHBIot2v .card-ico span {
    margin-right: 0rem;
  }
}
.cid-s2LHBIot2v .author-box {
  display: flex;
  flex-direction: row;
}
.cid-s2LHBIot2v .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-s2LHBIot2v .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-s2LHBIot2v h3,
.cid-s2LHBIot2v h4 {
  margin: 0;
  padding: 0;
}
.cid-s2LHBIot2v .card-title {
  color: #232323;
}
.cid-s2LHBIot2v H3,
.cid-s2LHBIot2v .mbr-section-subtitle {
  color: #0087ab;
}
.cid-s2LHBIot2v p {
  color: black;
  text-align: justify;
}
.cid-s2LHBIot2v ul {
  padding-left: 1.1rem;
}
.cid-s0qshC8kMq {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #f4f8fa;
}
.cid-s0qshC8kMq .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-s0qshC8kMq .head_info {
  text-align: center;
  margin-bottom: 10px;
}
.cid-s0qshC8kMq .head_info .mbr-subtitle {
  color: #0087ab;
  margin-bottom: 10px;
}
.cid-s0qshC8kMq .head_info .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-s0qshC8kMq .head_info .mbr-section-title {
  margin-bottom: 20px;
  color: #0087ab;
  font-weight: 700;
}
.cid-s0qshC8kMq .head_info .mbr-section-subtitle {
  color: #0087ab;
  font-weight: 700;
}
.cid-s0qshC8kMq .head_info .mbr-section-title.display-2 {
  line-height: 48px;
  letter-spacing: -0.5px;
}
.cid-s0qshC8kMq .head_info .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 0;
  color: #a38547;
}
.cid-s0qshC8kMq .head_info .mbr-section-text.display-7 {
  line-height: 28px;
  letter-spacing: 0;
}
.cid-s0qshC8kMq textarea {
  min-height: 80px;
}
.cid-s0qshC8kMq .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #0087ab;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}
.cid-s0qshC8kMq .form-control,
.cid-s0qshC8kMq .field-input {
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #767676;
  color: #767676 !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 8px;
  outline: none;
}
.cid-s0qshC8kMq .form-control input::-webkit-input-placeholder,
.cid-s0qshC8kMq .field-input input::-webkit-input-placeholder,
.cid-s0qshC8kMq .form-control textarea::-webkit-input-placeholder,
.cid-s0qshC8kMq .field-input textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-s0qshC8kMq .form-control input:-moz-placeholder,
.cid-s0qshC8kMq .field-input input:-moz-placeholder,
.cid-s0qshC8kMq .form-control textarea:-moz-placeholder,
.cid-s0qshC8kMq .field-input textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-s0qshC8kMq .form-control:hover,
.cid-s0qshC8kMq .field-input:hover,
.cid-s0qshC8kMq .form-control:focus,
.cid-s0qshC8kMq .field-input:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-s0qshC8kMq .form-control:hover input::-webkit-input-placeholder,
.cid-s0qshC8kMq .field-input:hover input::-webkit-input-placeholder,
.cid-s0qshC8kMq .form-control:focus input::-webkit-input-placeholder,
.cid-s0qshC8kMq .field-input:focus input::-webkit-input-placeholder,
.cid-s0qshC8kMq .form-control:hover textarea::-webkit-input-placeholder,
.cid-s0qshC8kMq .field-input:hover textarea::-webkit-input-placeholder,
.cid-s0qshC8kMq .form-control:focus textarea::-webkit-input-placeholder,
.cid-s0qshC8kMq .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-s0qshC8kMq .form-control:hover input:-moz-placeholder,
.cid-s0qshC8kMq .field-input:hover input:-moz-placeholder,
.cid-s0qshC8kMq .form-control:focus input:-moz-placeholder,
.cid-s0qshC8kMq .field-input:focus input:-moz-placeholder,
.cid-s0qshC8kMq .form-control:hover textarea:-moz-placeholder,
.cid-s0qshC8kMq .field-input:hover textarea:-moz-placeholder,
.cid-s0qshC8kMq .form-control:focus textarea:-moz-placeholder,
.cid-s0qshC8kMq .field-input:focus textarea:-moz-placeholder {
  color: #ffffff;
}
.cid-s0qshC8kMq .jq-number__spin:hover,
.cid-s0qshC8kMq .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-s0qshC8kMq .jq-number__spin {
  background-color: #ffffff;
  border-color: #767676;
  color: #767676;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s0qshC8kMq .jq-selectbox li,
.cid-s0qshC8kMq .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-s0qshC8kMq .jq-selectbox li:hover,
.cid-s0qshC8kMq .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-s0qshC8kMq .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-s0qshC8kMq .jq-number__spin.minus:hover:after,
.cid-s0qshC8kMq .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-s0qshC8kMq .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-s0qshC8kMq .jq-number__spin.minus:after,
.cid-s0qshC8kMq .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-s0qshC8kMq input::-webkit-clear-button {
  display: none;
}
.cid-s0qshC8kMq input::-webkit-inner-spin-button {
  display: none;
}
.cid-s0qshC8kMq input::-webkit-outer-spin-button {
  display: none;
}
.cid-s0qshC8kMq input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-s0qshC8kMq .head_info .mbr-section-title {
  color: #0a1c44;
}
.cid-s18EgXXbE7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
.cid-s18EgXXbE7 .container {
  padding-top: 40px;
  top: -3rem;
  display: relative;
  max-width: 100%;
  height: 8rem;
  overflow: hidden;
}
.cid-s18EgXXbE7 .box {
  height: 50%;
  background: transparent;
  width: 110%;
  padding-top: 0px;
  position: relative;
  left: -20px;
  padding-left: 15px;
}
.cid-s18EgXXbE7 .boxz {
  position: relative;
  height: 50%;
  background: #f4f8fa;
  width: 110%;
  padding-bottom: 0px;
  left: -20px;
  padding-left: 15px;
}
.cid-s18EgXXbE7 .schraege {
  z-index: 1;
  overflow: hidden;
  position: relative;
  height: 5rem;
  width: 130%;
  top: -7rem;
  left: -20px;
  padding-top: 40px;
  padding-left: 15px;
  background: linear-gradient(to bottom, #f4f8fa, #0087ab);
  -webkit-transform: rotate(-2deg);
}
.cid-s148bQ0Uev {
  max-width: 100%;
  overflow-x: hidden;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-s148bQ0Uev .card-wrapper {
  overflow: hidden;
  height: 100%;
  padding: 0;
  display: flex;
}
.cid-s148bQ0Uev .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-s148bQ0Uev p {
  line-height: 1.5;
}
.cid-s148bQ0Uev .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-s148bQ0Uev .ico-line {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
}
.cid-s148bQ0Uev .ico-line h3 {
  margin: 0;
}
.cid-s148bQ0Uev .mail,
.cid-s148bQ0Uev .phone,
.cid-s148bQ0Uev .mbr-iconfont {
  display: inline-block;
}
.cid-s148bQ0Uev .card-title {
  color: #149dcc;
  margin: 0;
  align: left;
}
.cid-s148bQ0Uev .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  width: 30%;
  margin: auto;
}
.cid-s148bQ0Uev .card-box {
  padding-left: 1rem;
  width: 70%;
  margin: auto 0;
}
.cid-s148bQ0Uev .mbr-section-title,
.cid-s148bQ0Uev .line-wrap {
  text-align: center;
  color: #0a1c44;
}
.cid-s148bQ0Uev .mail {
  color: #0087ab;
}
.cid-s148bQ0Uev .card-title {
  color: #0087ab;
  text-align: left;
}
.cid-s148bQ0Uev .mbr-subtitle,
.cid-s148bQ0Uev .mbr-section-btn {
  text-align: center;
  color: #0087ab;
}
@media (max-width: 576px) {
  .cid-s148bQ0Uev .card-title {
    text-align: center;
  }
}
.cid-s2ct40yIow {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #0087ab;
  position: relative;
  overflow: hidden;
}
.cid-s2ct40yIow .container {
  max-width: 1400px;
}
.cid-s2ct40yIow .card-img2 span {
  padding-top: 6px;
}
.cid-s2ct40yIow .soc-item a {
  padding-top: 5px;
}
.cid-s2ct40yIow .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-s2ct40yIow .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-s2ct40yIow .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-s2ct40yIow .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-s2ct40yIow svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-s2ct40yIow #e2_shape {
  fill: #f4f8fa !important;
}
.cid-s2ct40yIow .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-s2ct40yIow .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-s2ct40yIow .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s2ct40yIow .card-img {
  width: auto;
}
.cid-s2ct40yIow .soc-item {
  width: 45px;
  height: 45px;
  background: #f4f8fa;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-s2ct40yIow .soc-item span {
  font-size: 1.4rem;
}
.cid-s2ct40yIow .soc-item:hover span {
  color: #0087ab !important;
}
.cid-s2ct40yIow .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-s2ct40yIow .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-s2ct40yIow .media-wrap {
  margin-bottom: 1rem;
}
.cid-s2ct40yIow .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s2ct40yIow img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-s2ct40yIow .item {
    justify-content: center;
  }
  .cid-s2ct40yIow .quote::after {
    left: 60px;
  }
}
.cid-s2ct40yIow .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-s2ct40yIow .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s2ct40yIow .text1 {
  color: #ffffff;
}
.cid-s2ct40yIow .item-title {
  color: #ffffff;
}
.cid-s2ct40yIow H5 {
  color: #ffffff;
}
.cid-s2ct40yIow .theme {
  color: #ffffff;
}
.cid-s2ct40yIow .copyright > p {
  color: #ff3366;
}
.cid-s2ct40yIow .text2 {
  color: #ffffff;
}
.cid-s2ct40yIow H3 {
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-rWeFfVIHTE {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #0087ab;
}
.cid-rWeFfVIHTE .container-fluid {
  padding: 0 3rem;
}
.cid-rWeFfVIHTE .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: white;
}
.cid-rWeFfVIHTE .mbr-list li {
  margin-bottom: 0.6rem;
  color: white;
  font-size: 0.6rem;
}
.cid-rWeFfVIHTE .logo-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cid-rWeFfVIHTE .mbr-section-title {
  margin-bottom: 1.0rem;
  font-size: 0.8rem;
}
.cid-rWeFfVIHTE .social-media {
  margin-top: 1.5rem;
}
.cid-rWeFfVIHTE .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-rWeFfVIHTE .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-rWeFfVIHTE .mbr-text,
.cid-rWeFfVIHTE .mbr-offer {
  line-height: 1.5;
  color: white;
}
.cid-rWeFfVIHTE .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-rWeFfVIHTE .container-fluid {
    padding: 0 1rem;
  }
  .cid-rWeFfVIHTE .mbr-section-title {
    margin-bottom: 1.0rem;
    font-size: 0.8rem;
  }
  .cid-rWeFfVIHTE .mbr-list {
    margin-bottom: 2rem;
    color: white;
  }
  .cid-rWeFfVIHTE .mbr-list li {
    margin-bottom: .5rem;
    color: white;
  }
  .cid-rWeFfVIHTE .handy {
    display: none;
  }
}
.cid-rWeFfVIHTE .mbr-text,
.cid-rWeFfVIHTE .social-media,
.cid-rWeFfVIHTE .logo-section {
  color: #ffffff;
  text-align: center;
}
.cid-sQUSyhpFmB.popup-builder {
  background-color: #ffffff;
}
.cid-sQUSyhpFmB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sQUSyhpFmB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sQUSyhpFmB .modal-content,
.cid-sQUSyhpFmB .modal-dialog {
  height: auto;
}
.cid-sQUSyhpFmB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sQUSyhpFmB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sQUSyhpFmB .form-wrapper .mbr-form .form-group,
  .cid-sQUSyhpFmB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sQUSyhpFmB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sQUSyhpFmB .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-sQUSyhpFmB .mbr-text {
  text-align: center;
}
.cid-sQUSyhpFmB .pt-0 {
  padding-top: 0 !important;
}
.cid-sQUSyhpFmB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sQUSyhpFmB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sQUSyhpFmB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sQUSyhpFmB .modal-open {
  overflow: hidden;
}
.cid-sQUSyhpFmB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sQUSyhpFmB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sQUSyhpFmB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sQUSyhpFmB .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-sQUSyhpFmB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sQUSyhpFmB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sQUSyhpFmB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sQUSyhpFmB .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-sQUSyhpFmB .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sQUSyhpFmB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sQUSyhpFmB .modal-backdrop.fade {
  opacity: 0;
}
.cid-sQUSyhpFmB .modal-backdrop.show {
  opacity: .5;
}
.cid-sQUSyhpFmB .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-sQUSyhpFmB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sQUSyhpFmB .modal-header {
    padding: 1rem;
  }
}
.cid-sQUSyhpFmB .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sQUSyhpFmB .modal-header .close svg {
  fill: #353535;
}
.cid-sQUSyhpFmB .modal-header .close:hover {
  opacity: 1;
}
.cid-sQUSyhpFmB .modal-header .close:focus {
  outline: none;
}
.cid-sQUSyhpFmB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sQUSyhpFmB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sQUSyhpFmB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sQUSyhpFmB .modal-body {
    padding: 1rem;
  }
}
.cid-sQUSyhpFmB .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-sQUSyhpFmB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sQUSyhpFmB .modal-footer {
    padding: 1rem;
  }
}
.cid-sQUSyhpFmB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sQUSyhpFmB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sQUSyhpFmB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sQUSyhpFmB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sQUSyhpFmB .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sQUSyhpFmB .modal-lg,
  .cid-sQUSyhpFmB .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sQUSyhpFmB .modal-xl {
    max-width: 1140px;
  }
}
.cid-sQUSyhpFmB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sQUSyhpFmB .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-sQUSyhpFmB .form-group {
  margin-bottom: 1rem;
}
.cid-sQUSyhpFmB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sQUSyhpFmB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sQUSyhpFmB .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-sQUSyhpFmB .mbr-section-btn {
  margin: 0;
}
.cid-sQUSyhpFmB .mbr-section-btn .btn {
  margin: 0;
}
.cid-s1DzfPtL4M.popup-builder {
  background-color: #ffffff;
}
.cid-s1DzfPtL4M.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s1DzfPtL4M.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s1DzfPtL4M .modal-content,
.cid-s1DzfPtL4M .modal-dialog {
  height: auto;
}
.cid-s1DzfPtL4M .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s1DzfPtL4M .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s1DzfPtL4M .form-wrapper .mbr-form .form-group,
  .cid-s1DzfPtL4M .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s1DzfPtL4M .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s1DzfPtL4M .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-s1DzfPtL4M .mbr-text {
  text-align: center;
}
.cid-s1DzfPtL4M .pt-0 {
  padding-top: 0 !important;
}
.cid-s1DzfPtL4M .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s1DzfPtL4M .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s1DzfPtL4M .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s1DzfPtL4M .modal-open {
  overflow: hidden;
}
.cid-s1DzfPtL4M .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s1DzfPtL4M .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s1DzfPtL4M .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s1DzfPtL4M .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-s1DzfPtL4M .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s1DzfPtL4M .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s1DzfPtL4M .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s1DzfPtL4M .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-s1DzfPtL4M .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s1DzfPtL4M .modal-backdrop.fade {
  opacity: 0;
}
.cid-s1DzfPtL4M .modal-backdrop.show {
  opacity: .5;
}
.cid-s1DzfPtL4M .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s1DzfPtL4M .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s1DzfPtL4M .modal-header .close:hover {
  opacity: 1;
}
.cid-s1DzfPtL4M .modal-header .close:focus {
  outline: none;
}
.cid-s1DzfPtL4M .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0a1c44;
}
.cid-s1DzfPtL4M .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s1DzfPtL4M .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s1DzfPtL4M .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s1DzfPtL4M .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s1DzfPtL4M .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s1DzfPtL4M .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s1DzfPtL4M .modal-sm {
    max-width: 300px;
  }
  .cid-s1DzfPtL4M .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s1DzfPtL4M .modal-lg,
  .cid-s1DzfPtL4M .modal-xl {
    max-width: 800px;
  }
  .cid-s1DzfPtL4M .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s1DzfPtL4M .modal-xl {
    max-width: 1140px;
  }
  .cid-s1DzfPtL4M .container {
    max-width: 1140px;
  }
}
.cid-s1DzfPtL4M .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s1DzfPtL4M .container {
    max-width: 720px;
  }
}
.cid-s1DzfPtL4M .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s1DzfPtL4M .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-s1DzfPtL4M .form-group {
  margin-bottom: 1rem;
}
.cid-s1DzfPtL4M .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s1DzfPtL4M .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s1DzfPtL4M .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-s1DzfPtL4M LABEL {
  text-align: left;
}
.cid-rYSzav7Db1.popup-builder {
  background-color: #ffffff;
}
.cid-rYSzav7Db1.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rYSzav7Db1.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rYSzav7Db1 .modal-content,
.cid-rYSzav7Db1 .modal-dialog {
  height: auto;
}
.cid-rYSzav7Db1 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rYSzav7Db1 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rYSzav7Db1 .form-wrapper .mbr-form .form-group,
  .cid-rYSzav7Db1 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rYSzav7Db1 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rYSzav7Db1 .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-rYSzav7Db1 .mbr-text {
  text-align: left;
}
.cid-rYSzav7Db1 .pt-0 {
  padding-top: 0 !important;
}
.cid-rYSzav7Db1 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rYSzav7Db1 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rYSzav7Db1 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rYSzav7Db1 .modal-open {
  overflow: hidden;
}
.cid-rYSzav7Db1 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rYSzav7Db1 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rYSzav7Db1 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rYSzav7Db1 .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-rYSzav7Db1 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rYSzav7Db1 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rYSzav7Db1 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rYSzav7Db1 .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-rYSzav7Db1 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rYSzav7Db1 .modal-backdrop.fade {
  opacity: 0;
}
.cid-rYSzav7Db1 .modal-backdrop.show {
  opacity: .5;
}
.cid-rYSzav7Db1 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rYSzav7Db1 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rYSzav7Db1 .modal-header .close:hover {
  opacity: 1;
}
.cid-rYSzav7Db1 .modal-header .close:focus {
  outline: none;
}
.cid-rYSzav7Db1 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-rYSzav7Db1 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rYSzav7Db1 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rYSzav7Db1 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rYSzav7Db1 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rYSzav7Db1 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rYSzav7Db1 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rYSzav7Db1 .modal-sm {
    max-width: 300px;
  }
  .cid-rYSzav7Db1 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rYSzav7Db1 .modal-lg,
  .cid-rYSzav7Db1 .modal-xl {
    max-width: 800px;
  }
  .cid-rYSzav7Db1 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rYSzav7Db1 .modal-xl {
    max-width: 1140px;
  }
  .cid-rYSzav7Db1 .container {
    max-width: 1140px;
  }
}
.cid-rYSzav7Db1 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rYSzav7Db1 .container {
    max-width: 720px;
  }
}
.cid-rYSzav7Db1 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rYSzav7Db1 .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-rYSzav7Db1 .form-group {
  margin-bottom: 1rem;
}
.cid-rYSzav7Db1 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rYSzav7Db1 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rYSzav7Db1 .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-rQu1OF3MNi .hide-sea {
  display: flex;
}
.cid-rQu1OF3MNi .hide-sea-inline {
  display: inline-block;
}
.cid-rQu1OF3MNi .show-sea,
.cid-rQu1OF3MNi .show-sea-inline {
  display: none;
}
.cid-rQu1OF3MNi .navbar {
  padding: 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-rQu1OF3MNi .navbar-fixed-top {
  padding-top: 0;
}
.cid-rQu1OF3MNi .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rQu1OF3MNi .dropdown-item {
  padding: 0;
}
.cid-rQu1OF3MNi .dropdown-menu {
  border: 0px solid lightgray;
  background: #0087ab !important;
}
.cid-rQu1OF3MNi .menu-content-top {
  max-width: 1200px;
  display: none;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-rQu1OF3MNi .menu-bottom {
  margin: auto;
  width: 100%;
  background: #0087ab;
  display: flex;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rQu1OF3MNi .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rQu1OF3MNi a {
  font-style: normal;
}
.cid-rQu1OF3MNi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rQu1OF3MNi .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 .5rem !important;
  color: #ffffff;
}
.cid-rQu1OF3MNi .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-rQu1OF3MNi .content-text {
  margin-bottom: 0;
}
.cid-rQu1OF3MNi .navbar-nav {
  position: relative;
  min-height: 46px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rQu1OF3MNi .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0087ab;
    -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-rQu1OF3MNi .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rQu1OF3MNi .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rQu1OF3MNi .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-rQu1OF3MNi .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rQu1OF3MNi .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rQu1OF3MNi .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rQu1OF3MNi .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rQu1OF3MNi .nav-dropdown .link {
  font-weight: 400;
}
.cid-rQu1OF3MNi .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rQu1OF3MNi .content-right-side {
  text-align: center;
}
.cid-rQu1OF3MNi .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rQu1OF3MNi .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rQu1OF3MNi .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-rQu1OF3MNi .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-rQu1OF3MNi .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rQu1OF3MNi .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rQu1OF3MNi .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rQu1OF3MNi .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rQu1OF3MNi .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-rQu1OF3MNi .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-rQu1OF3MNi .navbar .menu-content-top {
    display: flex;
    min-height: 80px;
    height: 100%;
  }
  .cid-rQu1OF3MNi .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rQu1OF3MNi .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-rQu1OF3MNi .navbar {
    display: block;
    padding: 0;
  }
  .cid-rQu1OF3MNi .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rQu1OF3MNi .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4rem - 4.5rem);
  }
  .cid-rQu1OF3MNi .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 46px;
  }
  .cid-rQu1OF3MNi .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item:not(.show-sea):not(.hide-sea) {
    display: flex;
  }
  .cid-rQu1OF3MNi .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rQu1OF3MNi .navbar-toggler {
    display: none;
  }
  .cid-rQu1OF3MNi .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rQu1OF3MNi .mobile {
    display: none !important;
  }
}
.cid-rQu1OF3MNi .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-rQu1OF3MNi .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rQu1OF3MNi .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rQu1OF3MNi .menu-logo {
  margin-right: auto;
}
.cid-rQu1OF3MNi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rQu1OF3MNi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rQu1OF3MNi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rQu1OF3MNi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rQu1OF3MNi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rQu1OF3MNi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rQu1OF3MNi .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rQu1OF3MNi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rQu1OF3MNi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rQu1OF3MNi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rQu1OF3MNi .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rQu1OF3MNi .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rQu1OF3MNi .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-rQu1OF3MNi .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-rQu1OF3MNi .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rQu1OF3MNi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rQu1OF3MNi .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-rQu1OF3MNi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rQu1OF3MNi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rQu1OF3MNi .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-rQu1OF3MNi .navbar.navbar-short {
  min-height: 44px;
  transition: all .2s;
}
.cid-rQu1OF3MNi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rQu1OF3MNi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rQu1OF3MNi .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rQu1OF3MNi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rQu1OF3MNi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rQu1OF3MNi button.navbar-toggler:focus {
  outline: none;
}
.cid-rQu1OF3MNi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rQu1OF3MNi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rQu1OF3MNi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rQu1OF3MNi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rQu1OF3MNi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rQu1OF3MNi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQu1OF3MNi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rQu1OF3MNi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rQu1OF3MNi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQu1OF3MNi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rQu1OF3MNi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rQu1OF3MNi .collapsed .btn {
  display: flex;
}
.cid-rQu1OF3MNi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rQu1OF3MNi .collapsed .navbar-collapse.collapsing,
.cid-rQu1OF3MNi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rQu1OF3MNi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rQu1OF3MNi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rQu1OF3MNi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rQu1OF3MNi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rQu1OF3MNi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rQu1OF3MNi .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-rQu1OF3MNi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rQu1OF3MNi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rQu1OF3MNi .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rQu1OF3MNi .collapsed button.navbar-toggler {
  display: block;
}
.cid-rQu1OF3MNi .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rQu1OF3MNi .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rQu1OF3MNi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rQu1OF3MNi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rQu1OF3MNi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rQu1OF3MNi .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rQu1OF3MNi .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-rQu1OF3MNi .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rQu1OF3MNi .navbar-collapse.collapsing,
  .cid-rQu1OF3MNi .navbar-collapse.show {
    display: block !important;
  }
  .cid-rQu1OF3MNi .navbar-collapse.collapsing .navbar-nav,
  .cid-rQu1OF3MNi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-rQu1OF3MNi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rQu1OF3MNi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rQu1OF3MNi .navbar-collapse.collapsing .navbar-buttons,
  .cid-rQu1OF3MNi .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-rQu1OF3MNi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rQu1OF3MNi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rQu1OF3MNi .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: left;
    justify-content: left;
  }
  .cid-rQu1OF3MNi img {
    height: 3.8rem !important;
  }
  .cid-rQu1OF3MNi .btn {
    display: flex;
  }
  .cid-rQu1OF3MNi button.navbar-toggler {
    display: block;
  }
  .cid-rQu1OF3MNi .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rQu1OF3MNi .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rQu1OF3MNi .dropdown .dropdown-menu {
    width: 100%;
    text-align: left;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rQu1OF3MNi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rQu1OF3MNi .dropdown .dropdown-submenu {
    left: 0;
    text-align: left;
    width: 100%;
  }
  .cid-rQu1OF3MNi .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: left;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rQu1OF3MNi .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rQu1OF3MNi .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-rQu1OF3MNi .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rQu1OF3MNi .nav-link:focus {
  outline: none;
}
.cid-rQu1OF3MNi .navbar-toggler {
  position: relative;
}
.cid-rQu1OF3MNi .dropdown-item.active,
.cid-rQu1OF3MNi .dropdown-item:active {
  background: #0087ab;
  color: initial;
}
#Hintergrund {
  /* Type valid CSS here */
}
.cid-s2tr9EIYEG.popup-builder {
  background-color: #ffffff;
}
.cid-s2tr9EIYEG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s2tr9EIYEG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s2tr9EIYEG .modal-content,
.cid-s2tr9EIYEG .modal-dialog {
  height: auto;
}
.cid-s2tr9EIYEG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s2tr9EIYEG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s2tr9EIYEG .form-wrapper .mbr-form .form-group,
  .cid-s2tr9EIYEG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s2tr9EIYEG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s2tr9EIYEG .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-s2tr9EIYEG .mbr-text {
  text-align: center;
  color: #0087ab;
}
.cid-s2tr9EIYEG .pt-0 {
  padding-top: 0 !important;
}
.cid-s2tr9EIYEG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s2tr9EIYEG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s2tr9EIYEG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s2tr9EIYEG .modal-open {
  overflow: hidden;
}
.cid-s2tr9EIYEG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s2tr9EIYEG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s2tr9EIYEG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s2tr9EIYEG .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-s2tr9EIYEG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s2tr9EIYEG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s2tr9EIYEG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s2tr9EIYEG .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-s2tr9EIYEG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s2tr9EIYEG .modal-backdrop.fade {
  opacity: 0;
}
.cid-s2tr9EIYEG .modal-backdrop.show {
  opacity: .5;
}
.cid-s2tr9EIYEG .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s2tr9EIYEG .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s2tr9EIYEG .modal-header .close:hover {
  opacity: 1;
}
.cid-s2tr9EIYEG .modal-header .close:focus {
  outline: none;
}
.cid-s2tr9EIYEG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0a1c44;
}
.cid-s2tr9EIYEG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s2tr9EIYEG .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s2tr9EIYEG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s2tr9EIYEG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s2tr9EIYEG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s2tr9EIYEG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s2tr9EIYEG .modal-sm {
    max-width: 300px;
  }
  .cid-s2tr9EIYEG .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s2tr9EIYEG .modal-lg,
  .cid-s2tr9EIYEG .modal-xl {
    max-width: 800px;
  }
  .cid-s2tr9EIYEG .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s2tr9EIYEG .modal-xl {
    max-width: 1140px;
  }
  .cid-s2tr9EIYEG .container {
    max-width: 1140px;
  }
}
.cid-s2tr9EIYEG .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s2tr9EIYEG .container {
    max-width: 720px;
  }
}
.cid-s2tr9EIYEG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s2tr9EIYEG .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-s2tr9EIYEG .form-group {
  margin-bottom: 1rem;
}
.cid-s2tr9EIYEG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s2tr9EIYEG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s2tr9EIYEG .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-sucfgTvV9J.popup-builder {
  background-color: #ffffff;
}
.cid-sucfgTvV9J.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sucfgTvV9J.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sucfgTvV9J .modal-content,
.cid-sucfgTvV9J .modal-dialog {
  height: auto;
}
.cid-sucfgTvV9J .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sucfgTvV9J .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sucfgTvV9J .form-wrapper .mbr-form .form-group,
  .cid-sucfgTvV9J .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sucfgTvV9J .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sucfgTvV9J .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-sucfgTvV9J .mbr-text {
  text-align: center;
}
.cid-sucfgTvV9J .pt-0 {
  padding-top: 0 !important;
}
.cid-sucfgTvV9J .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sucfgTvV9J .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sucfgTvV9J .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sucfgTvV9J .modal-open {
  overflow: hidden;
}
.cid-sucfgTvV9J .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sucfgTvV9J .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sucfgTvV9J .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sucfgTvV9J .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-sucfgTvV9J .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sucfgTvV9J .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sucfgTvV9J .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sucfgTvV9J .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-sucfgTvV9J .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sucfgTvV9J .modal-backdrop.fade {
  opacity: 0;
}
.cid-sucfgTvV9J .modal-backdrop.show {
  opacity: .5;
}
.cid-sucfgTvV9J .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sucfgTvV9J .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sucfgTvV9J .modal-header .close:hover {
  opacity: 1;
}
.cid-sucfgTvV9J .modal-header .close:focus {
  outline: none;
}
.cid-sucfgTvV9J .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0a1c44;
}
.cid-sucfgTvV9J .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sucfgTvV9J .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sucfgTvV9J .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sucfgTvV9J .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sucfgTvV9J .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sucfgTvV9J .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sucfgTvV9J .modal-sm {
    max-width: 300px;
  }
  .cid-sucfgTvV9J .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sucfgTvV9J .modal-lg,
  .cid-sucfgTvV9J .modal-xl {
    max-width: 800px;
  }
  .cid-sucfgTvV9J .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sucfgTvV9J .modal-xl {
    max-width: 1140px;
  }
  .cid-sucfgTvV9J .container {
    max-width: 1140px;
  }
}
.cid-sucfgTvV9J .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sucfgTvV9J .container {
    max-width: 720px;
  }
}
.cid-sucfgTvV9J .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sucfgTvV9J .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-sucfgTvV9J .form-group {
  margin-bottom: 1rem;
}
.cid-sucfgTvV9J .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sucfgTvV9J .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sucfgTvV9J .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-v4H79sUkED.popup-builder {
  background-color: #ffffff;
}
.cid-v4H79sUkED.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v4H79sUkED.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v4H79sUkED .modal-content,
.cid-v4H79sUkED .modal-dialog {
  height: auto;
}
.cid-v4H79sUkED .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v4H79sUkED .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v4H79sUkED .form-wrapper .mbr-form .form-group,
  .cid-v4H79sUkED .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v4H79sUkED .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v4H79sUkED .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-v4H79sUkED .mbr-text {
  text-align: center;
}
.cid-v4H79sUkED .pt-0 {
  padding-top: 0 !important;
}
.cid-v4H79sUkED .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v4H79sUkED .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v4H79sUkED .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v4H79sUkED .modal-open {
  overflow: hidden;
}
.cid-v4H79sUkED .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v4H79sUkED .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v4H79sUkED .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v4H79sUkED .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-v4H79sUkED .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v4H79sUkED .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v4H79sUkED .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v4H79sUkED .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-v4H79sUkED .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v4H79sUkED .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v4H79sUkED .modal-backdrop.fade {
  opacity: 0;
}
.cid-v4H79sUkED .modal-backdrop.show {
  opacity: .5;
}
.cid-v4H79sUkED .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-v4H79sUkED .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v4H79sUkED .modal-header {
    padding: 1rem;
  }
}
.cid-v4H79sUkED .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v4H79sUkED .modal-header .close svg {
  fill: #353535;
}
.cid-v4H79sUkED .modal-header .close:hover {
  opacity: 1;
}
.cid-v4H79sUkED .modal-header .close:focus {
  outline: none;
}
.cid-v4H79sUkED .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v4H79sUkED .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v4H79sUkED .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4H79sUkED .modal-body {
    padding: 1rem;
  }
}
.cid-v4H79sUkED .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-v4H79sUkED .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4H79sUkED .modal-footer {
    padding: 1rem;
  }
}
.cid-v4H79sUkED .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v4H79sUkED .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v4H79sUkED .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v4H79sUkED .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v4H79sUkED .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v4H79sUkED .modal-lg,
  .cid-v4H79sUkED .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v4H79sUkED .modal-xl {
    max-width: 1140px;
  }
}
.cid-v4H79sUkED .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v4H79sUkED .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-v4H79sUkED .form-group {
  margin-bottom: 1rem;
}
.cid-v4H79sUkED .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v4H79sUkED .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v4H79sUkED .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-v4H79sUkED .mbr-section-btn {
  margin: 0;
}
.cid-v4H79sUkED .mbr-section-btn .btn {
  margin: 0;
}
.cid-v5zmBSaQqK .hide-sea {
  display: flex;
}
.cid-v5zmBSaQqK .hide-sea-inline {
  display: inline-block;
}
.cid-v5zmBSaQqK .show-sea,
.cid-v5zmBSaQqK .show-sea-inline {
  display: none;
}
.cid-v5zmBSaQqK .navbar {
  padding: 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-v5zmBSaQqK .navbar-fixed-top {
  padding-top: 0;
}
.cid-v5zmBSaQqK .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-v5zmBSaQqK .dropdown-item {
  padding: 0;
}
.cid-v5zmBSaQqK .dropdown-menu {
  border: 0px solid lightgray;
  background: #0087ab !important;
}
.cid-v5zmBSaQqK .menu-content-top {
  max-width: 1200px;
  display: none;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-v5zmBSaQqK .menu-bottom {
  margin: auto;
  width: 100%;
  background: #0087ab;
  display: flex;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v5zmBSaQqK .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v5zmBSaQqK a {
  font-style: normal;
}
.cid-v5zmBSaQqK .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-v5zmBSaQqK .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 .5rem !important;
  color: #ffffff;
}
.cid-v5zmBSaQqK .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-v5zmBSaQqK .content-text {
  margin-bottom: 0;
}
.cid-v5zmBSaQqK .navbar-nav {
  position: relative;
  min-height: 46px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v5zmBSaQqK .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0087ab;
    -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-v5zmBSaQqK .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-v5zmBSaQqK .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-v5zmBSaQqK .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-v5zmBSaQqK .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v5zmBSaQqK .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v5zmBSaQqK .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-v5zmBSaQqK .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v5zmBSaQqK .nav-dropdown .link {
  font-weight: 400;
}
.cid-v5zmBSaQqK .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v5zmBSaQqK .content-right-side {
  text-align: center;
}
.cid-v5zmBSaQqK .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-v5zmBSaQqK .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-v5zmBSaQqK .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-v5zmBSaQqK .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-v5zmBSaQqK .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v5zmBSaQqK .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-v5zmBSaQqK .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-v5zmBSaQqK .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-v5zmBSaQqK .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-v5zmBSaQqK .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-v5zmBSaQqK .navbar .menu-content-top {
    display: flex;
    min-height: 80px;
    height: 100%;
  }
  .cid-v5zmBSaQqK .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v5zmBSaQqK .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-v5zmBSaQqK .navbar {
    display: block;
    padding: 0;
  }
  .cid-v5zmBSaQqK .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v5zmBSaQqK .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4rem - 4.5rem);
  }
  .cid-v5zmBSaQqK .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 46px;
  }
  .cid-v5zmBSaQqK .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item:not(.show-sea):not(.hide-sea) {
    display: flex;
  }
  .cid-v5zmBSaQqK .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-v5zmBSaQqK .navbar-toggler {
    display: none;
  }
  .cid-v5zmBSaQqK .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-v5zmBSaQqK .mobile {
    display: none !important;
  }
}
.cid-v5zmBSaQqK .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-v5zmBSaQqK .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v5zmBSaQqK .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-v5zmBSaQqK .menu-logo {
  margin-right: auto;
}
.cid-v5zmBSaQqK .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v5zmBSaQqK .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v5zmBSaQqK .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v5zmBSaQqK .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v5zmBSaQqK .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v5zmBSaQqK .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v5zmBSaQqK .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-v5zmBSaQqK .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v5zmBSaQqK .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5zmBSaQqK .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v5zmBSaQqK .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v5zmBSaQqK .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v5zmBSaQqK .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-v5zmBSaQqK .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-v5zmBSaQqK .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-v5zmBSaQqK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v5zmBSaQqK .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-v5zmBSaQqK .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v5zmBSaQqK .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5zmBSaQqK .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-v5zmBSaQqK .navbar.navbar-short {
  min-height: 44px;
  transition: all .2s;
}
.cid-v5zmBSaQqK .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v5zmBSaQqK .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v5zmBSaQqK .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v5zmBSaQqK .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v5zmBSaQqK button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5zmBSaQqK button.navbar-toggler:focus {
  outline: none;
}
.cid-v5zmBSaQqK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v5zmBSaQqK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v5zmBSaQqK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v5zmBSaQqK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v5zmBSaQqK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v5zmBSaQqK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v5zmBSaQqK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v5zmBSaQqK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v5zmBSaQqK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v5zmBSaQqK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v5zmBSaQqK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v5zmBSaQqK .collapsed .btn {
  display: flex;
}
.cid-v5zmBSaQqK .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v5zmBSaQqK .collapsed .navbar-collapse.collapsing,
.cid-v5zmBSaQqK .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v5zmBSaQqK .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v5zmBSaQqK .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v5zmBSaQqK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v5zmBSaQqK .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v5zmBSaQqK .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v5zmBSaQqK .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-v5zmBSaQqK .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v5zmBSaQqK .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v5zmBSaQqK .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v5zmBSaQqK .collapsed button.navbar-toggler {
  display: block;
}
.cid-v5zmBSaQqK .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-v5zmBSaQqK .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v5zmBSaQqK .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v5zmBSaQqK .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v5zmBSaQqK .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v5zmBSaQqK .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-v5zmBSaQqK .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v5zmBSaQqK .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v5zmBSaQqK .navbar-collapse.collapsing,
  .cid-v5zmBSaQqK .navbar-collapse.show {
    display: block !important;
  }
  .cid-v5zmBSaQqK .navbar-collapse.collapsing .navbar-nav,
  .cid-v5zmBSaQqK .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-v5zmBSaQqK .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v5zmBSaQqK .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v5zmBSaQqK .navbar-collapse.collapsing .navbar-buttons,
  .cid-v5zmBSaQqK .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-v5zmBSaQqK .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v5zmBSaQqK .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v5zmBSaQqK .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: left;
    justify-content: left;
  }
  .cid-v5zmBSaQqK img {
    height: 3.8rem !important;
  }
  .cid-v5zmBSaQqK .btn {
    display: flex;
  }
  .cid-v5zmBSaQqK button.navbar-toggler {
    display: block;
  }
  .cid-v5zmBSaQqK .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-v5zmBSaQqK .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-v5zmBSaQqK .dropdown .dropdown-menu {
    width: 100%;
    text-align: left;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v5zmBSaQqK .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v5zmBSaQqK .dropdown .dropdown-submenu {
    left: 0;
    text-align: left;
    width: 100%;
  }
  .cid-v5zmBSaQqK .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: left;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-v5zmBSaQqK .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-v5zmBSaQqK .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-v5zmBSaQqK .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-v5zmBSaQqK .nav-link:focus {
  outline: none;
}
.cid-v5zmBSaQqK .navbar-toggler {
  position: relative;
}
.cid-v5zmBSaQqK .dropdown-item.active,
.cid-v5zmBSaQqK .dropdown-item:active {
  background: #0087ab;
  color: initial;
}
.cid-v5zmiPVTAY {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background6-1.jpg");
}
@media (max-width: 767px) {
  .cid-v5zmiPVTAY {
    padding-top: 40px;
  }
  .cid-v5zmiPVTAY .carousel-control-prev,
  .cid-v5zmiPVTAY .carousel-control-next {
    display: none;
  }
  .cid-v5zmiPVTAY .mbr-section-title {
    padding-bottom: 0;
  }
  .cid-v5zmiPVTAY .slider-testimonials {
    padding: 2rem 1rem;
  }
}
.cid-v5zmiPVTAY .mbr-section-title {
  margin: 0;
}
.cid-v5zmiPVTAY .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-v5zmiPVTAY .underline .line {
  width: 3rem;
  height: 2px;
  background: #ffffff;
  display: inline-block;
}
.cid-v5zmiPVTAY .slider-testimonials {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
  text-align: center;
}
.cid-v5zmiPVTAY .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v5zmiPVTAY .carousel-item.active,
.cid-v5zmiPVTAY .carousel-item-next,
.cid-v5zmiPVTAY .carousel-item-prev {
  display: flex;
}
.cid-v5zmiPVTAY .carousel-control {
  transition: all .3s;
  opacity: 1;
  background-color: #232323;
  color: #ffffff;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 46%;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-v5zmiPVTAY .carousel-control.carousel-control-prev {
  left: -25px;
}
.cid-v5zmiPVTAY .carousel-control.carousel-control-prev:hover {
  left: -30px;
}
.cid-v5zmiPVTAY .carousel-control.carousel-control-next {
  right: -25px;
}
.cid-v5zmiPVTAY .carousel-control.carousel-control-next:hover {
  right: -30px;
}
.cid-v5zmiPVTAY .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-v5zmiPVTAY .carousel-control:hover {
  background-color: #0087ab;
}
.cid-v5zmiPVTAY .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-v5zmiPVTAY .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-v5zmiPVTAY .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-v5zmiPVTAY .carousel-row:hover .carousel-control {
  visibility: visible;
}
.cid-v5zmiPVTAY .user_name,
.cid-v5zmiPVTAY .user_desk {
  text-align: right;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v5zmiPVTAY .slider-testimonials {
    min-width: 100%;
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  .cid-v5zmiPVTAY .carousel-control-prev {
    left: -40px !important;
  }
  .cid-v5zmiPVTAY .carousel-control-prev:hover {
    left: -45px !important;
  }
  .cid-v5zmiPVTAY .carousel-control-next {
    right: -40px !important;
  }
  .cid-v5zmiPVTAY .carousel-control-next:hover {
    right: -45px !important;
  }
}
.cid-v5zmiPVTAY H1 {
  font-size: 1.4rem;
}
.cid-v5zmiPVTAY .mbr-section-title,
.cid-v5zmiPVTAY .underline {
  color: #000000;
}
.cid-v5zmiPVTAY P {
  text-align: left;
}
.cid-v9xa2hhl1Y .hide-sea {
  display: flex;
}
.cid-v9xa2hhl1Y .hide-sea-inline {
  display: inline-block;
}
.cid-v9xa2hhl1Y .show-sea,
.cid-v9xa2hhl1Y .show-sea-inline {
  display: none;
}
.cid-v9xa2hhl1Y .navbar {
  padding: 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-v9xa2hhl1Y .navbar-fixed-top {
  padding-top: 0;
}
.cid-v9xa2hhl1Y .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-v9xa2hhl1Y .dropdown-item {
  padding: 0;
}
.cid-v9xa2hhl1Y .dropdown-menu {
  border: 0px solid lightgray;
  background: #0087ab !important;
}
.cid-v9xa2hhl1Y .menu-content-top {
  max-width: 1200px;
  display: none;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-v9xa2hhl1Y .menu-bottom {
  margin: auto;
  width: 100%;
  background: #0087ab;
  display: flex;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v9xa2hhl1Y .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v9xa2hhl1Y a {
  font-style: normal;
}
.cid-v9xa2hhl1Y .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-v9xa2hhl1Y .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 .5rem !important;
  color: #ffffff;
}
.cid-v9xa2hhl1Y .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-v9xa2hhl1Y .content-text {
  margin-bottom: 0;
}
.cid-v9xa2hhl1Y .navbar-nav {
  position: relative;
  min-height: 46px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v9xa2hhl1Y .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0087ab;
    -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-v9xa2hhl1Y .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-v9xa2hhl1Y .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-v9xa2hhl1Y .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-v9xa2hhl1Y .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v9xa2hhl1Y .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v9xa2hhl1Y .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-v9xa2hhl1Y .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v9xa2hhl1Y .nav-dropdown .link {
  font-weight: 400;
}
.cid-v9xa2hhl1Y .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v9xa2hhl1Y .content-right-side {
  text-align: center;
}
.cid-v9xa2hhl1Y .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-v9xa2hhl1Y .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-v9xa2hhl1Y .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-v9xa2hhl1Y .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-v9xa2hhl1Y .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v9xa2hhl1Y .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-v9xa2hhl1Y .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-v9xa2hhl1Y .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-v9xa2hhl1Y .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-v9xa2hhl1Y .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-v9xa2hhl1Y .navbar .menu-content-top {
    display: flex;
    min-height: 80px;
    height: 100%;
  }
  .cid-v9xa2hhl1Y .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v9xa2hhl1Y .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-v9xa2hhl1Y .navbar {
    display: block;
    padding: 0;
  }
  .cid-v9xa2hhl1Y .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v9xa2hhl1Y .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4rem - 4.5rem);
  }
  .cid-v9xa2hhl1Y .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 46px;
  }
  .cid-v9xa2hhl1Y .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item:not(.show-sea):not(.hide-sea) {
    display: flex;
  }
  .cid-v9xa2hhl1Y .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-v9xa2hhl1Y .navbar-toggler {
    display: none;
  }
  .cid-v9xa2hhl1Y .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-v9xa2hhl1Y .mobile {
    display: none !important;
  }
}
.cid-v9xa2hhl1Y .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-v9xa2hhl1Y .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v9xa2hhl1Y .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-v9xa2hhl1Y .menu-logo {
  margin-right: auto;
}
.cid-v9xa2hhl1Y .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v9xa2hhl1Y .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v9xa2hhl1Y .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v9xa2hhl1Y .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v9xa2hhl1Y .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v9xa2hhl1Y .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v9xa2hhl1Y .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-v9xa2hhl1Y .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v9xa2hhl1Y .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v9xa2hhl1Y .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v9xa2hhl1Y .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v9xa2hhl1Y .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v9xa2hhl1Y .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-v9xa2hhl1Y .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-v9xa2hhl1Y .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-v9xa2hhl1Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v9xa2hhl1Y .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-v9xa2hhl1Y .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v9xa2hhl1Y .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v9xa2hhl1Y .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-v9xa2hhl1Y .navbar.navbar-short {
  min-height: 44px;
  transition: all .2s;
}
.cid-v9xa2hhl1Y .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v9xa2hhl1Y .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v9xa2hhl1Y .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v9xa2hhl1Y .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v9xa2hhl1Y button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v9xa2hhl1Y button.navbar-toggler:focus {
  outline: none;
}
.cid-v9xa2hhl1Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v9xa2hhl1Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v9xa2hhl1Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v9xa2hhl1Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v9xa2hhl1Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v9xa2hhl1Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9xa2hhl1Y nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v9xa2hhl1Y nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v9xa2hhl1Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9xa2hhl1Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9xa2hhl1Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v9xa2hhl1Y .collapsed .btn {
  display: flex;
}
.cid-v9xa2hhl1Y .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v9xa2hhl1Y .collapsed .navbar-collapse.collapsing,
.cid-v9xa2hhl1Y .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v9xa2hhl1Y .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v9xa2hhl1Y .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v9xa2hhl1Y .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v9xa2hhl1Y .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v9xa2hhl1Y .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v9xa2hhl1Y .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-v9xa2hhl1Y .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v9xa2hhl1Y .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v9xa2hhl1Y .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v9xa2hhl1Y .collapsed button.navbar-toggler {
  display: block;
}
.cid-v9xa2hhl1Y .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-v9xa2hhl1Y .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v9xa2hhl1Y .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v9xa2hhl1Y .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v9xa2hhl1Y .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v9xa2hhl1Y .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-v9xa2hhl1Y .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v9xa2hhl1Y .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v9xa2hhl1Y .navbar-collapse.collapsing,
  .cid-v9xa2hhl1Y .navbar-collapse.show {
    display: block !important;
  }
  .cid-v9xa2hhl1Y .navbar-collapse.collapsing .navbar-nav,
  .cid-v9xa2hhl1Y .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-v9xa2hhl1Y .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v9xa2hhl1Y .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v9xa2hhl1Y .navbar-collapse.collapsing .navbar-buttons,
  .cid-v9xa2hhl1Y .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-v9xa2hhl1Y .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v9xa2hhl1Y .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v9xa2hhl1Y .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: left;
    justify-content: left;
  }
  .cid-v9xa2hhl1Y img {
    height: 3.8rem !important;
  }
  .cid-v9xa2hhl1Y .btn {
    display: flex;
  }
  .cid-v9xa2hhl1Y button.navbar-toggler {
    display: block;
  }
  .cid-v9xa2hhl1Y .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-v9xa2hhl1Y .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-v9xa2hhl1Y .dropdown .dropdown-menu {
    width: 100%;
    text-align: left;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v9xa2hhl1Y .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v9xa2hhl1Y .dropdown .dropdown-submenu {
    left: 0;
    text-align: left;
    width: 100%;
  }
  .cid-v9xa2hhl1Y .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: left;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-v9xa2hhl1Y .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-v9xa2hhl1Y .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-v9xa2hhl1Y .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-v9xa2hhl1Y .nav-link:focus {
  outline: none;
}
.cid-v9xa2hhl1Y .navbar-toggler {
  position: relative;
}
.cid-v9xa2hhl1Y .dropdown-item.active,
.cid-v9xa2hhl1Y .dropdown-item:active {
  background: #0087ab;
  color: initial;
}
.cid-v9xa1v9XZY {
  padding-top: 210px;
  padding-bottom: 75px;
  background-color: #f4f8fa;
}
.cid-v9xa1v9XZY H1 {
  color: #0a1c44;
}
@media (max-width: 767px) {
  .cid-v9xa1v9XZY {
    padding-top: 84px;
  }
}
.cid-v9xa1v9XZY .mbr-text,
.cid-v9xa1v9XZY .mbr-section-btn {
  color: #000000;
}
.cid-v9xa1v9XZY img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-v9xa1v9XZY .col-lg-6 {
    padding: 0 2rem;
  }
}
.cid-v9xa1v9XZY H2 {
  color: #0a1c44;
}
.cid-s0LKPaHyWc {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-s0LKPaHyWc .mbr-section-subtitle {
  color: #48d678;
  text-align: center;
}
.cid-s0LKPaHyWc .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-s0LKPaHyWc .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0087ab;
  margin-top: 0.5rem;
}
.cid-s0LKPaHyWc .logo > * {
  display: inline-block;
  padding-left: 0;
  padding-right: 0;
}
.cid-s0LKPaHyWc .logo img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-s0LKPaHyWc .col-md-3 {
    margin-bottom: 2rem;
  }
}
.cid-s0LKPaHyWc .number {
  color: #0087ab;
  position: relative;
  display: flex;
  text-align: center;
  border: 2px solid #e9e9e9;
  margin: auto;
  border-radius: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  line-height: 1.3;
}
.cid-s0LKPaHyWc .period {
  display: block;
  padding-top: 2px;
  font-weight: 700;
}
.cid-s0LKPaHyWc .dot {
  display: none;
}
.cid-s0LKPaHyWc .countdown-cont {
  max-width: 900px;
  margin: 0 auto;
}
.cid-s0LKPaHyWc .countdown-cont .countdown {
  color: #000000;
}
@media (max-width: 550px) {
  .cid-s0LKPaHyWc .number-wrap {
    min-width: auto;
  }
  .cid-s0LKPaHyWc .number {
    width: auto;
    height: auto;
    border: none;
    white-space: nowrap;
  }
}
@media (max-width: 440px) {
  .cid-s0LKPaHyWc .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-s0LKPaHyWc .period {
    font-size: 1rem;
  }
}
@media (max-width: 300px) {
  .cid-s0LKPaHyWc .number {
    font-size: 25px;
  }
  .cid-s0LKPaHyWc .period {
    font-size: 0.8rem;
  }
}
.cid-s0LKPaHyWc .mbr-section-title,
.cid-s0LKPaHyWc .line-wrap {
  text-align: center;
}
.cid-s0LKPaHyWc .mbr-section-title,
.cid-s0LKPaHyWc .line-wrap,
.cid-s0LKPaHyWc .logo {
  color: #0a1c44;
}
.cid-uZHF21dmoh {
  background-color: #f4f8fa;
}
.cid-uZHF21dmoh .container {
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-uZHF21dmoh .container-fluid {
  padding: 0 3rem;
}
.cid-uZHF21dmoh .mbr-section-subtitle {
  color: #767676;
}
.cid-uZHF21dmoh .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uZHF21dmoh .table-wrapper {
  margin: 0 auto;
}
.cid-uZHF21dmoh table {
  width: 75% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uZHF21dmoh table thead tr {
  border: none !important;
}
.cid-uZHF21dmoh table th {
  transition: all .2s;
  text-align: left;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: left;
}
.cid-uZHF21dmoh table tr td {
  border-color: #c1c1c1;
}
.cid-uZHF21dmoh table td {
  vertical-align: left;
}
.cid-uZHF21dmoh tr:hover {
  background-color: #ffffff !important;
}
.cid-uZHF21dmoh th:after,
.cid-uZHF21dmoh th:before {
  display: none !important;
}
.cid-uZHF21dmoh .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-uZHF21dmoh .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-uZHF21dmoh table th,
  .cid-uZHF21dmoh table td {
    padding: .75rem;
  }
}
.cid-uZHF21dmoh .body-item {
  text-align: left;
}
.cid-uZHF21dmoh .mbr-text {
  color: #767676;
}
.cid-uZHF21dmoh .head-item {
  color: #232323;
  text-align: left;
}
.cid-uZHF21dmoh .mbr-subtitle,
.cid-uZHF21dmoh .mbr-section-btn {
  color: #0087ab;
}
.cid-uZHF21dmoh .mbr-section-title,
.cid-uZHF21dmoh .mbr-section-btn {
  color: #0a1c44;
}
.cid-s0txz8Elds {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-s0txz8Elds .container-fluid {
  padding: 0 3rem;
}
.cid-s0txz8Elds .mbr-section-subtitle {
  color: #767676;
}
.cid-s0txz8Elds .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s0txz8Elds .table-wrapper {
  margin: 0 auto;
}
.cid-s0txz8Elds table {
  width: 75% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-s0txz8Elds table thead tr {
  border: none !important;
}
.cid-s0txz8Elds table th {
  transition: all .2s;
  text-align: left;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: left;
}
.cid-s0txz8Elds table tr td {
  border-color: #c1c1c1;
}
.cid-s0txz8Elds table td {
  vertical-align: left;
}
.cid-s0txz8Elds tr:hover {
  background-color: #ffffff !important;
}
.cid-s0txz8Elds th:after,
.cid-s0txz8Elds th:before {
  display: none !important;
}
.cid-s0txz8Elds .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-s0txz8Elds .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-s0txz8Elds table th,
  .cid-s0txz8Elds table td {
    padding: .75rem;
  }
}
.cid-s0txz8Elds .body-item {
  text-align: left;
}
.cid-s0txz8Elds .mbr-text {
  color: #767676;
}
.cid-s0txz8Elds .head-item {
  color: #232323;
  text-align: left;
}
.cid-s0txz8Elds .mbr-subtitle,
.cid-s0txz8Elds .mbr-section-btn {
  color: #0087ab;
}
.cid-s0txz8Elds .mbr-section-title,
.cid-s0txz8Elds .mbr-section-btn {
  color: #0a1c44;
}
.cid-s0txBrzPkW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-s0txBrzPkW .container-fluid {
  padding: 0 3rem;
}
.cid-s0txBrzPkW .mbr-section-subtitle {
  color: #767676;
}
.cid-s0txBrzPkW .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s0txBrzPkW .table-wrapper {
  margin: 0 auto;
}
.cid-s0txBrzPkW table {
  width: 74% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-s0txBrzPkW table thead tr {
  border: none !important;
}
.cid-s0txBrzPkW table th {
  transition: all .2s;
  text-align: left;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: left;
}
.cid-s0txBrzPkW table tr td {
  border-color: #c1c1c1;
}
.cid-s0txBrzPkW table td {
  vertical-align: left;
}
.cid-s0txBrzPkW tr:hover {
  background-color: #ffffff !important;
}
.cid-s0txBrzPkW th:after,
.cid-s0txBrzPkW th:before {
  display: none !important;
}
.cid-s0txBrzPkW .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-s0txBrzPkW .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-s0txBrzPkW table th,
  .cid-s0txBrzPkW table td {
    padding: .75rem;
  }
}
.cid-s0txBrzPkW .body-item {
  text-align: left;
}
.cid-s0txBrzPkW .mbr-text {
  color: #767676;
}
.cid-s0txBrzPkW .head-item {
  color: #232323;
  text-align: left;
}
.cid-s0txBrzPkW .mbr-subtitle,
.cid-s0txBrzPkW .mbr-section-btn {
  color: #0087ab;
}
.cid-s0txBrzPkW .mbr-section-title,
.cid-s0txBrzPkW .mbr-section-btn {
  color: #0a1c44;
}
.cid-s0txeE4Ecc {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #0087ab;
  position: relative;
  overflow: hidden;
}
.cid-s0txeE4Ecc .container {
  max-width: 1400px;
}
.cid-s0txeE4Ecc .card-img2 span {
  padding-top: 6px;
}
.cid-s0txeE4Ecc .soc-item a {
  padding-top: 5px;
}
.cid-s0txeE4Ecc .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-s0txeE4Ecc .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-s0txeE4Ecc .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-s0txeE4Ecc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-s0txeE4Ecc svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-s0txeE4Ecc #e2_shape {
  fill: #f4f8fa !important;
}
.cid-s0txeE4Ecc .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-s0txeE4Ecc .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-s0txeE4Ecc .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s0txeE4Ecc .card-img {
  width: auto;
}
.cid-s0txeE4Ecc .soc-item {
  width: 45px;
  height: 45px;
  background: #f4f8fa;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-s0txeE4Ecc .soc-item span {
  font-size: 1.4rem;
}
.cid-s0txeE4Ecc .soc-item:hover span {
  color: #0087ab !important;
}
.cid-s0txeE4Ecc .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-s0txeE4Ecc .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-s0txeE4Ecc .media-wrap {
  margin-bottom: 1rem;
}
.cid-s0txeE4Ecc .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s0txeE4Ecc img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-s0txeE4Ecc .item {
    justify-content: center;
  }
  .cid-s0txeE4Ecc .quote::after {
    left: 60px;
  }
}
.cid-s0txeE4Ecc .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-s0txeE4Ecc .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s0txeE4Ecc .text1 {
  color: #ffffff;
}
.cid-s0txeE4Ecc .item-title {
  color: #ffffff;
}
.cid-s0txeE4Ecc H5 {
  color: #ffffff;
}
.cid-s0txeE4Ecc .theme {
  color: #ffffff;
}
.cid-s0txeE4Ecc .copyright > p {
  color: #ff3366;
}
.cid-s0txeE4Ecc .text2 {
  color: #ffffff;
}
.cid-s0txeE4Ecc H3 {
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-s0tvQYxs5H {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #0087ab;
}
.cid-s0tvQYxs5H .container-fluid {
  padding: 0 3rem;
}
.cid-s0tvQYxs5H .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: white;
}
.cid-s0tvQYxs5H .mbr-list li {
  margin-bottom: 0.6rem;
  color: white;
  font-size: 0.6rem;
}
.cid-s0tvQYxs5H .logo-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cid-s0tvQYxs5H .mbr-section-title {
  margin-bottom: 1.0rem;
  font-size: 0.8rem;
}
.cid-s0tvQYxs5H .social-media {
  margin-top: 1.5rem;
}
.cid-s0tvQYxs5H .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-s0tvQYxs5H .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-s0tvQYxs5H .mbr-text,
.cid-s0tvQYxs5H .mbr-offer {
  line-height: 1.5;
  color: white;
}
.cid-s0tvQYxs5H .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-s0tvQYxs5H .container-fluid {
    padding: 0 1rem;
  }
  .cid-s0tvQYxs5H .mbr-section-title {
    margin-bottom: 1.0rem;
    font-size: 0.8rem;
  }
  .cid-s0tvQYxs5H .mbr-list {
    margin-bottom: 2rem;
    color: white;
  }
  .cid-s0tvQYxs5H .mbr-list li {
    margin-bottom: .5rem;
    color: white;
  }
  .cid-s0tvQYxs5H .handy {
    display: none;
  }
}
.cid-s0tvQYxs5H .mbr-text,
.cid-s0tvQYxs5H .social-media,
.cid-s0tvQYxs5H .logo-section {
  color: #ffffff;
  text-align: center;
}
.cid-s1HEDMwTMe.popup-builder {
  background-color: #ffffff;
}
.cid-s1HEDMwTMe.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s1HEDMwTMe.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s1HEDMwTMe .modal-content,
.cid-s1HEDMwTMe .modal-dialog {
  height: auto;
}
.cid-s1HEDMwTMe .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s1HEDMwTMe .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s1HEDMwTMe .form-wrapper .mbr-form .form-group,
  .cid-s1HEDMwTMe .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s1HEDMwTMe .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s1HEDMwTMe .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-s1HEDMwTMe .mbr-text {
  text-align: center;
}
.cid-s1HEDMwTMe .pt-0 {
  padding-top: 0 !important;
}
.cid-s1HEDMwTMe .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s1HEDMwTMe .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s1HEDMwTMe .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s1HEDMwTMe .modal-open {
  overflow: hidden;
}
.cid-s1HEDMwTMe .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s1HEDMwTMe .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s1HEDMwTMe .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s1HEDMwTMe .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-s1HEDMwTMe .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s1HEDMwTMe .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s1HEDMwTMe .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s1HEDMwTMe .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-s1HEDMwTMe .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s1HEDMwTMe .modal-backdrop.fade {
  opacity: 0;
}
.cid-s1HEDMwTMe .modal-backdrop.show {
  opacity: .5;
}
.cid-s1HEDMwTMe .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s1HEDMwTMe .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s1HEDMwTMe .modal-header .close:hover {
  opacity: 1;
}
.cid-s1HEDMwTMe .modal-header .close:focus {
  outline: none;
}
.cid-s1HEDMwTMe .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0a1c44;
}
.cid-s1HEDMwTMe .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s1HEDMwTMe .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s1HEDMwTMe .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s1HEDMwTMe .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s1HEDMwTMe .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s1HEDMwTMe .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s1HEDMwTMe .modal-sm {
    max-width: 300px;
  }
  .cid-s1HEDMwTMe .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s1HEDMwTMe .modal-lg,
  .cid-s1HEDMwTMe .modal-xl {
    max-width: 800px;
  }
  .cid-s1HEDMwTMe .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s1HEDMwTMe .modal-xl {
    max-width: 1140px;
  }
  .cid-s1HEDMwTMe .container {
    max-width: 1140px;
  }
}
.cid-s1HEDMwTMe .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s1HEDMwTMe .container {
    max-width: 720px;
  }
}
.cid-s1HEDMwTMe .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s1HEDMwTMe .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-s1HEDMwTMe .form-group {
  margin-bottom: 1rem;
}
.cid-s1HEDMwTMe .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s1HEDMwTMe .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s1HEDMwTMe .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-s1HEDMwTMe LABEL {
  text-align: left;
}
.cid-sucmkLyV29.popup-builder {
  background-color: #ffffff;
}
.cid-sucmkLyV29.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sucmkLyV29.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sucmkLyV29 .modal-content,
.cid-sucmkLyV29 .modal-dialog {
  height: auto;
}
.cid-sucmkLyV29 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sucmkLyV29 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sucmkLyV29 .form-wrapper .mbr-form .form-group,
  .cid-sucmkLyV29 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sucmkLyV29 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sucmkLyV29 .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-sucmkLyV29 .mbr-text {
  text-align: center;
}
.cid-sucmkLyV29 .pt-0 {
  padding-top: 0 !important;
}
.cid-sucmkLyV29 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sucmkLyV29 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sucmkLyV29 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sucmkLyV29 .modal-open {
  overflow: hidden;
}
.cid-sucmkLyV29 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sucmkLyV29 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sucmkLyV29 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sucmkLyV29 .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-sucmkLyV29 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sucmkLyV29 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sucmkLyV29 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sucmkLyV29 .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-sucmkLyV29 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sucmkLyV29 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sucmkLyV29 .modal-backdrop.show {
  opacity: .5;
}
.cid-sucmkLyV29 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sucmkLyV29 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sucmkLyV29 .modal-header .close:hover {
  opacity: 1;
}
.cid-sucmkLyV29 .modal-header .close:focus {
  outline: none;
}
.cid-sucmkLyV29 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0a1c44;
}
.cid-sucmkLyV29 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sucmkLyV29 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sucmkLyV29 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sucmkLyV29 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sucmkLyV29 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sucmkLyV29 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sucmkLyV29 .modal-sm {
    max-width: 300px;
  }
  .cid-sucmkLyV29 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sucmkLyV29 .modal-lg,
  .cid-sucmkLyV29 .modal-xl {
    max-width: 800px;
  }
  .cid-sucmkLyV29 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sucmkLyV29 .modal-xl {
    max-width: 1140px;
  }
  .cid-sucmkLyV29 .container {
    max-width: 1140px;
  }
}
.cid-sucmkLyV29 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sucmkLyV29 .container {
    max-width: 720px;
  }
}
.cid-sucmkLyV29 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sucmkLyV29 .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-sucmkLyV29 .form-group {
  margin-bottom: 1rem;
}
.cid-sucmkLyV29 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sucmkLyV29 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sucmkLyV29 .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-v5ci6Zb6Ex.popup-builder {
  background-color: #ffffff;
}
.cid-v5ci6Zb6Ex.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v5ci6Zb6Ex.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v5ci6Zb6Ex .modal-content,
.cid-v5ci6Zb6Ex .modal-dialog {
  height: auto;
}
.cid-v5ci6Zb6Ex .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v5ci6Zb6Ex .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v5ci6Zb6Ex .form-wrapper .mbr-form .form-group,
  .cid-v5ci6Zb6Ex .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v5ci6Zb6Ex .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v5ci6Zb6Ex .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-v5ci6Zb6Ex .mbr-text {
  text-align: center;
}
.cid-v5ci6Zb6Ex .pt-0 {
  padding-top: 0 !important;
}
.cid-v5ci6Zb6Ex .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v5ci6Zb6Ex .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v5ci6Zb6Ex .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v5ci6Zb6Ex .modal-open {
  overflow: hidden;
}
.cid-v5ci6Zb6Ex .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v5ci6Zb6Ex .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v5ci6Zb6Ex .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v5ci6Zb6Ex .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-v5ci6Zb6Ex .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v5ci6Zb6Ex .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v5ci6Zb6Ex .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v5ci6Zb6Ex .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-v5ci6Zb6Ex .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v5ci6Zb6Ex .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v5ci6Zb6Ex .modal-backdrop.fade {
  opacity: 0;
}
.cid-v5ci6Zb6Ex .modal-backdrop.show {
  opacity: .5;
}
.cid-v5ci6Zb6Ex .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-v5ci6Zb6Ex .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5ci6Zb6Ex .modal-header {
    padding: 1rem;
  }
}
.cid-v5ci6Zb6Ex .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v5ci6Zb6Ex .modal-header .close svg {
  fill: #353535;
}
.cid-v5ci6Zb6Ex .modal-header .close:hover {
  opacity: 1;
}
.cid-v5ci6Zb6Ex .modal-header .close:focus {
  outline: none;
}
.cid-v5ci6Zb6Ex .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v5ci6Zb6Ex .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v5ci6Zb6Ex .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5ci6Zb6Ex .modal-body {
    padding: 1rem;
  }
}
.cid-v5ci6Zb6Ex .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-v5ci6Zb6Ex .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5ci6Zb6Ex .modal-footer {
    padding: 1rem;
  }
}
.cid-v5ci6Zb6Ex .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v5ci6Zb6Ex .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v5ci6Zb6Ex .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v5ci6Zb6Ex .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v5ci6Zb6Ex .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v5ci6Zb6Ex .modal-lg,
  .cid-v5ci6Zb6Ex .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v5ci6Zb6Ex .modal-xl {
    max-width: 1140px;
  }
}
.cid-v5ci6Zb6Ex .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v5ci6Zb6Ex .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-v5ci6Zb6Ex .form-group {
  margin-bottom: 1rem;
}
.cid-v5ci6Zb6Ex .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v5ci6Zb6Ex .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v5ci6Zb6Ex .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-v5ci6Zb6Ex .mbr-section-btn {
  margin: 0;
}
.cid-v5ci6Zb6Ex .mbr-section-btn .btn {
  margin: 0;
}
.cid-v9x9CTwgw5 .hide-sea {
  display: flex;
}
.cid-v9x9CTwgw5 .hide-sea-inline {
  display: inline-block;
}
.cid-v9x9CTwgw5 .show-sea,
.cid-v9x9CTwgw5 .show-sea-inline {
  display: none;
}
.cid-v9x9CTwgw5 .navbar {
  padding: 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-v9x9CTwgw5 .navbar-fixed-top {
  padding-top: 0;
}
.cid-v9x9CTwgw5 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-v9x9CTwgw5 .dropdown-item {
  padding: 0;
}
.cid-v9x9CTwgw5 .dropdown-menu {
  border: 0px solid lightgray;
  background: #0087ab !important;
}
.cid-v9x9CTwgw5 .menu-content-top {
  max-width: 1200px;
  display: none;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-v9x9CTwgw5 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #0087ab;
  display: flex;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v9x9CTwgw5 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v9x9CTwgw5 a {
  font-style: normal;
}
.cid-v9x9CTwgw5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-v9x9CTwgw5 .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 .5rem !important;
  color: #ffffff;
}
.cid-v9x9CTwgw5 .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-v9x9CTwgw5 .content-text {
  margin-bottom: 0;
}
.cid-v9x9CTwgw5 .navbar-nav {
  position: relative;
  min-height: 46px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v9x9CTwgw5 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0087ab;
    -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-v9x9CTwgw5 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-v9x9CTwgw5 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-v9x9CTwgw5 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-v9x9CTwgw5 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v9x9CTwgw5 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v9x9CTwgw5 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-v9x9CTwgw5 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v9x9CTwgw5 .nav-dropdown .link {
  font-weight: 400;
}
.cid-v9x9CTwgw5 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v9x9CTwgw5 .content-right-side {
  text-align: center;
}
.cid-v9x9CTwgw5 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-v9x9CTwgw5 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-v9x9CTwgw5 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-v9x9CTwgw5 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-v9x9CTwgw5 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v9x9CTwgw5 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-v9x9CTwgw5 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-v9x9CTwgw5 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-v9x9CTwgw5 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-v9x9CTwgw5 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-v9x9CTwgw5 .navbar .menu-content-top {
    display: flex;
    min-height: 80px;
    height: 100%;
  }
  .cid-v9x9CTwgw5 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v9x9CTwgw5 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-v9x9CTwgw5 .navbar {
    display: block;
    padding: 0;
  }
  .cid-v9x9CTwgw5 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v9x9CTwgw5 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4rem - 4.5rem);
  }
  .cid-v9x9CTwgw5 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 46px;
  }
  .cid-v9x9CTwgw5 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item:not(.show-sea):not(.hide-sea) {
    display: flex;
  }
  .cid-v9x9CTwgw5 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-v9x9CTwgw5 .navbar-toggler {
    display: none;
  }
  .cid-v9x9CTwgw5 .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-v9x9CTwgw5 .mobile {
    display: none !important;
  }
}
.cid-v9x9CTwgw5 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-v9x9CTwgw5 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v9x9CTwgw5 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-v9x9CTwgw5 .menu-logo {
  margin-right: auto;
}
.cid-v9x9CTwgw5 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v9x9CTwgw5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v9x9CTwgw5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v9x9CTwgw5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v9x9CTwgw5 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v9x9CTwgw5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v9x9CTwgw5 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-v9x9CTwgw5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v9x9CTwgw5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v9x9CTwgw5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v9x9CTwgw5 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v9x9CTwgw5 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v9x9CTwgw5 .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-v9x9CTwgw5 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-v9x9CTwgw5 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-v9x9CTwgw5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v9x9CTwgw5 .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-v9x9CTwgw5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v9x9CTwgw5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v9x9CTwgw5 .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-v9x9CTwgw5 .navbar.navbar-short {
  min-height: 44px;
  transition: all .2s;
}
.cid-v9x9CTwgw5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v9x9CTwgw5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v9x9CTwgw5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v9x9CTwgw5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v9x9CTwgw5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v9x9CTwgw5 button.navbar-toggler:focus {
  outline: none;
}
.cid-v9x9CTwgw5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v9x9CTwgw5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v9x9CTwgw5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v9x9CTwgw5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v9x9CTwgw5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v9x9CTwgw5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9x9CTwgw5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v9x9CTwgw5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v9x9CTwgw5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9x9CTwgw5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9x9CTwgw5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v9x9CTwgw5 .collapsed .btn {
  display: flex;
}
.cid-v9x9CTwgw5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v9x9CTwgw5 .collapsed .navbar-collapse.collapsing,
.cid-v9x9CTwgw5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v9x9CTwgw5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v9x9CTwgw5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v9x9CTwgw5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v9x9CTwgw5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v9x9CTwgw5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v9x9CTwgw5 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-v9x9CTwgw5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v9x9CTwgw5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v9x9CTwgw5 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v9x9CTwgw5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-v9x9CTwgw5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-v9x9CTwgw5 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v9x9CTwgw5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v9x9CTwgw5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v9x9CTwgw5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v9x9CTwgw5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-v9x9CTwgw5 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v9x9CTwgw5 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v9x9CTwgw5 .navbar-collapse.collapsing,
  .cid-v9x9CTwgw5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-v9x9CTwgw5 .navbar-collapse.collapsing .navbar-nav,
  .cid-v9x9CTwgw5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-v9x9CTwgw5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v9x9CTwgw5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v9x9CTwgw5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-v9x9CTwgw5 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-v9x9CTwgw5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v9x9CTwgw5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v9x9CTwgw5 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: left;
    justify-content: left;
  }
  .cid-v9x9CTwgw5 img {
    height: 3.8rem !important;
  }
  .cid-v9x9CTwgw5 .btn {
    display: flex;
  }
  .cid-v9x9CTwgw5 button.navbar-toggler {
    display: block;
  }
  .cid-v9x9CTwgw5 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-v9x9CTwgw5 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-v9x9CTwgw5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: left;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v9x9CTwgw5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v9x9CTwgw5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: left;
    width: 100%;
  }
  .cid-v9x9CTwgw5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: left;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-v9x9CTwgw5 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-v9x9CTwgw5 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-v9x9CTwgw5 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-v9x9CTwgw5 .nav-link:focus {
  outline: none;
}
.cid-v9x9CTwgw5 .navbar-toggler {
  position: relative;
}
.cid-v9x9CTwgw5 .dropdown-item.active,
.cid-v9x9CTwgw5 .dropdown-item:active {
  background: #0087ab;
  color: initial;
}
.cid-soJ81gavjs {
  padding-top: 210px;
  padding-bottom: 75px;
  background-color: #f4f8fa;
}
.cid-soJ81gavjs H1 {
  color: #0a1c44;
}
@media (max-width: 767px) {
  .cid-soJ81gavjs {
    padding-top: 84px;
  }
}
.cid-soJ81gavjs .mbr-text,
.cid-soJ81gavjs .mbr-section-btn {
  color: #000000;
}
.cid-soJ81gavjs img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-soJ81gavjs .col-lg-6 {
    padding: 0 2rem;
  }
}
.cid-soJ81gavjs H2 {
  color: #0a1c44;
}
.cid-soJkurw0L0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f4f8fa;
}
.cid-soJkurw0L0 .title {
  background: #ffffff;
  width: fit-content;
  display: inline-block;
  padding: 1rem 2rem;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
}
.cid-soJkurw0L0 .mbr-section-subtitle {
  color: #0087ab;
  text-align: center;
}
.cid-soJkurw0L0 p {
  margin: 0;
  padding: 0;
}
.cid-soJkurw0L0 .card {
  margin-bottom: 2rem;
}
.cid-soJkurw0L0 .card-block {
  letter-spacing: 0.03em;
  position: relative;
  background: #1f91af;
  color: #232323;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
  padding: 2rem;
}
.cid-soJkurw0L0 .card-block:before {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 0;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-top: 15px solid #1f91af;
  border-right: 15px solid transparent;
}
.cid-soJkurw0L0 .mbr-author-img {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 100%;
  margin-left: 0rem;
  margin-right: 1.5rem;
}
.cid-soJkurw0L0 .mbr-author-img img {
  width: 100%;
  border-radius: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-soJkurw0L0 .name-wrap {
  display: inline-block;
}
.cid-soJkurw0L0 .card-footer {
  margin-top: 1rem;
  display: flex;
  border-top: none;
  background: none;
  padding: .75rem 1.25rem 1.25rem 1.25rem;
}
.cid-soJkurw0L0 .mbr-author-desc {
  color: #767676;
}
.cid-soJkurw0L0 .card-block P {
  color: #ffffff;
}
.cid-soJkurw0L0 .mbr-author-name {
  color: #149dcc;
}
.cid-soJkurw0L0 .mbr-section-title,
.cid-soJkurw0L0 .title DIV {
  color: #232323;
  text-align: center;
}
.cid-soJkurw0L0 .mbr-section-title,
.cid-soJkurw0L0 .title {
  color: #0a1c44;
}
.cid-soJ81he5kh {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-soJ81he5kh .mbr-section-title {
  margin-bottom: 0;
}
.cid-soJ81he5kh .mbr-role {
  padding-bottom: .5rem;
}
.cid-soJ81he5kh .mbr-iconfont {
  color: #767676;
  font-size: 1rem;
  white-space: pre-line;
}
.cid-soJ81he5kh .mbr-iconfont:hover {
  color: #149dcc;
}
.cid-soJ81he5kh .image-wrap {
  position: relative;
  height: 90%;
  margin: 5%;
}
.cid-soJ81he5kh .image-wrap img {
  width: 100%;
  z-index: 0;
  object-fit: cover;
  object-position: center center;
}
.cid-soJ81he5kh .card-wrap {
  margin-bottom: 3rem;
  overflow-x: hidden;
  height: 400px;
}
.cid-soJ81he5kh .social-media {
  list-style-type: none;
  z-index: 1;
}
.cid-soJ81he5kh .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-soJ81he5kh .social-media ul li {
  margin-right: .8rem;
  word-break: break-all;
  white-space: normal;
  display: inline-block;
}
.cid-soJ81he5kh .card-bottom {
  height: 160px;
  opacity: 0.9;
  width: calc(100% - 30px);
  background-color: #ffffff;
  position: absolute;
  left: 15px;
  bottom: -100px;
  padding: 0 .5rem;
  transition: bottom 0.2s ease-in;
}
.cid-soJ81he5kh .card-bottom:hover {
  bottom: 0;
}
.cid-soJ81he5kh .underline,
.cid-soJ81he5kh .mbr-title {
  color: #0a1c44;
}
.cid-soJ81he5kh xmp {
  word-wrap: normal;
  word-break: break-all;
  white-space: normal;
  display: block;
  height: auto;
  margin: 3px auto;
  line-height: 1.4;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.cid-soJ81kPG5l {
  padding-top: 45px;
  padding-bottom: 285px;
  background-color: #f4f8fa;
  position: relative;
  overflow: hidden;
}
.cid-soJ81kPG5l svg {
  position: absolute;
  bottom: -10.5rem;
  left: 50%;
  transform: translate(-50%) scaleX(-2) rotate(-12deg);
  filter: fliph;
  animation: wave2 5s ease-in-out infinite;
}
@keyframes wave2 {
  from {
    transform: translate(-50%) scaleX(-2) rotate(-10deg);
  }
  50% {
    transform: translate(-50%) scaleX(-2.2) scaleY(1.1) rotate(-13deg);
  }
  to {
    transform: translate(-50%) scaleX(-2) rotate(-10deg);
  }
}
.cid-soJ81kPG5l #e12_areaS3 {
  fill: #3c98b1 !important;
}
.cid-soJ81kPG5l #e19_areaS3 {
  fill: #0087ab !important;
}
.cid-soJ81kPG5l .carousel-control {
  background: #000;
  opacity: 0.2;
}
.cid-soJ81kPG5l .carousel {
  width: 80%;
  margin: auto;
}
.cid-soJ81kPG5l .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-soJ81kPG5l .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-soJ81kPG5l .carousel-item .wrap-img {
  text-align: center;
}
.cid-soJ81kPG5l .carousel-item .wrap-img img {
  transition: all 0.3s;
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-soJ81kPG5l .carousel-controls {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-soJ81kPG5l .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-soJ81kPG5l .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-soJ81kPG5l .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-soJ81kPG5l .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-soJ81kPG5l .cloneditem-1,
.cid-soJ81kPG5l .cloneditem-2,
.cid-soJ81kPG5l .cloneditem-3,
.cid-soJ81kPG5l .cloneditem-4,
.cid-soJ81kPG5l .cloneditem-5 {
  display: none;
}
.cid-soJ81kPG5l .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-soJ81kPG5l .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-soJ81kPG5l .carousel-inner {
    opacity: 0.8;
  }
  .cid-soJ81kPG5l .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-soJ81kPG5l .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-soJ81kPG5l .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-soJ81kPG5l .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-soJ81kPG5l .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-soJ81kPG5l .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-soJ81kPG5l .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-soJ81kPG5l .carousel-inner.slides2 .cloneditem-1,
  .cid-soJ81kPG5l .carousel-inner.slides2 .cloneditem-2,
  .cid-soJ81kPG5l .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-soJ81kPG5l .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-soJ81kPG5l .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-soJ81kPG5l .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-soJ81kPG5l .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-soJ81kPG5l .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-soJ81kPG5l .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-soJ81kPG5l .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-soJ81kPG5l .carousel-inner.slides3 .cloneditem-1,
  .cid-soJ81kPG5l .carousel-inner.slides3 .cloneditem-2,
  .cid-soJ81kPG5l .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-soJ81kPG5l .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-soJ81kPG5l .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-soJ81kPG5l .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-soJ81kPG5l .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-soJ81kPG5l .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-soJ81kPG5l .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-soJ81kPG5l .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-soJ81kPG5l .carousel-inner.slides4 .cloneditem-1,
  .cid-soJ81kPG5l .carousel-inner.slides4 .cloneditem-2,
  .cid-soJ81kPG5l .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-soJ81kPG5l .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-soJ81kPG5l .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-soJ81kPG5l .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-soJ81kPG5l .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-soJ81kPG5l .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-soJ81kPG5l .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-soJ81kPG5l .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-soJ81kPG5l .carousel-inner.slides5 .cloneditem-1,
  .cid-soJ81kPG5l .carousel-inner.slides5 .cloneditem-2,
  .cid-soJ81kPG5l .carousel-inner.slides5 .cloneditem-3,
  .cid-soJ81kPG5l .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-soJ81kPG5l .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-soJ81kPG5l .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-soJ81kPG5l .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-soJ81kPG5l .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-soJ81kPG5l .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-soJ81kPG5l .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-soJ81kPG5l .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-soJ81kPG5l .carousel-inner.slides6 .cloneditem-1,
  .cid-soJ81kPG5l .carousel-inner.slides6 .cloneditem-2,
  .cid-soJ81kPG5l .carousel-inner.slides6 .cloneditem-3,
  .cid-soJ81kPG5l .carousel-inner.slides6 .cloneditem-4,
  .cid-soJ81kPG5l .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-soJ81kPG5l H2 {
  color: #0a1c44;
}
.cid-soJ81kPG5l .carousel-control-prev {
  position: absolute!important;
  left: -50px !important;
}
.cid-soJ81kPG5l .carousel-control-next {
  position: absolute!important;
  right: -50px !important;
}
@media (max-width: 576px) {
  .cid-soJ81kPG5l .carousel-control-prev {
    left: -10px !important;
  }
  .cid-soJ81kPG5l .carousel-control-next {
    right: -10px !important;
  }
}
.cid-soJ81kPG5l .mbr-section-title {
  background: #ffffff;
  width: fit-content;
  display: inline-block;
  padding: 1rem 2rem;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
  color: #0a1c44;
}
.cid-soJ81kPG5l .mbr-section-subtitle {
  color: #0087ab;
}
.cid-soJ81mPRzj {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #0087ab;
}
.cid-soJ81mPRzj .container-fluid {
  padding: 0 3rem;
}
.cid-soJ81mPRzj .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: white;
}
.cid-soJ81mPRzj .mbr-list li {
  margin-bottom: 0.6rem;
  color: white;
  font-size: 0.6rem;
}
.cid-soJ81mPRzj .logo-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cid-soJ81mPRzj .mbr-section-title {
  margin-bottom: 1.0rem;
  font-size: 0.8rem;
}
.cid-soJ81mPRzj .social-media {
  margin-top: 1.5rem;
}
.cid-soJ81mPRzj .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-soJ81mPRzj .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-soJ81mPRzj .mbr-text,
.cid-soJ81mPRzj .mbr-offer {
  line-height: 1.5;
  color: white;
}
.cid-soJ81mPRzj .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-soJ81mPRzj .container-fluid {
    padding: 0 1rem;
  }
  .cid-soJ81mPRzj .mbr-section-title {
    margin-bottom: 1.0rem;
    font-size: 0.8rem;
  }
  .cid-soJ81mPRzj .mbr-list {
    margin-bottom: 2rem;
    color: white;
  }
  .cid-soJ81mPRzj .mbr-list li {
    margin-bottom: .5rem;
    color: white;
  }
  .cid-soJ81mPRzj .handy {
    display: none;
  }
}
.cid-soJ81mPRzj .mbr-text,
.cid-soJ81mPRzj .social-media,
.cid-soJ81mPRzj .logo-section {
  color: #ffffff;
  text-align: center;
}
.cid-soJ81o7pyT.popup-builder {
  background-color: #ffffff;
}
.cid-soJ81o7pyT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-soJ81o7pyT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-soJ81o7pyT .modal-content,
.cid-soJ81o7pyT .modal-dialog {
  height: auto;
}
.cid-soJ81o7pyT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-soJ81o7pyT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-soJ81o7pyT .form-wrapper .mbr-form .form-group,
  .cid-soJ81o7pyT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-soJ81o7pyT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-soJ81o7pyT .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-soJ81o7pyT .mbr-text {
  text-align: center;
}
.cid-soJ81o7pyT .pt-0 {
  padding-top: 0 !important;
}
.cid-soJ81o7pyT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-soJ81o7pyT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-soJ81o7pyT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-soJ81o7pyT .modal-open {
  overflow: hidden;
}
.cid-soJ81o7pyT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-soJ81o7pyT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-soJ81o7pyT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-soJ81o7pyT .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-soJ81o7pyT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-soJ81o7pyT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-soJ81o7pyT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-soJ81o7pyT .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-soJ81o7pyT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-soJ81o7pyT .modal-backdrop.fade {
  opacity: 0;
}
.cid-soJ81o7pyT .modal-backdrop.show {
  opacity: .5;
}
.cid-soJ81o7pyT .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-soJ81o7pyT .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-soJ81o7pyT .modal-header .close:hover {
  opacity: 1;
}
.cid-soJ81o7pyT .modal-header .close:focus {
  outline: none;
}
.cid-soJ81o7pyT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0a1c44;
}
.cid-soJ81o7pyT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-soJ81o7pyT .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-soJ81o7pyT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-soJ81o7pyT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-soJ81o7pyT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-soJ81o7pyT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-soJ81o7pyT .modal-sm {
    max-width: 300px;
  }
  .cid-soJ81o7pyT .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-soJ81o7pyT .modal-lg,
  .cid-soJ81o7pyT .modal-xl {
    max-width: 800px;
  }
  .cid-soJ81o7pyT .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-soJ81o7pyT .modal-xl {
    max-width: 1140px;
  }
  .cid-soJ81o7pyT .container {
    max-width: 1140px;
  }
}
.cid-soJ81o7pyT .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-soJ81o7pyT .container {
    max-width: 720px;
  }
}
.cid-soJ81o7pyT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-soJ81o7pyT .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-soJ81o7pyT .form-group {
  margin-bottom: 1rem;
}
.cid-soJ81o7pyT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-soJ81o7pyT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-soJ81o7pyT .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-soJ81o7pyT LABEL {
  text-align: left;
}
.cid-sucmkLyys2.popup-builder {
  background-color: #ffffff;
}
.cid-sucmkLyys2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sucmkLyys2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sucmkLyys2 .modal-content,
.cid-sucmkLyys2 .modal-dialog {
  height: auto;
}
.cid-sucmkLyys2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sucmkLyys2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sucmkLyys2 .form-wrapper .mbr-form .form-group,
  .cid-sucmkLyys2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sucmkLyys2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sucmkLyys2 .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-sucmkLyys2 .mbr-text {
  text-align: center;
}
.cid-sucmkLyys2 .pt-0 {
  padding-top: 0 !important;
}
.cid-sucmkLyys2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sucmkLyys2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sucmkLyys2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sucmkLyys2 .modal-open {
  overflow: hidden;
}
.cid-sucmkLyys2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sucmkLyys2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sucmkLyys2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sucmkLyys2 .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-sucmkLyys2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sucmkLyys2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sucmkLyys2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sucmkLyys2 .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-sucmkLyys2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sucmkLyys2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sucmkLyys2 .modal-backdrop.show {
  opacity: .5;
}
.cid-sucmkLyys2 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sucmkLyys2 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sucmkLyys2 .modal-header .close:hover {
  opacity: 1;
}
.cid-sucmkLyys2 .modal-header .close:focus {
  outline: none;
}
.cid-sucmkLyys2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0a1c44;
}
.cid-sucmkLyys2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sucmkLyys2 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sucmkLyys2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sucmkLyys2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sucmkLyys2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sucmkLyys2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sucmkLyys2 .modal-sm {
    max-width: 300px;
  }
  .cid-sucmkLyys2 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sucmkLyys2 .modal-lg,
  .cid-sucmkLyys2 .modal-xl {
    max-width: 800px;
  }
  .cid-sucmkLyys2 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sucmkLyys2 .modal-xl {
    max-width: 1140px;
  }
  .cid-sucmkLyys2 .container {
    max-width: 1140px;
  }
}
.cid-sucmkLyys2 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sucmkLyys2 .container {
    max-width: 720px;
  }
}
.cid-sucmkLyys2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sucmkLyys2 .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-sucmkLyys2 .form-group {
  margin-bottom: 1rem;
}
.cid-sucmkLyys2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sucmkLyys2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sucmkLyys2 .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-v5ci6XqtMp.popup-builder {
  background-color: #ffffff;
}
.cid-v5ci6XqtMp.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v5ci6XqtMp.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v5ci6XqtMp .modal-content,
.cid-v5ci6XqtMp .modal-dialog {
  height: auto;
}
.cid-v5ci6XqtMp .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v5ci6XqtMp .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v5ci6XqtMp .form-wrapper .mbr-form .form-group,
  .cid-v5ci6XqtMp .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v5ci6XqtMp .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v5ci6XqtMp .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-v5ci6XqtMp .mbr-text {
  text-align: center;
}
.cid-v5ci6XqtMp .pt-0 {
  padding-top: 0 !important;
}
.cid-v5ci6XqtMp .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v5ci6XqtMp .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v5ci6XqtMp .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v5ci6XqtMp .modal-open {
  overflow: hidden;
}
.cid-v5ci6XqtMp .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v5ci6XqtMp .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v5ci6XqtMp .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v5ci6XqtMp .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-v5ci6XqtMp .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v5ci6XqtMp .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v5ci6XqtMp .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v5ci6XqtMp .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-v5ci6XqtMp .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v5ci6XqtMp .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v5ci6XqtMp .modal-backdrop.fade {
  opacity: 0;
}
.cid-v5ci6XqtMp .modal-backdrop.show {
  opacity: .5;
}
.cid-v5ci6XqtMp .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-v5ci6XqtMp .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5ci6XqtMp .modal-header {
    padding: 1rem;
  }
}
.cid-v5ci6XqtMp .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v5ci6XqtMp .modal-header .close svg {
  fill: #353535;
}
.cid-v5ci6XqtMp .modal-header .close:hover {
  opacity: 1;
}
.cid-v5ci6XqtMp .modal-header .close:focus {
  outline: none;
}
.cid-v5ci6XqtMp .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v5ci6XqtMp .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v5ci6XqtMp .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5ci6XqtMp .modal-body {
    padding: 1rem;
  }
}
.cid-v5ci6XqtMp .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-v5ci6XqtMp .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5ci6XqtMp .modal-footer {
    padding: 1rem;
  }
}
.cid-v5ci6XqtMp .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v5ci6XqtMp .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v5ci6XqtMp .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v5ci6XqtMp .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v5ci6XqtMp .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v5ci6XqtMp .modal-lg,
  .cid-v5ci6XqtMp .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v5ci6XqtMp .modal-xl {
    max-width: 1140px;
  }
}
.cid-v5ci6XqtMp .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v5ci6XqtMp .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-v5ci6XqtMp .form-group {
  margin-bottom: 1rem;
}
.cid-v5ci6XqtMp .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v5ci6XqtMp .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v5ci6XqtMp .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-v5ci6XqtMp .mbr-section-btn {
  margin: 0;
}
.cid-v5ci6XqtMp .mbr-section-btn .btn {
  margin: 0;
}
.cid-s0Z3JJL6kd .hide-sea {
  display: flex;
}
.cid-s0Z3JJL6kd .hide-sea-inline {
  display: inline-block;
}
.cid-s0Z3JJL6kd .show-sea,
.cid-s0Z3JJL6kd .show-sea-inline {
  display: none;
}
.cid-s0Z3JJL6kd .navbar {
  padding: 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-s0Z3JJL6kd .navbar-fixed-top {
  padding-top: 0;
}
.cid-s0Z3JJL6kd .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-s0Z3JJL6kd .dropdown-item {
  padding: 0;
}
.cid-s0Z3JJL6kd .dropdown-menu {
  border: 0px solid lightgray;
  background: #0087ab !important;
}
.cid-s0Z3JJL6kd .menu-content-top {
  max-width: 1200px;
  display: none;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-s0Z3JJL6kd .menu-bottom {
  margin: auto;
  width: 100%;
  background: #0087ab;
  display: flex;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0Z3JJL6kd .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-s0Z3JJL6kd a {
  font-style: normal;
}
.cid-s0Z3JJL6kd .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-s0Z3JJL6kd .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 .5rem !important;
  color: #ffffff;
}
.cid-s0Z3JJL6kd .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-s0Z3JJL6kd .content-text {
  margin-bottom: 0;
}
.cid-s0Z3JJL6kd .navbar-nav {
  position: relative;
  min-height: 46px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-s0Z3JJL6kd .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0087ab;
    -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-s0Z3JJL6kd .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-s0Z3JJL6kd .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-s0Z3JJL6kd .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-s0Z3JJL6kd .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-s0Z3JJL6kd .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-s0Z3JJL6kd .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-s0Z3JJL6kd .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0Z3JJL6kd .nav-dropdown .link {
  font-weight: 400;
}
.cid-s0Z3JJL6kd .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-s0Z3JJL6kd .content-right-side {
  text-align: center;
}
.cid-s0Z3JJL6kd .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-s0Z3JJL6kd .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-s0Z3JJL6kd .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-s0Z3JJL6kd .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-s0Z3JJL6kd .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s0Z3JJL6kd .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-s0Z3JJL6kd .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-s0Z3JJL6kd .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-s0Z3JJL6kd .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-s0Z3JJL6kd .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-s0Z3JJL6kd .navbar .menu-content-top {
    display: flex;
    min-height: 80px;
    height: 100%;
  }
  .cid-s0Z3JJL6kd .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-s0Z3JJL6kd .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-s0Z3JJL6kd .navbar {
    display: block;
    padding: 0;
  }
  .cid-s0Z3JJL6kd .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-s0Z3JJL6kd .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4rem - 4.5rem);
  }
  .cid-s0Z3JJL6kd .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 46px;
  }
  .cid-s0Z3JJL6kd .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item:not(.show-sea):not(.hide-sea) {
    display: flex;
  }
  .cid-s0Z3JJL6kd .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-s0Z3JJL6kd .navbar-toggler {
    display: none;
  }
  .cid-s0Z3JJL6kd .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-s0Z3JJL6kd .mobile {
    display: none !important;
  }
}
.cid-s0Z3JJL6kd .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-s0Z3JJL6kd .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s0Z3JJL6kd .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-s0Z3JJL6kd .menu-logo {
  margin-right: auto;
}
.cid-s0Z3JJL6kd .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s0Z3JJL6kd .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s0Z3JJL6kd .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s0Z3JJL6kd .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s0Z3JJL6kd .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s0Z3JJL6kd .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s0Z3JJL6kd .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-s0Z3JJL6kd .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-s0Z3JJL6kd .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s0Z3JJL6kd .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s0Z3JJL6kd .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-s0Z3JJL6kd .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-s0Z3JJL6kd .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-s0Z3JJL6kd .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-s0Z3JJL6kd .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s0Z3JJL6kd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s0Z3JJL6kd .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-s0Z3JJL6kd .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s0Z3JJL6kd .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s0Z3JJL6kd .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-s0Z3JJL6kd .navbar.navbar-short {
  min-height: 44px;
  transition: all .2s;
}
.cid-s0Z3JJL6kd .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s0Z3JJL6kd .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s0Z3JJL6kd .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s0Z3JJL6kd .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s0Z3JJL6kd button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s0Z3JJL6kd button.navbar-toggler:focus {
  outline: none;
}
.cid-s0Z3JJL6kd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s0Z3JJL6kd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s0Z3JJL6kd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s0Z3JJL6kd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s0Z3JJL6kd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s0Z3JJL6kd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s0Z3JJL6kd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s0Z3JJL6kd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s0Z3JJL6kd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s0Z3JJL6kd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s0Z3JJL6kd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s0Z3JJL6kd .collapsed .btn {
  display: flex;
}
.cid-s0Z3JJL6kd .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s0Z3JJL6kd .collapsed .navbar-collapse.collapsing,
.cid-s0Z3JJL6kd .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s0Z3JJL6kd .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s0Z3JJL6kd .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s0Z3JJL6kd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s0Z3JJL6kd .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s0Z3JJL6kd .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s0Z3JJL6kd .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-s0Z3JJL6kd .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s0Z3JJL6kd .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-s0Z3JJL6kd .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-s0Z3JJL6kd .collapsed button.navbar-toggler {
  display: block;
}
.cid-s0Z3JJL6kd .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-s0Z3JJL6kd .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-s0Z3JJL6kd .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s0Z3JJL6kd .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s0Z3JJL6kd .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s0Z3JJL6kd .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-s0Z3JJL6kd .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-s0Z3JJL6kd .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s0Z3JJL6kd .navbar-collapse.collapsing,
  .cid-s0Z3JJL6kd .navbar-collapse.show {
    display: block !important;
  }
  .cid-s0Z3JJL6kd .navbar-collapse.collapsing .navbar-nav,
  .cid-s0Z3JJL6kd .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-s0Z3JJL6kd .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s0Z3JJL6kd .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s0Z3JJL6kd .navbar-collapse.collapsing .navbar-buttons,
  .cid-s0Z3JJL6kd .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-s0Z3JJL6kd .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s0Z3JJL6kd .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s0Z3JJL6kd .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: left;
    justify-content: left;
  }
  .cid-s0Z3JJL6kd img {
    height: 3.8rem !important;
  }
  .cid-s0Z3JJL6kd .btn {
    display: flex;
  }
  .cid-s0Z3JJL6kd button.navbar-toggler {
    display: block;
  }
  .cid-s0Z3JJL6kd .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-s0Z3JJL6kd .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-s0Z3JJL6kd .dropdown .dropdown-menu {
    width: 100%;
    text-align: left;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s0Z3JJL6kd .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s0Z3JJL6kd .dropdown .dropdown-submenu {
    left: 0;
    text-align: left;
    width: 100%;
  }
  .cid-s0Z3JJL6kd .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: left;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-s0Z3JJL6kd .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-s0Z3JJL6kd .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-s0Z3JJL6kd .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-s0Z3JJL6kd .nav-link:focus {
  outline: none;
}
.cid-s0Z3JJL6kd .navbar-toggler {
  position: relative;
}
.cid-s0Z3JJL6kd .dropdown-item.active,
.cid-s0Z3JJL6kd .dropdown-item:active {
  background: #0087ab;
  color: initial;
}
.cid-s1996q3Rmu {
  padding-top: 128px;
  padding-bottom: 90px;
  background-color: "file:///C:/Users/Asspi/AppData/Local/Mobirise.com/Mobirise/asspiek_0040hotmail_002ede/addons/mobirise4-blocks/components/extFeatures27/../_images/background1.jpg";
}
.cid-s1996q3Rmu .container-fluid {
  padding: 0 3rem;
}
.cid-s1996q3Rmu .card {
  display: block;
}
.cid-s1996q3Rmu .card .card-wrapper {
  height: 1%;
}
.cid-s1996q3Rmu .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-s1996q3Rmu .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-s1996q3Rmu .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-s1996q3Rmu .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-s1996q3Rmu .container-fluid {
    padding: 0 1rem;
  }
  .cid-s1996q3Rmu .text-row {
    padding-bottom: 1rem;
  }
}
.cid-s1996q3Rmu .logo-title,
.cid-s1996q3Rmu .logo {
  text-align: center;
  color: #0a1c44;
}
.cid-s1996q3Rmu .logo-sub-title {
  text-align: center;
  color: #0087ab;
}
.cid-s1996q3Rmu .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-s1996q3Rmu .mbr-text,
.cid-s1996q3Rmu .card-btn {
  text-align: center;
}
.cid-s1996q3Rmu h3 {
  font-size: 1.25rem;
}
.cid-s1996q3Rmu .pfs-cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}
.cid-s1996q3Rmu .pfs-cta-wrap .pfs-btn {
  flex: 1;
  min-width: 0;
  text-align: center;
  white-space: normal;
}
@media (min-width: 992px) {
  .cid-s1996q3Rmu .pfs-mobile-only {
    display: none !important;
  }
  .cid-s1996q3Rmu .pfs-desktop-only {
    display: inline !important;
  }
  .cid-s1996q3Rmu .pfs-cta-wrap .pfs-btn {
    flex: 0 1 420px;
  }
}
@media (max-width: 991.98px) {
  .cid-s1996q3Rmu .pfs-desktop-only {
    display: none !important;
  }
  .cid-s1996q3Rmu .pfs-mobile-only {
    display: inline !important;
  }
}
.cid-s19vXyY7sY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
.cid-s19vXyY7sY .container {
  padding-top: 40px;
  top: -3rem;
  display: relative;
  max-width: 100%;
  height: 10rem;
  overflow: hidden;
}
.cid-s19vXyY7sY .box {
  height: 50%;
  background: #f4f8fa;
  width: 110%;
  padding-top: 0px;
  position: relative;
  left: -20px;
  padding-left: 15px;
}
.cid-s19vXyY7sY .boxz {
  position: relative;
  height: 50%;
  background: transparent;
  width: 110%;
  padding-bottom: 0px;
  left: -20px;
  padding-left: 15px;
}
.cid-s19vXyY7sY .schraege {
  z-index: 1;
  overflow: hidden;
  position: relative;
  height: 5rem;
  width: 130%;
  top: -9.7rem;
  left: -20px;
  padding-top: 40px;
  padding-left: 15px;
  background: linear-gradient(to bottom, #0087ab, #f4f8fa);
  -webkit-transform: rotate(-2deg);
}
.cid-s195fB2bqk {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-s195fB2bqk h4 {
  display: flex;
  color: #ffffff;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s195fB2bqk .panel-text {
  letter-spacing: 0.03em;
  color: #232323;
}
.cid-s195fB2bqk .mbr-section-title {
  color: #0a1c44;
}
.cid-s195fB2bqk .mbr-section-subtitle {
  font-weight: 500;
  color: #0087ab;
}
.cid-s195fB2bqk .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-s195fB2bqk .panel-group {
  width: 100%;
}
.cid-s195fB2bqk .card {
  border-bottom: 1px solid #ffffff !important;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-s195fB2bqk .card .card-header {
  border-radius: 0px;
  border: 0px !important;
  padding: 0;
}
.cid-s195fB2bqk .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #0087ab;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-s195fB2bqk .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-s195fB2bqk .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s195fB2bqk .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-s195fB2bqk .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s195fB2bqk .card .panel-body {
  background: #ffffff;
}
.cid-s195fB2bqk .media-container-row > div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s195fB2bqk .sign {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-s195fB2bqk .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-s195fB2bqk .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-s195fB2bqk h1 {
  letter-spacing: 0em;
  font-size: 1.25rem;
}
.cid-s19ysds9Om {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-s19ysds9Om .note {
  font-size: 0.4rem;
  vertical-align: text-top;
}
.cid-s19ysds9Om .head_info {
  text-align: center;
  margin-bottom: 50px;
}
.cid-s19ysds9Om .head_info .mbr-subtitle {
  color: #0087ab;
  margin-bottom: 10px;
}
.cid-s19ysds9Om .head_info .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-s19ysds9Om .head_info .mbr-section-title {
  margin-bottom: 2rem;
  color: #0a1c44;
  font-weight: 700;
}
.cid-s19ysds9Om .head_info .mbr-section-title.display-2 {
  line-height: 48px;
  letter-spacing: -0.5px;
}
.cid-s19ysds9Om .head_info .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 0;
  color: #a38547;
}
.cid-s19ysds9Om .head_info .mbr-section-text.display-7 {
  line-height: 28px;
  letter-spacing: 0;
}
.cid-s19ysds9Om .plan {
  box-shadow: 0 6px 20px 2px;
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
  background-color: #ffffff;
  border-bottom: solid 2px rgba(0, 0, 0, 0.07);
  text-align: center;
  border-radius: 8px;
}
.cid-s19ysds9Om .plan .plan-title {
  background-color: #0087ab;
  padding-bottom: 60px;
  padding-top: 30px;
  margin-bottom: 0;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
}
.cid-s19ysds9Om .plan .plan-title.display-7 {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.5px;
}
.cid-s19ysds9Om .plan .icon_box {
  display: block;
  text-align: center;
}
.cid-s19ysds9Om .plan .icon_box .ico1 {
  width: 96px;
  height: 96px;
  line-height: 96px;
  font-size: 40px;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  top: -40px;
  background: #fff;
  color: #0a1c44;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.05);
}
.cid-s19ysds9Om .plan .plan-price {
  color: #28303f;
}
.cid-s19ysds9Om .plan .plan-price .price-figure {
  font-weight: 700;
  display: inline-block;
}
.cid-s19ysds9Om .plan .plan-price .price-figure.display-1 {
  font-size: 50px;
  line-height: 50px;
}
.cid-s19ysds9Om .plan .plan-price .price-value {
  font-weight: 600;
  line-height: 1.5;
}
.cid-s19ysds9Om .plan .plan-price .price-term {
  line-height: 1;
  margin-top: 0.45rem;
}
.cid-s19ysds9Om .plan .plan-list {
  padding: 30px 40px;
}
.cid-s19ysds9Om .plan .plan-list .list-group {
  color: #a38547;
}
.cid-s19ysds9Om .plan .plan-list .list-group-item {
  position: relative;
  -webkit-box-pack: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 7.5px 0;
}
.cid-s19ysds9Om .plan .plan-list .list-group-item:last-child {
  border-radius: 8px;
}
.cid-s19ysds9Om .plan .plan-list .list-group.display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-s19ysds9Om .plan .mbr-section-btn {
  padding: 0 2.45rem;
}
.cid-s19ysds9Om .plan .mbr-section-btn .btn {
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 2em;
}
.cid-s19ysds9Om .plan .mbr-section-btn .btn.display-4 {
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 1px;
}
.cid-s19ysds9Om .plan .mbr-section-btn .btn-primary:hover {
  background-color: #28303f !important;
  color: #344cf1 !important;
}
.cid-s19ysds9Om .plan:nth-child(3) .plan-title {
  background-color: #0a1c44;
}
@media (max-width: 550px) {
  .cid-s19ysds9Om .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s19ysds9Om .plan .plan-list .list-group,
.cid-s19ysds9Om .mbr-section-btn {
  text-align: center;
  color: #0087ab;
}
.cid-s19ysds9Om .head_info .mbr-section-text {
  color: #232323;
  text-align: center;
}
.cid-s19ysds9Om h1 {
  letter-spacing: 0em;
  font-size: 1.25rem;
}
.cid-sphvwYTzcj {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-sphvwYTzcj .note {
  font-size: 0.4rem;
  vertical-align: text-top;
}
.cid-sphvwYTzcj .head_info {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-sphvwYTzcj .head_info .mbr-subtitle {
  color: #0087ab;
  margin-bottom: 10px;
}
.cid-sphvwYTzcj .head_info .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-sphvwYTzcj .head_info .mbr-section-title {
  margin-bottom: 10px;
  color: #0a1c44;
  font-weight: 700;
}
.cid-sphvwYTzcj .head_info .mbr-section-title.display-2 {
  line-height: 48px;
  letter-spacing: -0.5px;
}
.cid-sphvwYTzcj .head_info .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 0;
  color: #a38547;
}
.cid-sphvwYTzcj .head_info .mbr-section-text.display-7 {
  line-height: 28px;
  letter-spacing: 0;
}
.cid-sphvwYTzcj .plan {
  box-shadow: 0 6px 20px 2px;
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
  background-color: #ffffff;
  border-bottom: solid 2px rgba(0, 0, 0, 0.07);
  text-align: center;
  border-radius: 8px;
}
.cid-sphvwYTzcj .plan .plan-title {
  background-color: #0087ab;
  padding-bottom: 60px;
  padding-top: 30px;
  margin-bottom: 0;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
}
.cid-sphvwYTzcj .plan .plan-title.display-7 {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.5px;
}
.cid-sphvwYTzcj .plan .icon_box {
  display: block;
  text-align: center;
}
.cid-sphvwYTzcj .plan .icon_box .ico1 {
  width: 96px;
  height: 96px;
  line-height: 96px;
  font-size: 40px;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  top: -40px;
  background: #fff;
  color: #0a1c44;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.05);
}
.cid-sphvwYTzcj .plan .plan-price {
  color: #28303f;
}
.cid-sphvwYTzcj .plan .plan-price .price-figure {
  font-weight: 700;
  display: inline-block;
}
.cid-sphvwYTzcj .plan .plan-price .price-figure.display-1 {
  font-size: 50px;
  line-height: 50px;
}
.cid-sphvwYTzcj .plan .plan-price .price-value {
  font-weight: 600;
  line-height: 1.5;
}
.cid-sphvwYTzcj .plan .plan-price .price-term {
  line-height: 1;
  margin-top: 0.45rem;
}
.cid-sphvwYTzcj .plan .plan-list {
  padding: 30px 40px;
}
.cid-sphvwYTzcj .plan .plan-list .list-group {
  color: #a38547;
}
.cid-sphvwYTzcj .plan .plan-list .list-group-item {
  position: relative;
  -webkit-box-pack: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 7.5px 0;
}
.cid-sphvwYTzcj .plan .plan-list .list-group-item:last-child {
  border-radius: 8px;
}
.cid-sphvwYTzcj .plan .plan-list .list-group.display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-sphvwYTzcj .plan .mbr-section-btn {
  padding: 0 2.45rem;
}
.cid-sphvwYTzcj .plan .mbr-section-btn .btn {
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 2em;
}
.cid-sphvwYTzcj .plan .mbr-section-btn .btn.display-4 {
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 1px;
}
.cid-sphvwYTzcj .plan .mbr-section-btn .btn-primary:hover {
  background-color: #28303f !important;
  color: #344cf1 !important;
}
@media (max-width: 550px) {
  .cid-sphvwYTzcj .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sphvwYTzcj .plan .plan-list .list-group,
.cid-sphvwYTzcj .mbr-section-btn {
  text-align: center;
  color: #0087ab;
}
.cid-sphvwYTzcj .head_info .mbr-section-text {
  color: #232323;
  text-align: center;
}
.cid-sphvwYTzcj h1 {
  letter-spacing: 0em;
  font-size: 1.25rem;
}
.cid-sphvwYTzcj .head_info .mbr-subtitle {
  color: #0a1c44;
}
.cid-sphvwYTzcj .head_info .mbr-section-title {
  color: #0a1c44;
}
.cid-s19DboD2xy {
  padding-top: 15px;
  padding-bottom: 105px;
  background-color: #f4f8fa;
}
.cid-s19DboD2xy .mbr-overlay {
  background-color: #000000;
  opacity: 0.5;
}
.cid-s19DboD2xy h5 {
  padding-bottom: 2rem;
}
.cid-s19DboD2xy textarea {
  min-height: 150px;
}
.cid-s19DboD2xy .checkbox {
  padding-left: 2rem;
}
.cid-s19DboD2xy .checkboxer {
  padding-left: 0.7rem;
}
.cid-s19DboD2xy .head_info {
  text-align: center;
  margin-bottom: 10px;
}
.cid-s19DboD2xy .head_info .mbr-subtitle {
  color: #0087ab;
  margin-bottom: 10px;
}
.cid-s19DboD2xy .head_info .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-s19DboD2xy .head_info .mbr-section-title {
  margin-bottom: 2rem;
  color: #0a1c44;
  font-weight: 700;
}
.cid-s19DboD2xy .head_info .mbr-section-title.display-2 {
  line-height: 48px;
  letter-spacing: -0.5px;
}
.cid-s19DboD2xy .head_info .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 0;
  color: #a38547;
}
.cid-s19DboD2xy .head_info .mbr-section-text.display-7 {
  line-height: 28px;
  letter-spacing: 0;
}
.cid-s19DboD2xy .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #0087ab;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}
.cid-s19DboD2xy h3 {
  display: inline-block;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
}
.cid-s19DboD2xy .form-control,
.cid-s19DboD2xy .field-input {
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #767676;
  color: #767676 !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 8px;
  outline: none;
}
.cid-s19DboD2xy .form-control input::-webkit-input-placeholder,
.cid-s19DboD2xy .field-input input::-webkit-input-placeholder,
.cid-s19DboD2xy .form-control textarea::-webkit-input-placeholder,
.cid-s19DboD2xy .field-input textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-s19DboD2xy .form-control input:-moz-placeholder,
.cid-s19DboD2xy .field-input input:-moz-placeholder,
.cid-s19DboD2xy .form-control textarea:-moz-placeholder,
.cid-s19DboD2xy .field-input textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-s19DboD2xy .form-control:hover,
.cid-s19DboD2xy .field-input:hover,
.cid-s19DboD2xy .form-control:focus,
.cid-s19DboD2xy .field-input:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-s19DboD2xy .form-control:hover input::-webkit-input-placeholder,
.cid-s19DboD2xy .field-input:hover input::-webkit-input-placeholder,
.cid-s19DboD2xy .form-control:focus input::-webkit-input-placeholder,
.cid-s19DboD2xy .field-input:focus input::-webkit-input-placeholder,
.cid-s19DboD2xy .form-control:hover textarea::-webkit-input-placeholder,
.cid-s19DboD2xy .field-input:hover textarea::-webkit-input-placeholder,
.cid-s19DboD2xy .form-control:focus textarea::-webkit-input-placeholder,
.cid-s19DboD2xy .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-s19DboD2xy .form-control:hover input:-moz-placeholder,
.cid-s19DboD2xy .field-input:hover input:-moz-placeholder,
.cid-s19DboD2xy .form-control:focus input:-moz-placeholder,
.cid-s19DboD2xy .field-input:focus input:-moz-placeholder,
.cid-s19DboD2xy .form-control:hover textarea:-moz-placeholder,
.cid-s19DboD2xy .field-input:hover textarea:-moz-placeholder,
.cid-s19DboD2xy .form-control:focus textarea:-moz-placeholder,
.cid-s19DboD2xy .field-input:focus textarea:-moz-placeholder {
  color: #ffffff;
}
.cid-s19DboD2xy .jq-number__spin:hover,
.cid-s19DboD2xy .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-s19DboD2xy .jq-number__spin {
  background-color: #ffffff;
  border-color: #767676;
  color: #767676;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s19DboD2xy .jq-selectbox li,
.cid-s19DboD2xy .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-s19DboD2xy .jq-selectbox li:hover,
.cid-s19DboD2xy .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-s19DboD2xy .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-s19DboD2xy .jq-number__spin.minus:hover:after,
.cid-s19DboD2xy .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-s19DboD2xy .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-s19DboD2xy .jq-number__spin.minus:after,
.cid-s19DboD2xy .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-s19DboD2xy input::-webkit-clear-button {
  display: none;
}
.cid-s19DboD2xy input::-webkit-inner-spin-button {
  display: none;
}
.cid-s19DboD2xy input::-webkit-outer-spin-button {
  display: none;
}
.cid-s19DboD2xy input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-s19DboD2xy H5 {
  color: #0a1c44;
}
.cid-s19DboD2xy P {
  color: #767676;
}
.cid-s19DboD2xy H3 {
  color: #e1201d;
}
.cid-s19DboD2xy .title,
.cid-s19DboD2xy .mbr-section-subtitle {
  color: #0087ab;
}
.cid-s19DboD2xy .btn {
  font-size: 12px !important;
}
.cid-s19DboD2xy h2 {
  letter-spacing: 0em;
  font-size: 1.25rem;
}
.cid-s19GqwDsI3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f5f7fa;
}
.cid-s19GqwDsI3 .container {
  padding-top: 40px;
  top: -3rem;
  display: relative;
  max-width: 100%;
  height: 8rem;
  overflow: hidden;
}
.cid-s19GqwDsI3 .box {
  height: 50%;
  background: transparent;
  width: 110%;
  padding-top: 0px;
  position: relative;
  left: -20px;
  padding-left: 15px;
}
.cid-s19GqwDsI3 .boxz {
  position: relative;
  height: 50%;
  background: #f4f8fa;
  width: 110%;
  padding-bottom: 0px;
  left: -20px;
  padding-left: 15px;
}
.cid-s19GqwDsI3 .schraege {
  z-index: 1;
  overflow: hidden;
  position: relative;
  height: 5rem;
  width: 130%;
  top: -7rem;
  left: -20px;
  padding-top: 40px;
  padding-left: 15px;
  background: linear-gradient(to bottom, #f4f8fa, #0087ab);
  -webkit-transform: rotate(-2deg);
}
.cid-s19EMqWcQO {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-s19EMqWcQO h4 {
  display: flex;
  color: #232323;
}
.cid-s19EMqWcQO h1 {
  font-size: 1.25rem;
}
.cid-s19EMqWcQO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0087ab 50%, #0a1c44 120%);
  display: inline-block;
}
.cid-s19EMqWcQO .panel-text {
  color: #000000;
  line-height: 1.7;
}
.cid-s19EMqWcQO .wrap {
  display: flex;
}
.cid-s19EMqWcQO .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-s19EMqWcQO .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-s19EMqWcQO .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s19EMqWcQO .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
.cid-s19EMqWcQO .icon {
  background: #0087ab;
  min-width: 33px;
  min-height: 33px;
  border-radius: 100%;
  color: white!important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.cid-s19EMqWcQO img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-s19EMqWcQO .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-s19EMqWcQO p {
  margin: 0;
}
.cid-s19EMqWcQO .card .card-header a.panel-title {
  background-color: none!important;
  margin-top: 0px!important;
}
.cid-s19EMqWcQO .mbr-section-subtitle {
  font-weight: 500;
  color: #767676;
  text-align: center;
}
.cid-s19EMqWcQO .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-s19EMqWcQO .panel-group {
  width: 100%;
}
.cid-s19EMqWcQO .panel-title {
  border-bottom: 1px solid #efefef;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-s19EMqWcQO .card {
  margin-bottom: .5rem;
}
.cid-s19EMqWcQO .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-s19EMqWcQO .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #0087ab;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-s19EMqWcQO .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-s19EMqWcQO .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s19EMqWcQO .card .card-header a.panel-title h2 {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
}
.cid-s19EMqWcQO .card .panel-body {
  background: #f4f8fa;
}
.cid-s19EMqWcQO .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-s19EMqWcQO .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-s19EMqWcQO .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-s19EMqWcQO .header-text,
.cid-s19EMqWcQO .sign {
  color: #ffffff;
}
.cid-s19EMqWcQO .mbr-section-title,
.cid-s19EMqWcQO .underline {
  color: #0a1c44;
}
.cid-sqBOpd6oMr {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-sqBOpd6oMr .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sqBOpd6oMr .card .card-block {
  box-shadow: 0 6px 20px 2px;
  background: #ffffff;
  padding: 2rem;
  position: relative;
  border-bottom: solid 2px rgba(0, 0, 0, 0.07);
  text-align: center;
  border-radius: 8px;
}
.cid-sqBOpd6oMr .card .card-block:before {
  position: absolute;
  left: calc(50% - 7px);
  bottom: -7px;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #ffffff;
  content: "";
  display: block;
}
.cid-sqBOpd6oMr .card .mbr-author {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 0;
  border-top: none;
  padding: 1.25rem;
  background: transparent;
}
.cid-sqBOpd6oMr .card .mbr-author .mbr-author-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
}
.cid-sqBOpd6oMr .card .mbr-author .mbr-author-img.img-margin {
  margin-right: 1.25rem;
}
.cid-sqBOpd6oMr .card .mbr-author .mbr-author-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sqBOpd6oMr .card .mbr-author .name-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqBOpd6oMr .card .mbr-author .name-wrap .mbr-author-name p {
  margin-bottom: 0px;
}
.cid-sqBOpd6oMr .card .mbr-author .name-wrap .mbr-author-desc p {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .cid-sqBOpd6oMr .card:not(.last-card) {
    margin-bottom: 2rem;
  }
}
.cid-sqBOpd6oMr .mbr-author-name P {
  color: #0a1c44;
}
.cid-sqBOpd6oMr .mbr-author-desc P {
  color: #0087ab;
}
.cid-sqBOpd6oMr .main-title {
  color: #0a1c44;
}
.cid-sqBOpd6oMr .mbr-section-subtitle,
.cid-sqBOpd6oMr .underline {
  color: #0087ab;
}
.cid-sqBOpd6oMr .card-block P {
  text-align: left;
}
.cid-sqCfXaOVom {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #f5f7fa;
}
.cid-sqCfXaOVom .mbr-text {
  color: #767676;
}
.cid-sqCfXaOVom .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 6px 20px 2px rgba(17, 46, 112, 0.35);
}
.cid-sqCfXaOVom .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-sqCfXaOVom .card-wrapper:hover .ico2 {
  color: #0087ab !important;
}
.cid-sqCfXaOVom .text-info:hover {
  color: inherit!important;
}
.cid-sqCfXaOVom .ico2 {
  color: #e0b548 !important;
  transition: all 0.6s;
}
.cid-sqCfXaOVom .card-box {
  padding: 0rem 1rem;
}
.cid-sqCfXaOVom .card-img {
  width: auto;
}
.cid-sqCfXaOVom .ico1 {
  font-size: 3rem !important;
}
.cid-sqCfXaOVom h3,
.cid-sqCfXaOVom h4 {
  padding: 0;
  margin: 0;
}
.cid-sqCfXaOVom .card-title,
.cid-sqCfXaOVom .card-img {
  color: #232323;
}
.cid-sqCfXaOVom H3 {
  color: #767676;
}
.cid-sqCfXaOVom H1 {
  color: #232323;
}
.cid-s19ItLfq1c {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #0087ab;
  position: relative;
  overflow: hidden;
}
.cid-s19ItLfq1c .container {
  max-width: 1400px;
}
.cid-s19ItLfq1c .card-img2 span {
  padding-top: 6px;
}
.cid-s19ItLfq1c .soc-item a {
  padding-top: 5px;
}
.cid-s19ItLfq1c .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-s19ItLfq1c .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-s19ItLfq1c .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-s19ItLfq1c .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-s19ItLfq1c svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-s19ItLfq1c #e2_shape {
  fill: #f4f8fa !important;
}
.cid-s19ItLfq1c .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-s19ItLfq1c .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-s19ItLfq1c .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s19ItLfq1c .card-img {
  width: auto;
}
.cid-s19ItLfq1c .soc-item {
  width: 45px;
  height: 45px;
  background: #f4f8fa;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-s19ItLfq1c .soc-item span {
  font-size: 1.4rem;
}
.cid-s19ItLfq1c .soc-item:hover span {
  color: #0087ab !important;
}
.cid-s19ItLfq1c .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-s19ItLfq1c .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-s19ItLfq1c .media-wrap {
  margin-bottom: 1rem;
}
.cid-s19ItLfq1c .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s19ItLfq1c img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-s19ItLfq1c .item {
    justify-content: center;
  }
  .cid-s19ItLfq1c .quote::after {
    left: 60px;
  }
}
.cid-s19ItLfq1c .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-s19ItLfq1c .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s19ItLfq1c .text1 {
  color: #ffffff;
}
.cid-s19ItLfq1c .item-title {
  color: #ffffff;
}
.cid-s19ItLfq1c H5 {
  color: #ffffff;
}
.cid-s19ItLfq1c .theme {
  color: #ffffff;
}
.cid-s19ItLfq1c .copyright > p {
  color: #ff3366;
}
.cid-s19ItLfq1c .text2 {
  color: #ffffff;
}
.cid-s19ItLfq1c H3 {
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-s0Z3KQqGEv {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #0087ab;
}
.cid-s0Z3KQqGEv .container-fluid {
  padding: 0 3rem;
}
.cid-s0Z3KQqGEv .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: white;
}
.cid-s0Z3KQqGEv .mbr-list li {
  margin-bottom: 0.6rem;
  color: white;
  font-size: 0.6rem;
}
.cid-s0Z3KQqGEv .logo-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cid-s0Z3KQqGEv .mbr-section-title {
  margin-bottom: 1.0rem;
  font-size: 0.8rem;
}
.cid-s0Z3KQqGEv .social-media {
  margin-top: 1.5rem;
}
.cid-s0Z3KQqGEv .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-s0Z3KQqGEv .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-s0Z3KQqGEv .mbr-text,
.cid-s0Z3KQqGEv .mbr-offer {
  line-height: 1.5;
  color: white;
}
.cid-s0Z3KQqGEv .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-s0Z3KQqGEv .container-fluid {
    padding: 0 1rem;
  }
  .cid-s0Z3KQqGEv .mbr-section-title {
    margin-bottom: 1.0rem;
    font-size: 0.8rem;
  }
  .cid-s0Z3KQqGEv .mbr-list {
    margin-bottom: 2rem;
    color: white;
  }
  .cid-s0Z3KQqGEv .mbr-list li {
    margin-bottom: .5rem;
    color: white;
  }
  .cid-s0Z3KQqGEv .handy {
    display: none;
  }
}
.cid-s0Z3KQqGEv .mbr-text,
.cid-s0Z3KQqGEv .social-media,
.cid-s0Z3KQqGEv .logo-section {
  color: #ffffff;
  text-align: center;
}
.cid-sphLr0SUpU.popup-builder {
  background-color: #ffffff;
}
.cid-sphLr0SUpU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sphLr0SUpU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sphLr0SUpU .modal-content,
.cid-sphLr0SUpU .modal-dialog {
  height: auto;
}
.cid-sphLr0SUpU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sphLr0SUpU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sphLr0SUpU .form-wrapper .mbr-form .form-group,
  .cid-sphLr0SUpU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sphLr0SUpU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sphLr0SUpU .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-sphLr0SUpU .mbr-text {
  text-align: center;
  color: #0a1c44;
}
.cid-sphLr0SUpU .pt-0 {
  padding-top: 0 !important;
}
.cid-sphLr0SUpU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sphLr0SUpU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sphLr0SUpU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sphLr0SUpU .modal-open {
  overflow: hidden;
}
.cid-sphLr0SUpU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sphLr0SUpU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sphLr0SUpU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sphLr0SUpU .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-sphLr0SUpU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sphLr0SUpU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sphLr0SUpU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sphLr0SUpU .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-sphLr0SUpU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sphLr0SUpU .modal-backdrop.fade {
  opacity: 0;
}
.cid-sphLr0SUpU .modal-backdrop.show {
  opacity: .5;
}
.cid-sphLr0SUpU .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sphLr0SUpU .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sphLr0SUpU .modal-header .close:hover {
  opacity: 1;
}
.cid-sphLr0SUpU .modal-header .close:focus {
  outline: none;
}
.cid-sphLr0SUpU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0a1c44;
}
.cid-sphLr0SUpU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sphLr0SUpU .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sphLr0SUpU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sphLr0SUpU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sphLr0SUpU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sphLr0SUpU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sphLr0SUpU .modal-sm {
    max-width: 300px;
  }
  .cid-sphLr0SUpU .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sphLr0SUpU .modal-lg,
  .cid-sphLr0SUpU .modal-xl {
    max-width: 800px;
  }
  .cid-sphLr0SUpU .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sphLr0SUpU .modal-xl {
    max-width: 1140px;
  }
  .cid-sphLr0SUpU .container {
    max-width: 1140px;
  }
}
.cid-sphLr0SUpU .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sphLr0SUpU .container {
    max-width: 720px;
  }
}
.cid-sphLr0SUpU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sphLr0SUpU .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-sphLr0SUpU .form-group {
  margin-bottom: 1rem;
}
.cid-sphLr0SUpU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sphLr0SUpU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sphLr0SUpU .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-s1HEDMwQlU.popup-builder {
  background-color: #ffffff;
}
.cid-s1HEDMwQlU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s1HEDMwQlU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s1HEDMwQlU .modal-content,
.cid-s1HEDMwQlU .modal-dialog {
  height: auto;
}
.cid-s1HEDMwQlU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s1HEDMwQlU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s1HEDMwQlU .form-wrapper .mbr-form .form-group,
  .cid-s1HEDMwQlU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s1HEDMwQlU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s1HEDMwQlU .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-s1HEDMwQlU .mbr-text {
  text-align: center;
}
.cid-s1HEDMwQlU .pt-0 {
  padding-top: 0 !important;
}
.cid-s1HEDMwQlU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s1HEDMwQlU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s1HEDMwQlU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s1HEDMwQlU .modal-open {
  overflow: hidden;
}
.cid-s1HEDMwQlU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s1HEDMwQlU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s1HEDMwQlU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s1HEDMwQlU .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-s1HEDMwQlU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s1HEDMwQlU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s1HEDMwQlU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s1HEDMwQlU .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-s1HEDMwQlU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s1HEDMwQlU .modal-backdrop.fade {
  opacity: 0;
}
.cid-s1HEDMwQlU .modal-backdrop.show {
  opacity: .5;
}
.cid-s1HEDMwQlU .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s1HEDMwQlU .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s1HEDMwQlU .modal-header .close:hover {
  opacity: 1;
}
.cid-s1HEDMwQlU .modal-header .close:focus {
  outline: none;
}
.cid-s1HEDMwQlU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0a1c44;
}
.cid-s1HEDMwQlU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s1HEDMwQlU .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s1HEDMwQlU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s1HEDMwQlU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s1HEDMwQlU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s1HEDMwQlU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s1HEDMwQlU .modal-sm {
    max-width: 300px;
  }
  .cid-s1HEDMwQlU .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s1HEDMwQlU .modal-lg,
  .cid-s1HEDMwQlU .modal-xl {
    max-width: 800px;
  }
  .cid-s1HEDMwQlU .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s1HEDMwQlU .modal-xl {
    max-width: 1140px;
  }
  .cid-s1HEDMwQlU .container {
    max-width: 1140px;
  }
}
.cid-s1HEDMwQlU .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s1HEDMwQlU .container {
    max-width: 720px;
  }
}
.cid-s1HEDMwQlU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s1HEDMwQlU .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-s1HEDMwQlU .form-group {
  margin-bottom: 1rem;
}
.cid-s1HEDMwQlU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s1HEDMwQlU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s1HEDMwQlU .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-s1HEDMwQlU LABEL {
  text-align: left;
}
.cid-sRpr7mLnBJ.popup-builder {
  background-color: #ffffff;
}
.cid-sRpr7mLnBJ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sRpr7mLnBJ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sRpr7mLnBJ .modal-content,
.cid-sRpr7mLnBJ .modal-dialog {
  height: auto;
}
.cid-sRpr7mLnBJ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sRpr7mLnBJ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sRpr7mLnBJ .form-wrapper .mbr-form .form-group,
  .cid-sRpr7mLnBJ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sRpr7mLnBJ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sRpr7mLnBJ .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-sRpr7mLnBJ .mbr-text {
  text-align: center;
}
.cid-sRpr7mLnBJ .pt-0 {
  padding-top: 0 !important;
}
.cid-sRpr7mLnBJ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sRpr7mLnBJ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sRpr7mLnBJ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sRpr7mLnBJ .modal-open {
  overflow: hidden;
}
.cid-sRpr7mLnBJ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sRpr7mLnBJ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sRpr7mLnBJ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sRpr7mLnBJ .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-sRpr7mLnBJ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sRpr7mLnBJ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sRpr7mLnBJ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sRpr7mLnBJ .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-sRpr7mLnBJ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sRpr7mLnBJ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sRpr7mLnBJ .modal-backdrop.fade {
  opacity: 0;
}
.cid-sRpr7mLnBJ .modal-backdrop.show {
  opacity: .5;
}
.cid-sRpr7mLnBJ .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-sRpr7mLnBJ .modal-header {
    padding: 1rem 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sRpr7mLnBJ .modal-header {
    padding: 1rem;
  }
}
.cid-sRpr7mLnBJ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sRpr7mLnBJ .modal-header .close svg {
  fill: #353535;
}
.cid-sRpr7mLnBJ .modal-header .close:hover {
  opacity: 1;
}
.cid-sRpr7mLnBJ .modal-header .close:focus {
  outline: none;
}
.cid-sRpr7mLnBJ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sRpr7mLnBJ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sRpr7mLnBJ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sRpr7mLnBJ .modal-body {
    padding: 1rem;
  }
}
.cid-sRpr7mLnBJ .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-sRpr7mLnBJ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sRpr7mLnBJ .modal-footer {
    padding: 1rem;
  }
}
.cid-sRpr7mLnBJ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sRpr7mLnBJ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sRpr7mLnBJ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sRpr7mLnBJ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sRpr7mLnBJ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sRpr7mLnBJ .modal-lg,
  .cid-sRpr7mLnBJ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sRpr7mLnBJ .modal-xl {
    max-width: 1140px;
  }
}
.cid-sRpr7mLnBJ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sRpr7mLnBJ .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-sRpr7mLnBJ .form-group {
  margin-bottom: 1rem;
}
.cid-sRpr7mLnBJ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sRpr7mLnBJ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sRpr7mLnBJ .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-sRpr7mLnBJ .mbr-section-btn {
  margin: 0;
}
.cid-sRpr7mLnBJ .mbr-section-btn .btn {
  margin: 0;
}
.cid-sRpr7mLnBJ .cid-rZEaBSNRm2 .card {
  padding: 1rem;
}
.cid-sRpr7mLnBJ .card {
  background-color: #fff;
  display: flex;
  position: relative;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border-radius: .25rem;
}
.cid-sRpr7mLnBJ .cid-rZEaBSNRm2 li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-sRpr7mLnBJ H4 {
  color: #000000;
}
.cid-s8MTLVM0tB.popup-builder {
  background-color: #ffffff;
}
.cid-s8MTLVM0tB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s8MTLVM0tB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s8MTLVM0tB .modal-content,
.cid-s8MTLVM0tB .modal-dialog {
  height: auto;
}
.cid-s8MTLVM0tB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s8MTLVM0tB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s8MTLVM0tB .form-wrapper .mbr-form .form-group,
  .cid-s8MTLVM0tB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s8MTLVM0tB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s8MTLVM0tB .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-s8MTLVM0tB .mbr-text {
  text-align: center;
  color: #0087ab;
}
.cid-s8MTLVM0tB .pt-0 {
  padding-top: 0 !important;
}
.cid-s8MTLVM0tB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s8MTLVM0tB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s8MTLVM0tB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s8MTLVM0tB .modal-open {
  overflow: hidden;
}
.cid-s8MTLVM0tB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s8MTLVM0tB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s8MTLVM0tB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s8MTLVM0tB .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-s8MTLVM0tB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s8MTLVM0tB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s8MTLVM0tB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s8MTLVM0tB .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-s8MTLVM0tB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s8MTLVM0tB .modal-backdrop.fade {
  opacity: 0;
}
.cid-s8MTLVM0tB .modal-backdrop.show {
  opacity: .5;
}
.cid-s8MTLVM0tB .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s8MTLVM0tB .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s8MTLVM0tB .modal-header .close:hover {
  opacity: 1;
}
.cid-s8MTLVM0tB .modal-header .close:focus {
  outline: none;
}
.cid-s8MTLVM0tB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0a1c44;
}
.cid-s8MTLVM0tB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s8MTLVM0tB .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s8MTLVM0tB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s8MTLVM0tB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s8MTLVM0tB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s8MTLVM0tB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s8MTLVM0tB .modal-sm {
    max-width: 300px;
  }
  .cid-s8MTLVM0tB .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s8MTLVM0tB .modal-lg,
  .cid-s8MTLVM0tB .modal-xl {
    max-width: 800px;
  }
  .cid-s8MTLVM0tB .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s8MTLVM0tB .modal-xl {
    max-width: 1140px;
  }
  .cid-s8MTLVM0tB .container {
    max-width: 1140px;
  }
}
.cid-s8MTLVM0tB .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s8MTLVM0tB .container {
    max-width: 720px;
  }
}
.cid-s8MTLVM0tB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s8MTLVM0tB .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-s8MTLVM0tB .form-group {
  margin-bottom: 1rem;
}
.cid-s8MTLVM0tB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s8MTLVM0tB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s8MTLVM0tB .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-swiPfi3aRT.popup-builder {
  background-color: #ffffff;
}
.cid-swiPfi3aRT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-swiPfi3aRT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-swiPfi3aRT .modal-content,
.cid-swiPfi3aRT .modal-dialog {
  height: auto;
}
.cid-swiPfi3aRT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-swiPfi3aRT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-swiPfi3aRT .form-wrapper .mbr-form .form-group,
  .cid-swiPfi3aRT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-swiPfi3aRT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-swiPfi3aRT .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-swiPfi3aRT .mbr-text {
  text-align: center;
}
.cid-swiPfi3aRT .pt-0 {
  padding-top: 0 !important;
}
.cid-swiPfi3aRT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-swiPfi3aRT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-swiPfi3aRT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-swiPfi3aRT .modal-open {
  overflow: hidden;
}
.cid-swiPfi3aRT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-swiPfi3aRT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-swiPfi3aRT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-swiPfi3aRT .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-swiPfi3aRT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-swiPfi3aRT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-swiPfi3aRT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-swiPfi3aRT .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-swiPfi3aRT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-swiPfi3aRT .modal-backdrop.fade {
  opacity: 0;
}
.cid-swiPfi3aRT .modal-backdrop.show {
  opacity: .5;
}
.cid-swiPfi3aRT .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-swiPfi3aRT .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-swiPfi3aRT .modal-header .close:hover {
  opacity: 1;
}
.cid-swiPfi3aRT .modal-header .close:focus {
  outline: none;
}
.cid-swiPfi3aRT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-swiPfi3aRT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-swiPfi3aRT .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-swiPfi3aRT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-swiPfi3aRT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-swiPfi3aRT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-swiPfi3aRT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-swiPfi3aRT .modal-sm {
    max-width: 300px;
  }
  .cid-swiPfi3aRT .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-swiPfi3aRT .modal-lg,
  .cid-swiPfi3aRT .modal-xl {
    max-width: 800px;
  }
  .cid-swiPfi3aRT .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-swiPfi3aRT .modal-xl {
    max-width: 1140px;
  }
  .cid-swiPfi3aRT .container {
    max-width: 1140px;
  }
}
.cid-swiPfi3aRT .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-swiPfi3aRT .container {
    max-width: 720px;
  }
}
.cid-swiPfi3aRT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-swiPfi3aRT .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-swiPfi3aRT .form-group {
  margin-bottom: 1rem;
}
.cid-swiPfi3aRT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-swiPfi3aRT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-swiPfi3aRT .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-se56nvOog5.popup-builder {
  background-color: #ffffff;
}
.cid-se56nvOog5.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-se56nvOog5.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-se56nvOog5 .modal-content,
.cid-se56nvOog5 .modal-dialog {
  height: auto;
}
.cid-se56nvOog5 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-se56nvOog5 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-se56nvOog5 .form-wrapper .mbr-form .form-group,
  .cid-se56nvOog5 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-se56nvOog5 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-se56nvOog5 .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-se56nvOog5 .mbr-text {
  text-align: center;
  color: #0087ab;
}
.cid-se56nvOog5 .pt-0 {
  padding-top: 0 !important;
}
.cid-se56nvOog5 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-se56nvOog5 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-se56nvOog5 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-se56nvOog5 .modal-open {
  overflow: hidden;
}
.cid-se56nvOog5 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-se56nvOog5 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-se56nvOog5 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-se56nvOog5 .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-se56nvOog5 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-se56nvOog5 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-se56nvOog5 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-se56nvOog5 .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-se56nvOog5 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-se56nvOog5 .modal-backdrop.fade {
  opacity: 0;
}
.cid-se56nvOog5 .modal-backdrop.show {
  opacity: .5;
}
.cid-se56nvOog5 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-se56nvOog5 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-se56nvOog5 .modal-header .close:hover {
  opacity: 1;
}
.cid-se56nvOog5 .modal-header .close:focus {
  outline: none;
}
.cid-se56nvOog5 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-se56nvOog5 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-se56nvOog5 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-se56nvOog5 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-se56nvOog5 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-se56nvOog5 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-se56nvOog5 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-se56nvOog5 .modal-sm {
    max-width: 300px;
  }
  .cid-se56nvOog5 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-se56nvOog5 .modal-lg,
  .cid-se56nvOog5 .modal-xl {
    max-width: 800px;
  }
  .cid-se56nvOog5 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-se56nvOog5 .modal-xl {
    max-width: 1140px;
  }
  .cid-se56nvOog5 .container {
    max-width: 1140px;
  }
}
.cid-se56nvOog5 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-se56nvOog5 .container {
    max-width: 720px;
  }
}
.cid-se56nvOog5 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-se56nvOog5 .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-se56nvOog5 .form-group {
  margin-bottom: 1rem;
}
.cid-se56nvOog5 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-se56nvOog5 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-se56nvOog5 .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-se56nvOog5 .btn {
  font-size: 12px !important;
}
.cid-sucmkLy81o.popup-builder {
  background-color: #ffffff;
}
.cid-sucmkLy81o.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sucmkLy81o.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sucmkLy81o .modal-content,
.cid-sucmkLy81o .modal-dialog {
  height: auto;
}
.cid-sucmkLy81o .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sucmkLy81o .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sucmkLy81o .form-wrapper .mbr-form .form-group,
  .cid-sucmkLy81o .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sucmkLy81o .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sucmkLy81o .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-sucmkLy81o .mbr-text {
  text-align: center;
}
.cid-sucmkLy81o .pt-0 {
  padding-top: 0 !important;
}
.cid-sucmkLy81o .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sucmkLy81o .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sucmkLy81o .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sucmkLy81o .modal-open {
  overflow: hidden;
}
.cid-sucmkLy81o .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sucmkLy81o .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sucmkLy81o .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sucmkLy81o .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-sucmkLy81o .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sucmkLy81o .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sucmkLy81o .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sucmkLy81o .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-sucmkLy81o .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sucmkLy81o .modal-backdrop.fade {
  opacity: 0;
}
.cid-sucmkLy81o .modal-backdrop.show {
  opacity: .5;
}
.cid-sucmkLy81o .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sucmkLy81o .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sucmkLy81o .modal-header .close:hover {
  opacity: 1;
}
.cid-sucmkLy81o .modal-header .close:focus {
  outline: none;
}
.cid-sucmkLy81o .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0a1c44;
}
.cid-sucmkLy81o .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sucmkLy81o .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sucmkLy81o .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sucmkLy81o .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sucmkLy81o .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sucmkLy81o .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sucmkLy81o .modal-sm {
    max-width: 300px;
  }
  .cid-sucmkLy81o .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sucmkLy81o .modal-lg,
  .cid-sucmkLy81o .modal-xl {
    max-width: 800px;
  }
  .cid-sucmkLy81o .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sucmkLy81o .modal-xl {
    max-width: 1140px;
  }
  .cid-sucmkLy81o .container {
    max-width: 1140px;
  }
}
.cid-sucmkLy81o .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sucmkLy81o .container {
    max-width: 720px;
  }
}
.cid-sucmkLy81o .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sucmkLy81o .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-sucmkLy81o .form-group {
  margin-bottom: 1rem;
}
.cid-sucmkLy81o .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sucmkLy81o .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sucmkLy81o .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%;
}
